From a3db9cb9f218c7628cbb668c00bd5222afa89b5d Mon Sep 17 00:00:00 2001 From: Jeff Date: Sat, 4 Nov 2023 06:02:27 -0400 Subject: [PATCH] Clean up; Complete async --- README.md | 6 +- examples/async_download.ds | 11 + examples/clue_solver.ds | 79 +- examples/fannkuch-redux.ds | 21 - examples/select.ds | 15 + examples/table.ds | 4 +- src/abstract_tree/async.rs | 1 - src/abstract_tree/block.rs | 2 +- src/abstract_tree/built_in_function.rs | 7 +- src/abstract_tree/filter.rs | 18 +- src/abstract_tree/for.rs | 30 +- src/abstract_tree/function_call.rs | 6 +- src/abstract_tree/remove.rs | 52 +- src/abstract_tree/select.rs | 37 +- src/evaluator.rs | 10 +- tests/dust_examples.rs | 15 + tree-sitter-dust/corpus/comments.txt | 27 +- tree-sitter-dust/grammar.js | 11 +- tree-sitter-dust/src/grammar.json | 32 +- tree-sitter-dust/src/node-types.json | 32 +- tree-sitter-dust/src/parser.c | 221273 ++++++++++++++-------- 21 files changed, 140574 insertions(+), 81115 deletions(-) create mode 100644 examples/async_download.ds delete mode 100644 examples/fannkuch-redux.ds create mode 100644 examples/select.ds diff --git a/README.md b/README.md index 1a7c9db..207caf2 100644 --- a/README.md +++ b/README.md @@ -137,8 +137,6 @@ list = [ 1, 2, 3 ] for number in list { (output number + 1) } - -# The original list is left unchanged. ``` To create a new list, use a **transform** loop, which modifies the values into a new list without changing the original. @@ -150,6 +148,10 @@ new_list = transform number in list { number - 1 } +list + -> filter() + -> () + (output new_list) # Output: [ 0 1 2 ] diff --git a/examples/async_download.ds b/examples/async_download.ds new file mode 100644 index 0000000..150b731 --- /dev/null +++ b/examples/async_download.ds @@ -0,0 +1,11 @@ +data = async { { + cast = (download "https://api.sampleapis.com/futurama/cast") + characters = (download "https://api.sampleapis.com/futurama/characters") + episodes = (download "https://api.sampleapis.com/futurama/episodes") +} } + +cast_len = (length (from_json data:cast)) +characters_len = (length (from_json data:characters)) +episodes_len = (length (from_json data:episodes)) + +(output [cast_len, characters_len, episodes_len ]) diff --git a/examples/clue_solver.ds b/examples/clue_solver.ds index 961db40..bf0a92b 100644 --- a/examples/clue_solver.ds +++ b/examples/clue_solver.ds @@ -1,44 +1,63 @@ -rooms = ['Library' 'Kitchen'] -suspects = ['White' 'Green'] -weapons = ['Rope' 'Lead_Pipe'] -cards = [rooms suspects weapons] +all_rooms = ['Library' 'Kitchen'] +all_suspects = ['White' 'Green'] +all_weapons = ['Rope' 'Lead_Pipe'] -take_turn = |current_room opponent_card| => { - (remove_card opponent_card) - (make_guess current_room) -} - -remove_card = |opponent_card| => { - for card_list in cards { - removed = remove card from card_list - card == opponent_card - } - - if (type removed) == 'empty' - output 'Card not found.' +is_ready_to_solve = |state| => { + ((length state:suspects) == 1) + && ((length state:rooms) == 1) + && ((length state:weapons) == 1) } -make_guess = |current_room| => { - if ((length suspects) == 1) - && ((length rooms) == 1) - && ((length weapons) == 1) +take_turn = |opponent_card state| => { + state = (remove_card state opponent_card) + (make_guess state) + state +} + +remove_card = |state opponent_card| => { + rooms = filter card in state:rooms { + card != opponent_card + } + suspects = filter card in state:suspects { + card != opponent_card + } + weapons = filter card in state:weapons { + card != opponent_card + } + { + current_room = state:current_room + rooms = rooms + suspects = suspects + weapons = weapons + } +} + +make_guess = |state| => { + if (is_ready_to_solve state) { (output 'It was ' - + suspects:0 - + ' in the ' - + rooms:0 - + ' with the ' - + weapons:0 + + state:suspects:0 + + ' in the ' + + state:rooms:0 + + ' with the ' + + state:weapons:0 + '!') } else { (output 'I accuse ' - + (random suspects) + + (random state:suspects) + ' in the ' - + current_room + # + state:current_room + ' with the ' - + (random weapons) + + (random state:weapons) + '!') } } -(make_guess 'Library') +init_state = { + current_room = 'Library' + rooms = all_rooms + suspects = all_suspects + weapons = all_weapons +} + +(take_turn 'Green' (take_turn 'Kitchen' (take_turn 'Rope' init_state))) diff --git a/examples/fannkuch-redux.ds b/examples/fannkuch-redux.ds deleted file mode 100644 index 92bd81a..0000000 --- a/examples/fannkuch-redux.ds +++ /dev/null @@ -1,21 +0,0 @@ -numbers = (from_json input) -flip_count = 0 -checksum = 0 - -while numbers.0 != 1 { - (reverse numbers 0 numbers.0) - - if flip_count % 2 == 0 { - checksum += flip_count - } else { - checksum -= flip_count - } - - checksum += flip_count * 1 - - flip_count += 1 -} - -(output numbers) -(output flip_count) -(output checksum) diff --git a/examples/select.ds b/examples/select.ds new file mode 100644 index 0000000..257af7e --- /dev/null +++ b/examples/select.ds @@ -0,0 +1,15 @@ +my_table = table |text number bool| [ + ["a", 1, true] + ["b", 2, true] + ["a", 3, true] +] + +test_table = table |text bool| [ + ["a", true] + ["b", true] + ["a", true] +] + +test_select = select |text bool| from my_table; + +(assert_equal test_select, test_table) diff --git a/examples/table.ds b/examples/table.ds index 1c2157b..4719b3e 100644 --- a/examples/table.ds +++ b/examples/table.ds @@ -10,11 +10,11 @@ test_table = table |text bool| [ ["a", true] ] -test_select = select |text bool| from my_table +test_select = select |text bool| from my_table; (assert_equal test_select, test_table) -test_table = table |text number bool| [ +test_table = table |number bool| [ [1, true] [3, true] ] diff --git a/src/abstract_tree/async.rs b/src/abstract_tree/async.rs index cafc9a0..456ea8b 100644 --- a/src/abstract_tree/async.rs +++ b/src/abstract_tree/async.rs @@ -29,7 +29,6 @@ impl AbstractTree for Async { let mut context = context.clone(); let result = statement.run(source, &mut context); - result.clone().unwrap(); if result.is_err() { Some(result) } else if index == statements.len() - 1 { diff --git a/src/abstract_tree/block.rs b/src/abstract_tree/block.rs index c508132..530ea79 100644 --- a/src/abstract_tree/block.rs +++ b/src/abstract_tree/block.rs @@ -5,7 +5,7 @@ use crate::{AbstractTree, Result, Statement}; #[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq, PartialOrd, Ord)] pub struct Block { - statements: Vec, + pub statements: Vec, } impl Block { diff --git a/src/abstract_tree/built_in_function.rs b/src/abstract_tree/built_in_function.rs index 35c7ed9..b6650ae 100644 --- a/src/abstract_tree/built_in_function.rs +++ b/src/abstract_tree/built_in_function.rs @@ -572,11 +572,8 @@ impl AbstractTree for BuiltInFunction { let value = expressions[0].run(source, context)?; let list = value.as_list()?.items(); - if list.len() < 2 { - return Err(Error::ExpectedMinLengthList { - minimum_len: 2, - actual_len: list.len(), - }); + if list.len() == 1 { + return Ok(list.first().cloned().unwrap()); } let range = 0..list.len(); diff --git a/src/abstract_tree/filter.rs b/src/abstract_tree/filter.rs index 2dda468..c7bf45a 100644 --- a/src/abstract_tree/filter.rs +++ b/src/abstract_tree/filter.rs @@ -19,13 +19,13 @@ impl AbstractTree for Filter { None => None, }; - let item_id_node = node.child(1).unwrap(); + let item_id_node = node.child_by_field_name("item_id").unwrap(); let item_id = Identifier::from_syntax_node(source, item_id_node)?; - let collection_node = node.child(3).unwrap(); + let collection_node = node.child_by_field_name("collection").unwrap(); let collection = Expression::from_syntax_node(source, collection_node)?; - let predicate_node = node.child(5).unwrap(); + let predicate_node = node.child_by_field_name("predicate").unwrap(); let predicate = Block::from_syntax_node(source, predicate_node)?; Ok(Filter { @@ -45,6 +45,7 @@ impl AbstractTree for Filter { Some(expression) => Some(expression.run(source, context)?.as_integer()? as usize), None => None, }; + let loop_context = Map::clone_from(context); values.par_iter().try_for_each(|value| { if let Some(max) = count { @@ -53,11 +54,16 @@ impl AbstractTree for Filter { } } - let mut context = Map::new(); + let mut iter_context = loop_context.clone(); - context.variables_mut().insert(key.clone(), value.clone()); + iter_context + .variables_mut() + .insert(key.clone(), value.clone()); - let should_include = self.predicate.run(source, &mut context)?.as_boolean()?; + let should_include = self + .predicate + .run(source, &mut iter_context)? + .as_boolean()?; if should_include { new_values.items_mut().push(value.clone()); diff --git a/src/abstract_tree/for.rs b/src/abstract_tree/for.rs index 72206c6..e17a3dd 100644 --- a/src/abstract_tree/for.rs +++ b/src/abstract_tree/for.rs @@ -7,9 +7,9 @@ use crate::{AbstractTree, Block, Error, Expression, Identifier, Map, Result, Val #[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq, PartialOrd, Ord)] pub struct For { is_async: bool, - identifier: Identifier, - expression: Expression, - item: Block, + item_id: Identifier, + collection: Expression, + block: Block, } impl AbstractTree for For { @@ -17,9 +17,10 @@ impl AbstractTree for For { let for_node = node.child(0).unwrap(); let is_async = match for_node.kind() { "for" => false, + "async for" => true, _ => { return Err(Error::UnexpectedSyntaxNode { - expected: "for", + expected: "for or async for", actual: for_node.kind(), location: for_node.start_position(), relevant_source: source[for_node.byte_range()].to_string(), @@ -38,32 +39,35 @@ impl AbstractTree for For { Ok(For { is_async, - identifier, - expression, - item, + item_id: identifier, + collection: expression, + block: item, }) } fn run(&self, source: &str, context: &mut Map) -> Result { - let expression_run = self.expression.run(source, context)?; + let expression_run = self.collection.run(source, context)?; let values = expression_run.as_list()?.items(); - let key = self.identifier.inner(); + let key = self.item_id.inner(); + let mut loop_context = Map::clone_from(context); if self.is_async { values.par_iter().try_for_each(|value| { - let mut iter_context = Map::new(); + let mut iter_context = loop_context.clone(); iter_context .variables_mut() .insert(key.clone(), value.clone()); - self.item.run(source, &mut iter_context).map(|_value| ()) + self.block.run(source, &mut iter_context).map(|_value| ()) })?; } else { for value in values.iter() { - context.variables_mut().insert(key.clone(), value.clone()); + loop_context + .variables_mut() + .insert(key.clone(), value.clone()); - self.item.run(source, context)?; + self.block.run(source, &mut loop_context)?; } } diff --git a/src/abstract_tree/function_call.rs b/src/abstract_tree/function_call.rs index fc3ed19..7043e6b 100644 --- a/src/abstract_tree/function_call.rs +++ b/src/abstract_tree/function_call.rs @@ -22,10 +22,10 @@ impl AbstractTree for FunctionCall { let mut arguments = Vec::new(); for index in 1..node.child_count() { - let child = node.child(index).unwrap(); + let node = node.child(index).unwrap(); - if child.is_named() { - let expression = Expression::from_syntax_node(source, child)?; + if node.is_named() { + let expression = Expression::from_syntax_node(source, node)?; arguments.push(expression); } diff --git a/src/abstract_tree/remove.rs b/src/abstract_tree/remove.rs index 29aace0..f21e3d0 100644 --- a/src/abstract_tree/remove.rs +++ b/src/abstract_tree/remove.rs @@ -1,63 +1,53 @@ use serde::{Deserialize, Serialize}; use tree_sitter::Node; -use crate::{AbstractTree, Block, Expression, Identifier, Map, Result, Value}; +use crate::{AbstractTree, Block, Error, Expression, Identifier, Map, Result, Value}; #[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq, PartialOrd, Ord)] pub struct Remove { - identifier: Identifier, - expression: Expression, - item: Block, + item_id: Identifier, + collection: Expression, + predicate: Block, } impl AbstractTree for Remove { fn from_syntax_node(source: &str, node: Node) -> Result { let identifier_node = node.child(1).unwrap(); - let identifier = Identifier::from_syntax_node(source, identifier_node)?; + let item_id = Identifier::from_syntax_node(source, identifier_node)?; let expression_node = node.child(3).unwrap(); - let expression = Expression::from_syntax_node(source, expression_node)?; + let collection = Expression::from_syntax_node(source, expression_node)?; - let item_node = node.child(4).unwrap(); - let item = Block::from_syntax_node(source, item_node)?; + let block_node = node.child(4).unwrap(); + let predicate = Block::from_syntax_node(source, block_node)?; Ok(Remove { - identifier, - expression, - item, + item_id, + collection, + predicate, }) } fn run(&self, source: &str, context: &mut Map) -> Result { - let expression_run = self.expression.run(source, context)?; - let values = expression_run.into_inner_list()?; - let key = self.identifier.inner(); - let mut sub_context = context.clone(); + let value = self.collection.run(source, context)?; + let mut values = value.as_list()?.items_mut(); + let key = self.item_id.inner(); let mut should_remove_index = None; - for (index, value) in values.items().iter().enumerate() { - sub_context - .variables_mut() - .insert(key.clone(), value.clone()); + values.iter().enumerate().try_for_each(|(index, value)| { + context.variables_mut().insert(key.clone(), value.clone()); - let should_remove = self.item.run(source, &mut sub_context)?.as_boolean()?; + let should_remove = self.predicate.run(source, context)?.as_boolean()?; if should_remove { should_remove_index = Some(index); - - match &self.expression { - Expression::Identifier(identifier) => { - sub_context - .variables_mut() - .insert(identifier.inner().clone(), Value::List(values.clone())); - } - _ => {} - } } - } + + Ok::<(), Error>(()) + })?; if let Some(index) = should_remove_index { - Ok(values.items_mut().remove(index)) + Ok(values.remove(index)) } else { Ok(Value::Empty) } diff --git a/src/abstract_tree/select.rs b/src/abstract_tree/select.rs index 63b9225..f612427 100644 --- a/src/abstract_tree/select.rs +++ b/src/abstract_tree/select.rs @@ -7,7 +7,7 @@ use crate::{AbstractTree, Block, Expression, Identifier, Map, Result, Table, Val pub struct Select { identifiers: Vec, expression: Expression, - item: Option, + predicate: Option, } impl AbstractTree for Select { @@ -15,41 +15,32 @@ impl AbstractTree for Select { let child_count = node.child_count(); let mut identifiers = Vec::new(); - for index in 2..child_count - 4 { - let node = node.child(index).unwrap(); + let identifier_list = node.child(1).unwrap(); - if node.kind() == "identifier" { + for index in 1..identifier_list.child_count() - 1 { + let node = identifier_list.child(index).unwrap(); + + if node.is_named() { let identifier = Identifier::from_syntax_node(source, node)?; identifiers.push(identifier); } - - if node.kind() == ">" { - break; - } } + let expression_node = node.child(3).unwrap(); + let expression = Expression::from_syntax_node(source, expression_node)?; + let final_node = node.child(child_count - 1).unwrap(); - let item = if final_node.kind() == "}" { - let item_node = node.child(child_count - 2).unwrap(); - - Some(Block::from_syntax_node(source, item_node)?) + let predicate = if final_node.kind() == "block" { + Some(Block::from_syntax_node(source, final_node)?) } else { None }; - let expression_node = if item.is_some() { - node.child(child_count - 4).unwrap() - } else { - node.child(child_count - 1).unwrap() - }; - - let expression = Expression::from_syntax_node(source, expression_node)?; - Ok(Select { identifiers, expression, - item, + predicate, }) } @@ -60,7 +51,7 @@ impl AbstractTree for Select { self.identifiers .iter() .cloned() - .map(|identifierier| identifierier.take_inner()) + .map(|identifier| identifier.take_inner()) .collect() } else { old_table.headers().clone() @@ -99,7 +90,7 @@ impl AbstractTree for Select { } } - if let Some(where_clause) = &self.item { + if let Some(where_clause) = &self.predicate { let should_include = where_clause.run(source, &mut row_context)?.as_boolean()?; if should_include { diff --git a/src/evaluator.rs b/src/evaluator.rs index 02ae2da..f04e2a7 100644 --- a/src/evaluator.rs +++ b/src/evaluator.rs @@ -33,9 +33,13 @@ pub fn evaluate(source: &str) -> Result { /// # use dust_lang::*; /// let mut context = Map::new(); /// -/// context.set_value("one".into(), 1.into()); -/// context.set_value("two".into(), 2.into()); -/// context.set_value("three".into(), 3.into()); +/// { +/// let mut variables = context.variables_mut(); +/// +/// variables.insert("one".into(), 1.into()); +/// variables.insert("two".into(), 2.into()); +/// variables.insert("three".into(), 3.into()); +/// } /// /// let dust_code = "four = 4 one + two + three + four"; /// diff --git a/tests/dust_examples.rs b/tests/dust_examples.rs index 80079e2..646823b 100644 --- a/tests/dust_examples.rs +++ b/tests/dust_examples.rs @@ -9,6 +9,14 @@ fn clue_solver() { evaluate(&file_contents).unwrap(); } +#[test] +#[ignore] +fn download_async() { + let file_contents = read_to_string("examples/download_async.ds").unwrap(); + + evaluate(&file_contents).unwrap(); +} + #[test] #[ignore] fn fetch() { @@ -59,6 +67,13 @@ fn remove_loop() { evaluate(&file_contents).unwrap(); } +#[test] +fn select() { + let file_contents = read_to_string("examples/select.ds").unwrap(); + + evaluate(&file_contents).unwrap(); +} + #[test] fn table() { let file_contents = read_to_string("examples/table.ds").unwrap(); diff --git a/tree-sitter-dust/corpus/comments.txt b/tree-sitter-dust/corpus/comments.txt index ce12a8a..bf034df 100644 --- a/tree-sitter-dust/corpus/comments.txt +++ b/tree-sitter-dust/corpus/comments.txt @@ -1,52 +1,47 @@ -================== +================================================================================ Full Line Comments -================== +================================================================================ not_a_comment # comment ---- +-------------------------------------------------------------------------------- (root (block (statement (expression - (identifier)))) - (comment)) + (identifier))))) -================== +================================================================================ Partial Line Comments -================== +================================================================================ not_a_comment # comment ---- +-------------------------------------------------------------------------------- (root (block (statement (expression - (identifier)))) - (comment)) + (identifier))))) -================== +================================================================================ Multiline Comments -================== +================================================================================ # comment # not_a_comment # # comment # "not a comment" ---- +-------------------------------------------------------------------------------- (root - (comment) (block (statement (expression (identifier))) - (comment) - (comment) (statement (expression (value diff --git a/tree-sitter-dust/grammar.js b/tree-sitter-dust/grammar.js index 75616b6..c32c57d 100644 --- a/tree-sitter-dust/grammar.js +++ b/tree-sitter-dust/grammar.js @@ -3,7 +3,7 @@ module.exports = grammar({ word: $ => $.identifier, - extras: $ => [ /\s/, $.comment ], + extras: $ => [ /\s/, $._comment ], conflicts: $ => [ [$.block], @@ -13,7 +13,7 @@ module.exports = grammar({ rules: { root: $ => repeat1($.block), - comment: $ => /[#][^#\n]*[#|\n]/, + _comment: $ => /[#][^#\n]*[#|\n]/, block: $ => choice( repeat1($.statement), @@ -200,7 +200,10 @@ module.exports = grammar({ ), for: $ => seq( - 'for', + choice( + 'for', + 'async for', + ), $.identifier, 'in', $.expression, @@ -218,7 +221,7 @@ module.exports = grammar({ filter: $ => seq( 'filter', field('count', optional($.expression)), - field('statement_id', $.identifier), + field('item_id', $.identifier), 'in', field('collection', $.expression), field('predicate', $.block), diff --git a/tree-sitter-dust/src/grammar.json b/tree-sitter-dust/src/grammar.json index c19f3f1..0909300 100644 --- a/tree-sitter-dust/src/grammar.json +++ b/tree-sitter-dust/src/grammar.json @@ -9,7 +9,7 @@ "name": "block" } }, - "comment": { + "_comment": { "type": "PATTERN", "value": "[#][^#\\n]*[#|\\n]" }, @@ -708,8 +708,17 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "index" + } + ] }, { "type": "SYMBOL", @@ -875,8 +884,17 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "for" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "async for" + } + ] }, { "type": "SYMBOL", @@ -946,7 +964,7 @@ }, { "type": "FIELD", - "name": "statement_id", + "name": "item_id", "content": { "type": "SYMBOL", "name": "identifier" @@ -1428,7 +1446,7 @@ }, { "type": "SYMBOL", - "name": "comment" + "name": "_comment" } ], "conflicts": [ diff --git a/tree-sitter-dust/src/node-types.json b/tree-sitter-dust/src/node-types.json index 4211892..25f39d2 100644 --- a/tree-sitter-dust/src/node-types.json +++ b/tree-sitter-dust/src/node-types.json @@ -15,6 +15,10 @@ "type": "identifier", "named": true }, + { + "type": "index", + "named": true + }, { "type": "statement", "named": true @@ -170,6 +174,16 @@ } ] }, + "item_id": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, "predicate": { "multiple": false, "required": true, @@ -179,16 +193,6 @@ "named": true } ] - }, - "statement_id": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] } } }, @@ -846,6 +850,10 @@ "type": "async", "named": false }, + { + "type": "async for", + "named": false + }, { "type": "bash", "named": false @@ -854,10 +862,6 @@ "type": "columns", "named": false }, - { - "type": "comment", - "named": true - }, { "type": "download", "named": false diff --git a/tree-sitter-dust/src/parser.c b/tree-sitter-dust/src/parser.c index 8713f58..6fdc30c 100644 --- a/tree-sitter-dust/src/parser.c +++ b/tree-sitter-dust/src/parser.c @@ -6,11 +6,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1255 -#define LARGE_STATE_COUNT 555 -#define SYMBOL_COUNT 131 +#define STATE_COUNT 2103 +#define LARGE_STATE_COUNT 969 +#define SYMBOL_COUNT 132 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 85 +#define TOKEN_COUNT 86 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 6 #define MAX_ALIAS_SEQUENCE_LENGTH 7 @@ -18,7 +18,7 @@ enum { sym_identifier = 1, - sym_comment = 2, + sym__comment = 2, anon_sym_LBRACE = 3, anon_sym_RBRACE = 4, anon_sym_SEMI = 5, @@ -57,102 +57,103 @@ enum { anon_sym_EQ_GT = 38, anon_sym_while = 39, anon_sym_for = 40, - anon_sym_in = 41, - anon_sym_transform = 42, - anon_sym_filter = 43, - anon_sym_find = 44, - anon_sym_remove = 45, - anon_sym_from = 46, - anon_sym_reduce = 47, - anon_sym_to = 48, - anon_sym_select = 49, - anon_sym_insert = 50, - anon_sym_into = 51, - anon_sym_async = 52, - anon_sym_PIPE = 53, - anon_sym_table = 54, - anon_sym_assert = 55, - anon_sym_assert_equal = 56, - anon_sym_download = 57, - anon_sym_help = 58, - anon_sym_length = 59, - anon_sym_output = 60, - anon_sym_output_error = 61, - anon_sym_type = 62, - anon_sym_append = 63, - anon_sym_metadata = 64, - anon_sym_move = 65, - anon_sym_read = 66, - anon_sym_workdir = 67, - anon_sym_write = 68, - anon_sym_from_json = 69, - anon_sym_to_json = 70, - anon_sym_to_string = 71, - anon_sym_to_float = 72, - anon_sym_bash = 73, - anon_sym_fish = 74, - anon_sym_raw = 75, - anon_sym_sh = 76, - anon_sym_zsh = 77, - anon_sym_random = 78, - anon_sym_random_boolean = 79, - anon_sym_random_float = 80, - anon_sym_random_integer = 81, - anon_sym_columns = 82, - anon_sym_rows = 83, - anon_sym_reverse = 84, - sym_root = 85, - sym_block = 86, - sym_statement = 87, - sym_expression = 88, - sym__expression_kind = 89, - aux_sym__expression_list = 90, - sym_value = 91, - sym_boolean = 92, - sym_list = 93, - sym_map = 94, - sym_index = 95, - sym_math = 96, - sym_math_operator = 97, - sym_logic = 98, - sym_logic_operator = 99, - sym_assignment = 100, - sym_assignment_operator = 101, - sym_if_else = 102, - sym_if = 103, - sym_else_if = 104, - sym_else = 105, - sym_match = 106, - sym_while = 107, - sym_for = 108, - sym_transform = 109, - sym_filter = 110, - sym_find = 111, - sym_remove = 112, - sym_reduce = 113, - sym_select = 114, - sym_insert = 115, - sym_async = 116, - sym_identifier_list = 117, - sym_table = 118, - sym_function = 119, - sym_function_call = 120, - sym__context_defined_function = 121, - sym_built_in_function = 122, - sym__built_in_function_name = 123, - aux_sym_root_repeat1 = 124, - aux_sym_block_repeat1 = 125, - aux_sym_list_repeat1 = 126, - aux_sym_map_repeat1 = 127, - aux_sym_if_else_repeat1 = 128, - aux_sym_match_repeat1 = 129, - aux_sym_identifier_list_repeat1 = 130, + anon_sym_asyncfor = 41, + anon_sym_in = 42, + anon_sym_transform = 43, + anon_sym_filter = 44, + anon_sym_find = 45, + anon_sym_remove = 46, + anon_sym_from = 47, + anon_sym_reduce = 48, + anon_sym_to = 49, + anon_sym_select = 50, + anon_sym_insert = 51, + anon_sym_into = 52, + anon_sym_async = 53, + anon_sym_PIPE = 54, + anon_sym_table = 55, + anon_sym_assert = 56, + anon_sym_assert_equal = 57, + anon_sym_download = 58, + anon_sym_help = 59, + anon_sym_length = 60, + anon_sym_output = 61, + anon_sym_output_error = 62, + anon_sym_type = 63, + anon_sym_append = 64, + anon_sym_metadata = 65, + anon_sym_move = 66, + anon_sym_read = 67, + anon_sym_workdir = 68, + anon_sym_write = 69, + anon_sym_from_json = 70, + anon_sym_to_json = 71, + anon_sym_to_string = 72, + anon_sym_to_float = 73, + anon_sym_bash = 74, + anon_sym_fish = 75, + anon_sym_raw = 76, + anon_sym_sh = 77, + anon_sym_zsh = 78, + anon_sym_random = 79, + anon_sym_random_boolean = 80, + anon_sym_random_float = 81, + anon_sym_random_integer = 82, + anon_sym_columns = 83, + anon_sym_rows = 84, + anon_sym_reverse = 85, + sym_root = 86, + sym_block = 87, + sym_statement = 88, + sym_expression = 89, + sym__expression_kind = 90, + aux_sym__expression_list = 91, + sym_value = 92, + sym_boolean = 93, + sym_list = 94, + sym_map = 95, + sym_index = 96, + sym_math = 97, + sym_math_operator = 98, + sym_logic = 99, + sym_logic_operator = 100, + sym_assignment = 101, + sym_assignment_operator = 102, + sym_if_else = 103, + sym_if = 104, + sym_else_if = 105, + sym_else = 106, + sym_match = 107, + sym_while = 108, + sym_for = 109, + sym_transform = 110, + sym_filter = 111, + sym_find = 112, + sym_remove = 113, + sym_reduce = 114, + sym_select = 115, + sym_insert = 116, + sym_async = 117, + sym_identifier_list = 118, + sym_table = 119, + sym_function = 120, + sym_function_call = 121, + sym__context_defined_function = 122, + sym_built_in_function = 123, + sym__built_in_function_name = 124, + aux_sym_root_repeat1 = 125, + aux_sym_block_repeat1 = 126, + aux_sym_list_repeat1 = 127, + aux_sym_map_repeat1 = 128, + aux_sym_if_else_repeat1 = 129, + aux_sym_match_repeat1 = 130, + aux_sym_identifier_list_repeat1 = 131, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [sym_identifier] = "identifier", - [sym_comment] = "comment", + [sym__comment] = "_comment", [anon_sym_LBRACE] = "{", [anon_sym_RBRACE] = "}", [anon_sym_SEMI] = ";", @@ -191,6 +192,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_EQ_GT] = "=>", [anon_sym_while] = "while", [anon_sym_for] = "for", + [anon_sym_asyncfor] = "async for", [anon_sym_in] = "in", [anon_sym_transform] = "transform", [anon_sym_filter] = "filter", @@ -286,7 +288,7 @@ static const char * const ts_symbol_names[] = { static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [sym_identifier] = sym_identifier, - [sym_comment] = sym_comment, + [sym__comment] = sym__comment, [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_SEMI] = anon_sym_SEMI, @@ -325,6 +327,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_EQ_GT] = anon_sym_EQ_GT, [anon_sym_while] = anon_sym_while, [anon_sym_for] = anon_sym_for, + [anon_sym_asyncfor] = anon_sym_asyncfor, [anon_sym_in] = anon_sym_in, [anon_sym_transform] = anon_sym_transform, [anon_sym_filter] = anon_sym_filter, @@ -426,8 +429,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_comment] = { - .visible = true, + [sym__comment] = { + .visible = false, .named = true, }, [anon_sym_LBRACE] = { @@ -582,6 +585,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_asyncfor] = { + .visible = true, + .named = false, + }, [anon_sym_in] = { .visible = true, .named = false, @@ -948,9 +955,9 @@ enum { field_body = 1, field_collection = 2, field_count = 3, - field_parameters = 4, - field_predicate = 5, - field_statement_id = 6, + field_item_id = 4, + field_parameters = 5, + field_predicate = 6, }; static const char * const ts_field_names[] = { @@ -958,9 +965,9 @@ static const char * const ts_field_names[] = { [field_body] = "body", [field_collection] = "collection", [field_count] = "count", + [field_item_id] = "item_id", [field_parameters] = "parameters", [field_predicate] = "predicate", - [field_statement_id] = "statement_id", }; static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { @@ -978,13 +985,13 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_parameters, 0}, [3] = {field_collection, 3}, + {field_item_id, 1}, {field_predicate, 4}, - {field_statement_id, 1}, [6] = {field_collection, 4}, {field_count, 1}, + {field_item_id, 2}, {field_predicate, 5}, - {field_statement_id, 2}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -1002,1255 +1009,2103 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 2, [4] = 2, [5] = 2, - [6] = 6, + [6] = 2, [7] = 2, - [8] = 8, - [9] = 2, - [10] = 2, + [8] = 2, + [9] = 9, + [10] = 10, [11] = 2, - [12] = 2, - [13] = 6, - [14] = 8, - [15] = 8, - [16] = 8, - [17] = 6, - [18] = 6, + [12] = 10, + [13] = 9, + [14] = 2, + [15] = 9, + [16] = 9, + [17] = 10, + [18] = 2, [19] = 2, [20] = 2, - [21] = 8, - [22] = 2, - [23] = 6, - [24] = 8, - [25] = 6, + [21] = 10, + [22] = 10, + [23] = 9, + [24] = 10, + [25] = 9, [26] = 2, - [27] = 8, - [28] = 8, - [29] = 8, - [30] = 6, - [31] = 8, - [32] = 8, - [33] = 6, - [34] = 34, - [35] = 35, - [36] = 36, - [37] = 37, - [38] = 38, - [39] = 39, - [40] = 40, - [41] = 36, - [42] = 42, - [43] = 34, - [44] = 35, - [45] = 45, - [46] = 34, - [47] = 47, - [48] = 37, - [49] = 38, - [50] = 39, - [51] = 36, - [52] = 40, - [53] = 42, - [54] = 40, - [55] = 42, - [56] = 42, - [57] = 40, - [58] = 36, - [59] = 45, - [60] = 36, - [61] = 34, - [62] = 40, - [63] = 47, - [64] = 37, - [65] = 35, - [66] = 38, - [67] = 39, - [68] = 39, - [69] = 45, - [70] = 34, - [71] = 47, - [72] = 38, - [73] = 37, - [74] = 37, - [75] = 38, - [76] = 47, - [77] = 34, - [78] = 39, - [79] = 36, - [80] = 42, - [81] = 38, - [82] = 40, - [83] = 39, - [84] = 45, - [85] = 37, - [86] = 47, - [87] = 40, - [88] = 34, - [89] = 36, - [90] = 35, - [91] = 42, - [92] = 40, - [93] = 34, - [94] = 47, - [95] = 37, - [96] = 38, - [97] = 39, - [98] = 39, - [99] = 36, - [100] = 8, - [101] = 45, - [102] = 42, - [103] = 38, - [104] = 40, - [105] = 35, - [106] = 42, - [107] = 36, - [108] = 34, - [109] = 47, - [110] = 37, - [111] = 45, - [112] = 38, - [113] = 35, - [114] = 40, - [115] = 39, - [116] = 36, - [117] = 45, - [118] = 40, - [119] = 42, - [120] = 35, - [121] = 47, - [122] = 47, - [123] = 37, - [124] = 34, - [125] = 38, - [126] = 39, - [127] = 47, - [128] = 42, - [129] = 37, - [130] = 38, - [131] = 39, - [132] = 34, - [133] = 36, - [134] = 39, - [135] = 42, - [136] = 40, - [137] = 36, - [138] = 40, - [139] = 42, - [140] = 36, - [141] = 47, - [142] = 39, - [143] = 38, - [144] = 42, - [145] = 37, - [146] = 38, - [147] = 47, - [148] = 34, - [149] = 34, - [150] = 37, - [151] = 47, - [152] = 37, - [153] = 8, - [154] = 8, - [155] = 8, - [156] = 8, - [157] = 8, - [158] = 8, - [159] = 8, - [160] = 8, - [161] = 161, - [162] = 161, - [163] = 161, - [164] = 161, - [165] = 161, - [166] = 161, - [167] = 167, - [168] = 168, - [169] = 161, - [170] = 170, - [171] = 171, - [172] = 161, - [173] = 161, - [174] = 174, - [175] = 175, - [176] = 167, - [177] = 174, - [178] = 161, - [179] = 175, - [180] = 170, - [181] = 171, - [182] = 168, - [183] = 174, - [184] = 168, - [185] = 170, - [186] = 175, - [187] = 170, - [188] = 171, - [189] = 161, - [190] = 174, - [191] = 167, - [192] = 171, - [193] = 161, - [194] = 175, - [195] = 168, - [196] = 167, - [197] = 171, - [198] = 174, - [199] = 6, - [200] = 175, - [201] = 168, - [202] = 8, - [203] = 167, - [204] = 175, - [205] = 8, - [206] = 171, - [207] = 170, - [208] = 167, - [209] = 6, - [210] = 210, - [211] = 170, - [212] = 174, - [213] = 8, - [214] = 168, - [215] = 171, - [216] = 168, - [217] = 175, - [218] = 170, - [219] = 174, - [220] = 167, - [221] = 168, - [222] = 170, - [223] = 174, - [224] = 224, - [225] = 6, - [226] = 8, - [227] = 227, - [228] = 6, - [229] = 8, - [230] = 171, - [231] = 175, - [232] = 8, - [233] = 167, - [234] = 8, - [235] = 235, - [236] = 235, - [237] = 235, - [238] = 235, - [239] = 235, - [240] = 240, - [241] = 240, - [242] = 240, - [243] = 243, - [244] = 244, - [245] = 245, - [246] = 246, - [247] = 247, - [248] = 243, - [249] = 247, - [250] = 245, - [251] = 245, - [252] = 245, - [253] = 246, - [254] = 246, - [255] = 245, - [256] = 245, - [257] = 246, - [258] = 244, - [259] = 243, - [260] = 247, - [261] = 247, - [262] = 246, - [263] = 240, - [264] = 243, - [265] = 247, - [266] = 243, - [267] = 240, - [268] = 243, - [269] = 240, - [270] = 247, - [271] = 240, - [272] = 244, - [273] = 245, - [274] = 246, - [275] = 240, - [276] = 245, - [277] = 246, - [278] = 243, - [279] = 243, - [280] = 247, - [281] = 240, - [282] = 246, - [283] = 243, - [284] = 240, - [285] = 247, - [286] = 245, - [287] = 247, - [288] = 246, - [289] = 243, - [290] = 246, - [291] = 243, - [292] = 247, - [293] = 245, - [294] = 240, - [295] = 246, - [296] = 240, - [297] = 246, - [298] = 240, - [299] = 246, - [300] = 240, - [301] = 246, - [302] = 240, - [303] = 247, - [304] = 246, - [305] = 240, - [306] = 240, - [307] = 243, - [308] = 247, - [309] = 247, - [310] = 245, - [311] = 244, - [312] = 245, - [313] = 246, - [314] = 240, - [315] = 246, - [316] = 246, - [317] = 243, - [318] = 240, - [319] = 244, - [320] = 245, - [321] = 246, - [322] = 240, - [323] = 246, - [324] = 324, - [325] = 325, - [326] = 325, - [327] = 325, - [328] = 325, - [329] = 325, - [330] = 325, - [331] = 325, - [332] = 325, - [333] = 325, - [334] = 325, - [335] = 325, - [336] = 325, - [337] = 325, - [338] = 338, - [339] = 339, - [340] = 161, - [341] = 339, - [342] = 342, - [343] = 342, - [344] = 174, - [345] = 342, - [346] = 346, - [347] = 339, - [348] = 175, + [27] = 10, + [28] = 2, + [29] = 9, + [30] = 9, + [31] = 2, + [32] = 9, + [33] = 10, + [34] = 2, + [35] = 10, + [36] = 2, + [37] = 9, + [38] = 10, + [39] = 10, + [40] = 2, + [41] = 9, + [42] = 10, + [43] = 10, + [44] = 9, + [45] = 10, + [46] = 10, + [47] = 2, + [48] = 10, + [49] = 10, + [50] = 9, + [51] = 10, + [52] = 2, + [53] = 2, + [54] = 10, + [55] = 9, + [56] = 9, + [57] = 10, + [58] = 10, + [59] = 9, + [60] = 10, + [61] = 10, + [62] = 62, + [63] = 63, + [64] = 63, + [65] = 65, + [66] = 66, + [67] = 67, + [68] = 68, + [69] = 67, + [70] = 66, + [71] = 63, + [72] = 72, + [73] = 73, + [74] = 62, + [75] = 75, + [76] = 76, + [77] = 68, + [78] = 63, + [79] = 66, + [80] = 72, + [81] = 73, + [82] = 62, + [83] = 75, + [84] = 76, + [85] = 68, + [86] = 63, + [87] = 66, + [88] = 72, + [89] = 73, + [90] = 62, + [91] = 75, + [92] = 66, + [93] = 76, + [94] = 68, + [95] = 63, + [96] = 65, + [97] = 63, + [98] = 68, + [99] = 76, + [100] = 66, + [101] = 67, + [102] = 75, + [103] = 62, + [104] = 67, + [105] = 73, + [106] = 65, + [107] = 10, + [108] = 62, + [109] = 72, + [110] = 66, + [111] = 76, + [112] = 72, + [113] = 73, + [114] = 65, + [115] = 62, + [116] = 75, + [117] = 76, + [118] = 68, + [119] = 63, + [120] = 63, + [121] = 68, + [122] = 75, + [123] = 63, + [124] = 68, + [125] = 76, + [126] = 76, + [127] = 75, + [128] = 62, + [129] = 75, + [130] = 76, + [131] = 73, + [132] = 66, + [133] = 72, + [134] = 73, + [135] = 75, + [136] = 62, + [137] = 75, + [138] = 73, + [139] = 76, + [140] = 68, + [141] = 63, + [142] = 72, + [143] = 76, + [144] = 66, + [145] = 72, + [146] = 66, + [147] = 75, + [148] = 72, + [149] = 73, + [150] = 62, + [151] = 62, + [152] = 75, + [153] = 72, + [154] = 76, + [155] = 68, + [156] = 63, + [157] = 65, + [158] = 73, + [159] = 72, + [160] = 66, + [161] = 68, + [162] = 68, + [163] = 67, + [164] = 65, + [165] = 66, + [166] = 66, + [167] = 67, + [168] = 66, + [169] = 63, + [170] = 68, + [171] = 76, + [172] = 76, + [173] = 75, + [174] = 75, + [175] = 62, + [176] = 62, + [177] = 73, + [178] = 67, + [179] = 72, + [180] = 72, + [181] = 73, + [182] = 72, + [183] = 73, + [184] = 66, + [185] = 66, + [186] = 72, + [187] = 63, + [188] = 73, + [189] = 68, + [190] = 76, + [191] = 72, + [192] = 73, + [193] = 62, + [194] = 75, + [195] = 76, + [196] = 68, + [197] = 75, + [198] = 62, + [199] = 62, + [200] = 63, + [201] = 73, + [202] = 72, + [203] = 63, + [204] = 68, + [205] = 76, + [206] = 75, + [207] = 62, + [208] = 75, + [209] = 62, + [210] = 65, + [211] = 63, + [212] = 68, + [213] = 67, + [214] = 65, + [215] = 67, + [216] = 73, + [217] = 65, + [218] = 76, + [219] = 76, + [220] = 67, + [221] = 68, + [222] = 72, + [223] = 66, + [224] = 66, + [225] = 68, + [226] = 62, + [227] = 63, + [228] = 68, + [229] = 75, + [230] = 66, + [231] = 76, + [232] = 75, + [233] = 75, + [234] = 62, + [235] = 73, + [236] = 65, + [237] = 76, + [238] = 72, + [239] = 63, + [240] = 73, + [241] = 68, + [242] = 63, + [243] = 66, + [244] = 62, + [245] = 66, + [246] = 67, + [247] = 73, + [248] = 65, + [249] = 63, + [250] = 72, + [251] = 72, + [252] = 73, + [253] = 10, + [254] = 10, + [255] = 10, + [256] = 10, + [257] = 10, + [258] = 10, + [259] = 10, + [260] = 10, + [261] = 261, + [262] = 262, + [263] = 261, + [264] = 264, + [265] = 265, + [266] = 266, + [267] = 267, + [268] = 268, + [269] = 262, + [270] = 268, + [271] = 265, + [272] = 266, + [273] = 261, + [274] = 261, + [275] = 267, + [276] = 264, + [277] = 264, + [278] = 268, + [279] = 262, + [280] = 261, + [281] = 264, + [282] = 266, + [283] = 268, + [284] = 265, + [285] = 267, + [286] = 265, + [287] = 266, + [288] = 262, + [289] = 267, + [290] = 261, + [291] = 264, + [292] = 266, + [293] = 268, + [294] = 261, + [295] = 262, + [296] = 265, + [297] = 267, + [298] = 261, + [299] = 262, + [300] = 262, + [301] = 266, + [302] = 265, + [303] = 268, + [304] = 268, + [305] = 267, + [306] = 264, + [307] = 266, + [308] = 267, + [309] = 264, + [310] = 261, + [311] = 265, + [312] = 264, + [313] = 261, + [314] = 262, + [315] = 265, + [316] = 266, + [317] = 268, + [318] = 264, + [319] = 267, + [320] = 265, + [321] = 266, + [322] = 267, + [323] = 262, + [324] = 268, + [325] = 265, + [326] = 268, + [327] = 264, + [328] = 267, + [329] = 262, + [330] = 261, + [331] = 266, + [332] = 267, + [333] = 264, + [334] = 268, + [335] = 268, + [336] = 262, + [337] = 266, + [338] = 265, + [339] = 267, + [340] = 261, + [341] = 265, + [342] = 264, + [343] = 262, + [344] = 266, + [345] = 267, + [346] = 267, + [347] = 264, + [348] = 9, [349] = 349, - [350] = 350, - [351] = 351, - [352] = 168, - [353] = 353, - [354] = 342, - [355] = 355, - [356] = 356, - [357] = 357, - [358] = 346, - [359] = 167, - [360] = 360, - [361] = 339, - [362] = 174, - [363] = 349, - [364] = 168, - [365] = 356, - [366] = 357, - [367] = 355, - [368] = 353, - [369] = 353, - [370] = 351, - [371] = 175, - [372] = 342, - [373] = 350, - [374] = 339, - [375] = 342, - [376] = 167, - [377] = 360, - [378] = 339, - [379] = 342, - [380] = 380, - [381] = 350, - [382] = 351, - [383] = 349, - [384] = 384, - [385] = 346, - [386] = 386, - [387] = 387, - [388] = 388, - [389] = 389, - [390] = 390, - [391] = 357, - [392] = 392, - [393] = 393, - [394] = 346, - [395] = 353, - [396] = 396, - [397] = 350, - [398] = 351, - [399] = 342, + [350] = 266, + [351] = 265, + [352] = 10, + [353] = 268, + [354] = 10, + [355] = 262, + [356] = 264, + [357] = 268, + [358] = 10, + [359] = 9, + [360] = 265, + [361] = 266, + [362] = 262, + [363] = 267, + [364] = 266, + [365] = 262, + [366] = 265, + [367] = 264, + [368] = 268, + [369] = 262, + [370] = 10, + [371] = 10, + [372] = 268, + [373] = 264, + [374] = 9, + [375] = 266, + [376] = 9, + [377] = 377, + [378] = 378, + [379] = 267, + [380] = 265, + [381] = 10, + [382] = 10, + [383] = 383, + [384] = 383, + [385] = 383, + [386] = 383, + [387] = 383, + [388] = 383, + [389] = 383, + [390] = 383, + [391] = 383, + [392] = 383, + [393] = 383, + [394] = 383, + [395] = 395, + [396] = 395, + [397] = 397, + [398] = 398, + [399] = 399, [400] = 400, - [401] = 339, - [402] = 402, - [403] = 403, - [404] = 404, - [405] = 405, - [406] = 406, - [407] = 407, + [401] = 398, + [402] = 399, + [403] = 399, + [404] = 398, + [405] = 395, + [406] = 397, + [407] = 399, [408] = 408, - [409] = 409, - [410] = 410, - [411] = 411, - [412] = 355, - [413] = 356, - [414] = 353, - [415] = 415, - [416] = 416, - [417] = 360, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 339, - [422] = 346, - [423] = 423, - [424] = 360, - [425] = 349, - [426] = 426, - [427] = 427, - [428] = 428, - [429] = 429, - [430] = 430, - [431] = 355, - [432] = 356, - [433] = 433, - [434] = 346, - [435] = 350, - [436] = 356, - [437] = 170, - [438] = 384, - [439] = 351, - [440] = 171, - [441] = 349, - [442] = 357, - [443] = 353, - [444] = 353, - [445] = 171, - [446] = 351, - [447] = 170, - [448] = 360, - [449] = 356, - [450] = 355, - [451] = 360, - [452] = 350, - [453] = 349, - [454] = 355, - [455] = 419, - [456] = 346, - [457] = 386, - [458] = 387, - [459] = 388, - [460] = 389, - [461] = 390, - [462] = 168, - [463] = 392, - [464] = 464, - [465] = 393, - [466] = 409, - [467] = 396, - [468] = 464, - [469] = 404, - [470] = 400, - [471] = 464, - [472] = 405, - [473] = 410, - [474] = 411, - [475] = 408, - [476] = 428, - [477] = 416, - [478] = 464, - [479] = 353, - [480] = 415, - [481] = 407, - [482] = 433, - [483] = 464, - [484] = 380, - [485] = 464, - [486] = 430, - [487] = 464, - [488] = 360, - [489] = 427, - [490] = 464, - [491] = 402, - [492] = 167, - [493] = 429, - [494] = 174, - [495] = 423, - [496] = 464, - [497] = 464, - [498] = 464, - [499] = 349, - [500] = 426, - [501] = 175, - [502] = 418, - [503] = 464, - [504] = 346, - [505] = 355, - [506] = 420, - [507] = 356, - [508] = 384, - [509] = 464, - [510] = 351, - [511] = 360, - [512] = 360, - [513] = 350, - [514] = 350, - [515] = 515, - [516] = 171, - [517] = 170, - [518] = 515, - [519] = 171, - [520] = 515, - [521] = 360, - [522] = 515, - [523] = 515, - [524] = 175, - [525] = 174, - [526] = 515, - [527] = 515, - [528] = 356, - [529] = 384, - [530] = 515, - [531] = 515, - [532] = 515, - [533] = 351, - [534] = 515, - [535] = 349, - [536] = 167, - [537] = 170, - [538] = 168, - [539] = 355, - [540] = 515, - [541] = 384, - [542] = 515, - [543] = 384, - [544] = 360, - [545] = 360, - [546] = 384, - [547] = 384, - [548] = 356, - [549] = 346, - [550] = 350, - [551] = 355, - [552] = 351, - [553] = 353, - [554] = 346, - [555] = 350, - [556] = 355, - [557] = 351, - [558] = 356, - [559] = 353, - [560] = 342, - [561] = 342, - [562] = 339, - [563] = 342, - [564] = 339, - [565] = 170, - [566] = 339, - [567] = 342, - [568] = 339, - [569] = 171, - [570] = 357, - [571] = 353, - [572] = 357, - [573] = 353, - [574] = 428, - [575] = 390, - [576] = 392, - [577] = 387, - [578] = 393, - [579] = 406, - [580] = 580, - [581] = 581, - [582] = 582, - [583] = 433, - [584] = 404, - [585] = 580, - [586] = 423, - [587] = 430, - [588] = 386, - [589] = 429, - [590] = 427, - [591] = 405, - [592] = 580, - [593] = 403, - [594] = 416, - [595] = 389, + [409] = 397, + [410] = 395, + [411] = 408, + [412] = 398, + [413] = 408, + [414] = 399, + [415] = 408, + [416] = 408, + [417] = 395, + [418] = 408, + [419] = 399, + [420] = 400, + [421] = 397, + [422] = 408, + [423] = 395, + [424] = 397, + [425] = 398, + [426] = 399, + [427] = 400, + [428] = 397, + [429] = 399, + [430] = 408, + [431] = 397, + [432] = 395, + [433] = 395, + [434] = 408, + [435] = 398, + [436] = 399, + [437] = 399, + [438] = 397, + [439] = 399, + [440] = 395, + [441] = 399, + [442] = 398, + [443] = 408, + [444] = 399, + [445] = 397, + [446] = 397, + [447] = 408, + [448] = 397, + [449] = 395, + [450] = 408, + [451] = 397, + [452] = 408, + [453] = 408, + [454] = 400, + [455] = 399, + [456] = 408, + [457] = 398, + [458] = 395, + [459] = 400, + [460] = 408, + [461] = 408, + [462] = 408, + [463] = 399, + [464] = 408, + [465] = 397, + [466] = 399, + [467] = 408, + [468] = 400, + [469] = 398, + [470] = 408, + [471] = 397, + [472] = 400, + [473] = 399, + [474] = 395, + [475] = 397, + [476] = 395, + [477] = 398, + [478] = 399, + [479] = 408, + [480] = 398, + [481] = 395, + [482] = 398, + [483] = 399, + [484] = 398, + [485] = 408, + [486] = 398, + [487] = 395, + [488] = 399, + [489] = 399, + [490] = 395, + [491] = 400, + [492] = 395, + [493] = 400, + [494] = 398, + [495] = 400, + [496] = 408, + [497] = 398, + [498] = 399, + [499] = 399, + [500] = 408, + [501] = 395, + [502] = 399, + [503] = 399, + [504] = 408, + [505] = 408, + [506] = 399, + [507] = 408, + [508] = 397, + [509] = 399, + [510] = 397, + [511] = 398, + [512] = 398, + [513] = 400, + [514] = 399, + [515] = 397, + [516] = 398, + [517] = 397, + [518] = 398, + [519] = 408, + [520] = 398, + [521] = 408, + [522] = 399, + [523] = 399, + [524] = 395, + [525] = 399, + [526] = 408, + [527] = 408, + [528] = 395, + [529] = 397, + [530] = 399, + [531] = 400, + [532] = 397, + [533] = 395, + [534] = 534, + [535] = 534, + [536] = 534, + [537] = 537, + [538] = 534, + [539] = 534, + [540] = 534, + [541] = 534, + [542] = 534, + [543] = 534, + [544] = 534, + [545] = 534, + [546] = 546, + [547] = 534, + [548] = 534, + [549] = 534, + [550] = 534, + [551] = 534, + [552] = 534, + [553] = 534, + [554] = 534, + [555] = 534, + [556] = 534, + [557] = 557, + [558] = 557, + [559] = 559, + [560] = 559, + [561] = 561, + [562] = 562, + [563] = 563, + [564] = 564, + [565] = 565, + [566] = 559, + [567] = 557, + [568] = 568, + [569] = 564, + [570] = 570, + [571] = 571, + [572] = 572, + [573] = 557, + [574] = 559, + [575] = 568, + [576] = 576, + [577] = 559, + [578] = 562, + [579] = 572, + [580] = 570, + [581] = 559, + [582] = 557, + [583] = 571, + [584] = 557, + [585] = 563, + [586] = 565, + [587] = 561, + [588] = 561, + [589] = 589, + [590] = 565, + [591] = 561, + [592] = 592, + [593] = 571, + [594] = 570, + [595] = 595, [596] = 596, - [597] = 388, - [598] = 396, - [599] = 582, - [600] = 582, - [601] = 400, - [602] = 346, - [603] = 350, - [604] = 346, - [605] = 356, - [606] = 355, - [607] = 351, + [597] = 572, + [598] = 598, + [599] = 563, + [600] = 559, + [601] = 571, + [602] = 562, + [603] = 603, + [604] = 604, + [605] = 605, + [606] = 606, + [607] = 607, [608] = 608, - [609] = 609, + [609] = 565, [610] = 610, - [611] = 611, - [612] = 612, - [613] = 613, + [611] = 557, + [612] = 559, + [613] = 559, [614] = 614, [615] = 615, - [616] = 616, + [616] = 568, [617] = 617, [618] = 618, [619] = 619, - [620] = 620, - [621] = 609, - [622] = 616, + [620] = 576, + [621] = 568, + [622] = 622, [623] = 623, - [624] = 617, - [625] = 620, - [626] = 610, - [627] = 616, - [628] = 611, + [624] = 624, + [625] = 625, + [626] = 626, + [627] = 557, + [628] = 628, [629] = 629, - [630] = 619, - [631] = 609, + [630] = 630, + [631] = 631, [632] = 632, [633] = 633, - [634] = 629, - [635] = 617, - [636] = 610, - [637] = 611, - [638] = 612, - [639] = 613, - [640] = 640, - [641] = 609, - [642] = 632, - [643] = 608, - [644] = 612, - [645] = 619, - [646] = 618, - [647] = 609, - [648] = 633, - [649] = 617, - [650] = 650, - [651] = 616, - [652] = 629, - [653] = 611, - [654] = 609, - [655] = 650, - [656] = 623, - [657] = 609, - [658] = 623, - [659] = 619, - [660] = 623, - [661] = 650, - [662] = 619, - [663] = 614, - [664] = 650, - [665] = 615, - [666] = 629, - [667] = 615, - [668] = 609, - [669] = 629, - [670] = 609, - [671] = 632, - [672] = 608, - [673] = 612, - [674] = 617, - [675] = 610, - [676] = 611, - [677] = 612, - [678] = 613, - [679] = 614, - [680] = 609, - [681] = 608, - [682] = 615, - [683] = 608, - [684] = 608, - [685] = 618, - [686] = 396, - [687] = 393, - [688] = 629, - [689] = 392, - [690] = 616, - [691] = 616, - [692] = 390, - [693] = 609, - [694] = 389, - [695] = 388, - [696] = 387, - [697] = 386, - [698] = 427, - [699] = 613, - [700] = 623, - [701] = 620, - [702] = 650, - [703] = 633, - [704] = 618, - [705] = 640, - [706] = 616, - [707] = 620, - [708] = 708, - [709] = 619, - [710] = 614, - [711] = 615, - [712] = 404, - [713] = 629, - [714] = 618, - [715] = 620, - [716] = 632, - [717] = 613, - [718] = 400, - [719] = 612, - [720] = 611, - [721] = 610, - [722] = 610, - [723] = 617, - [724] = 610, - [725] = 650, - [726] = 623, - [727] = 609, - [728] = 619, - [729] = 611, - [730] = 632, - [731] = 612, - [732] = 619, - [733] = 623, - [734] = 650, - [735] = 640, - [736] = 623, - [737] = 629, - [738] = 650, - [739] = 615, - [740] = 613, - [741] = 617, - [742] = 610, - [743] = 611, - [744] = 633, - [745] = 612, - [746] = 613, - [747] = 632, - [748] = 633, - [749] = 617, - [750] = 632, - [751] = 619, - [752] = 618, - [753] = 618, - [754] = 613, - [755] = 616, - [756] = 616, - [757] = 612, - [758] = 620, - [759] = 609, - [760] = 611, - [761] = 610, - [762] = 609, - [763] = 619, + [634] = 564, + [635] = 564, + [636] = 636, + [637] = 557, + [638] = 638, + [639] = 639, + [640] = 562, + [641] = 564, + [642] = 561, + [643] = 564, + [644] = 563, + [645] = 645, + [646] = 572, + [647] = 557, + [648] = 559, + [649] = 262, + [650] = 568, + [651] = 568, + [652] = 570, + [653] = 557, + [654] = 557, + [655] = 576, + [656] = 570, + [657] = 576, + [658] = 562, + [659] = 563, + [660] = 559, + [661] = 572, + [662] = 662, + [663] = 571, + [664] = 561, + [665] = 572, + [666] = 564, + [667] = 565, + [668] = 561, + [669] = 268, + [670] = 564, + [671] = 565, + [672] = 565, + [673] = 265, + [674] = 266, + [675] = 563, + [676] = 568, + [677] = 559, + [678] = 562, + [679] = 261, + [680] = 561, + [681] = 562, + [682] = 563, + [683] = 571, + [684] = 572, + [685] = 571, + [686] = 625, + [687] = 596, + [688] = 622, + [689] = 617, + [690] = 615, + [691] = 614, + [692] = 265, + [693] = 564, + [694] = 565, + [695] = 266, + [696] = 607, + [697] = 262, + [698] = 268, + [699] = 592, + [700] = 572, + [701] = 571, + [702] = 561, + [703] = 628, + [704] = 604, + [705] = 618, + [706] = 631, + [707] = 268, + [708] = 559, + [709] = 262, + [710] = 557, + [711] = 595, + [712] = 632, + [713] = 633, + [714] = 563, + [715] = 562, + [716] = 266, + [717] = 623, + [718] = 561, + [719] = 598, + [720] = 563, + [721] = 564, + [722] = 562, + [723] = 603, + [724] = 557, + [725] = 605, + [726] = 265, + [727] = 606, + [728] = 608, + [729] = 610, + [730] = 572, + [731] = 589, + [732] = 571, + [733] = 619, + [734] = 624, + [735] = 629, + [736] = 568, + [737] = 636, + [738] = 638, + [739] = 576, + [740] = 568, + [741] = 570, + [742] = 645, + [743] = 565, + [744] = 561, + [745] = 662, + [746] = 559, + [747] = 626, + [748] = 576, + [749] = 568, + [750] = 615, + [751] = 564, + [752] = 564, + [753] = 626, + [754] = 576, + [755] = 561, + [756] = 571, + [757] = 633, + [758] = 632, + [759] = 631, + [760] = 557, + [761] = 628, + [762] = 630, + [763] = 625, [764] = 623, - [765] = 650, + [765] = 622, [766] = 617, - [767] = 405, - [768] = 614, - [769] = 632, - [770] = 633, - [771] = 608, - [772] = 609, - [773] = 623, - [774] = 650, - [775] = 608, - [776] = 615, - [777] = 428, - [778] = 619, - [779] = 623, - [780] = 650, - [781] = 618, - [782] = 708, - [783] = 612, - [784] = 613, - [785] = 629, - [786] = 620, - [787] = 416, - [788] = 619, - [789] = 623, - [790] = 650, - [791] = 350, - [792] = 616, - [793] = 423, - [794] = 640, - [795] = 620, - [796] = 619, - [797] = 623, - [798] = 650, - [799] = 650, - [800] = 623, - [801] = 618, - [802] = 609, - [803] = 433, - [804] = 619, - [805] = 616, - [806] = 618, - [807] = 632, - [808] = 430, - [809] = 355, - [810] = 613, - [811] = 612, - [812] = 619, - [813] = 609, - [814] = 623, - [815] = 650, - [816] = 351, - [817] = 615, - [818] = 356, - [819] = 632, - [820] = 633, - [821] = 613, - [822] = 612, - [823] = 611, - [824] = 618, - [825] = 620, - [826] = 610, - [827] = 617, - [828] = 619, - [829] = 650, - [830] = 623, - [831] = 609, - [832] = 619, - [833] = 640, - [834] = 617, - [835] = 608, - [836] = 615, - [837] = 632, - [838] = 633, - [839] = 611, - [840] = 610, - [841] = 619, - [842] = 623, - [843] = 650, - [844] = 619, - [845] = 623, - [846] = 650, - [847] = 608, - [848] = 633, - [849] = 609, - [850] = 623, - [851] = 650, - [852] = 608, - [853] = 610, - [854] = 619, - [855] = 623, - [856] = 650, - [857] = 611, - [858] = 614, - [859] = 613, - [860] = 618, - [861] = 429, - [862] = 708, - [863] = 629, - [864] = 614, - [865] = 615, - [866] = 629, - [867] = 620, - [868] = 629, - [869] = 616, - [870] = 615, - [871] = 629, - [872] = 640, - [873] = 608, - [874] = 609, - [875] = 617, - [876] = 610, - [877] = 611, - [878] = 612, - [879] = 613, - [880] = 632, - [881] = 618, - [882] = 616, - [883] = 615, - [884] = 608, - [885] = 640, - [886] = 615, - [887] = 632, - [888] = 617, - [889] = 889, - [890] = 890, - [891] = 891, - [892] = 892, - [893] = 893, - [894] = 894, - [895] = 346, - [896] = 420, - [897] = 408, - [898] = 346, - [899] = 410, - [900] = 411, - [901] = 415, - [902] = 380, - [903] = 350, - [904] = 418, - [905] = 419, - [906] = 407, - [907] = 409, - [908] = 426, - [909] = 416, - [910] = 351, - [911] = 355, - [912] = 356, - [913] = 350, - [914] = 360, - [915] = 351, - [916] = 349, - [917] = 356, - [918] = 355, - [919] = 346, - [920] = 350, - [921] = 346, - [922] = 346, - [923] = 355, - [924] = 356, - [925] = 346, - [926] = 355, - [927] = 346, - [928] = 351, - [929] = 351, - [930] = 356, - [931] = 355, - [932] = 351, - [933] = 356, - [934] = 350, - [935] = 346, - [936] = 350, - [937] = 350, - [938] = 938, - [939] = 939, - [940] = 939, - [941] = 939, - [942] = 938, - [943] = 356, - [944] = 351, - [945] = 939, - [946] = 939, - [947] = 350, - [948] = 938, - [949] = 938, - [950] = 939, - [951] = 938, - [952] = 939, - [953] = 351, - [954] = 350, - [955] = 939, - [956] = 939, - [957] = 355, - [958] = 938, - [959] = 939, - [960] = 938, - [961] = 938, - [962] = 938, - [963] = 356, - [964] = 355, - [965] = 939, - [966] = 939, - [967] = 356, - [968] = 938, - [969] = 355, - [970] = 351, - [971] = 938, - [972] = 939, - [973] = 938, - [974] = 938, - [975] = 975, - [976] = 976, - [977] = 976, - [978] = 976, - [979] = 342, - [980] = 339, - [981] = 357, - [982] = 982, - [983] = 983, - [984] = 984, - [985] = 982, - [986] = 986, - [987] = 987, - [988] = 988, - [989] = 986, - [990] = 982, - [991] = 991, - [992] = 992, - [993] = 988, - [994] = 987, - [995] = 986, - [996] = 996, - [997] = 996, - [998] = 892, - [999] = 999, - [1000] = 996, - [1001] = 996, - [1002] = 999, - [1003] = 996, - [1004] = 996, - [1005] = 996, - [1006] = 996, - [1007] = 996, - [1008] = 999, - [1009] = 996, - [1010] = 996, - [1011] = 999, - [1012] = 999, - [1013] = 999, - [1014] = 996, - [1015] = 996, - [1016] = 996, - [1017] = 999, - [1018] = 1018, - [1019] = 999, - [1020] = 999, - [1021] = 893, - [1022] = 1022, - [1023] = 996, - [1024] = 999, - [1025] = 999, - [1026] = 999, - [1027] = 996, - [1028] = 996, - [1029] = 999, - [1030] = 996, - [1031] = 996, - [1032] = 996, + [767] = 639, + [768] = 568, + [769] = 268, + [770] = 614, + [771] = 565, + [772] = 262, + [773] = 266, + [774] = 563, + [775] = 562, + [776] = 576, + [777] = 607, + [778] = 570, + [779] = 571, + [780] = 265, + [781] = 592, + [782] = 576, + [783] = 561, + [784] = 572, + [785] = 564, + [786] = 564, + [787] = 557, + [788] = 604, + [789] = 618, + [790] = 565, + [791] = 563, + [792] = 595, + [793] = 559, + [794] = 562, + [795] = 571, + [796] = 596, + [797] = 562, + [798] = 563, + [799] = 603, + [800] = 565, + [801] = 568, + [802] = 605, + [803] = 606, + [804] = 608, + [805] = 559, + [806] = 610, + [807] = 645, + [808] = 589, + [809] = 619, + [810] = 624, + [811] = 629, + [812] = 636, + [813] = 638, + [814] = 572, + [815] = 572, + [816] = 598, + [817] = 571, + [818] = 562, + [819] = 264, + [820] = 267, + [821] = 267, + [822] = 576, + [823] = 568, + [824] = 571, + [825] = 570, + [826] = 572, + [827] = 565, + [828] = 561, + [829] = 572, + [830] = 662, + [831] = 565, + [832] = 563, + [833] = 561, + [834] = 563, + [835] = 562, + [836] = 568, + [837] = 264, + [838] = 614, + [839] = 629, + [840] = 636, + [841] = 618, + [842] = 576, + [843] = 563, + [844] = 633, + [845] = 632, + [846] = 598, + [847] = 564, + [848] = 622, + [849] = 565, + [850] = 562, + [851] = 603, + [852] = 568, + [853] = 571, + [854] = 572, + [855] = 662, + [856] = 645, + [857] = 605, + [858] = 604, + [859] = 571, + [860] = 625, + [861] = 606, + [862] = 623, + [863] = 608, + [864] = 610, + [865] = 596, + [866] = 631, + [867] = 576, + [868] = 626, + [869] = 564, + [870] = 592, + [871] = 589, + [872] = 607, + [873] = 619, + [874] = 628, + [875] = 615, + [876] = 561, + [877] = 571, + [878] = 595, + [879] = 638, + [880] = 624, + [881] = 617, + [882] = 562, + [883] = 883, + [884] = 266, + [885] = 883, + [886] = 883, + [887] = 264, + [888] = 571, + [889] = 568, + [890] = 563, + [891] = 267, + [892] = 883, + [893] = 883, + [894] = 268, + [895] = 883, + [896] = 883, + [897] = 264, + [898] = 883, + [899] = 262, + [900] = 883, + [901] = 883, + [902] = 883, + [903] = 883, + [904] = 883, + [905] = 883, + [906] = 883, + [907] = 883, + [908] = 267, + [909] = 883, + [910] = 883, + [911] = 565, + [912] = 883, + [913] = 883, + [914] = 265, + [915] = 883, + [916] = 572, + [917] = 662, + [918] = 918, + [919] = 918, + [920] = 268, + [921] = 918, + [922] = 918, + [923] = 918, + [924] = 918, + [925] = 571, + [926] = 918, + [927] = 662, + [928] = 265, + [929] = 918, + [930] = 918, + [931] = 918, + [932] = 918, + [933] = 918, + [934] = 571, + [935] = 662, + [936] = 918, + [937] = 262, + [938] = 918, + [939] = 918, + [940] = 918, + [941] = 266, + [942] = 918, + [943] = 918, + [944] = 918, + [945] = 918, + [946] = 662, + [947] = 918, + [948] = 662, + [949] = 662, + [950] = 562, + [951] = 564, + [952] = 565, + [953] = 568, + [954] = 563, + [955] = 561, + [956] = 564, + [957] = 563, + [958] = 565, + [959] = 562, + [960] = 564, + [961] = 568, + [962] = 565, + [963] = 568, + [964] = 563, + [965] = 562, + [966] = 561, + [967] = 564, + [968] = 561, + [969] = 559, + [970] = 645, + [971] = 562, + [972] = 565, + [973] = 563, + [974] = 617, + [975] = 561, + [976] = 559, + [977] = 559, + [978] = 557, + [979] = 568, + [980] = 557, + [981] = 633, + [982] = 625, + [983] = 557, + [984] = 632, + [985] = 557, + [986] = 631, + [987] = 607, + [988] = 559, + [989] = 614, + [990] = 628, + [991] = 615, + [992] = 626, + [993] = 622, + [994] = 623, + [995] = 617, + [996] = 633, + [997] = 626, + [998] = 570, + [999] = 570, + [1000] = 615, + [1001] = 614, + [1002] = 631, + [1003] = 267, + [1004] = 622, + [1005] = 264, + [1006] = 645, + [1007] = 623, + [1008] = 625, + [1009] = 628, + [1010] = 632, + [1011] = 607, + [1012] = 619, + [1013] = 595, + [1014] = 589, + [1015] = 610, + [1016] = 608, + [1017] = 606, + [1018] = 639, + [1019] = 624, + [1020] = 605, + [1021] = 603, + [1022] = 629, + [1023] = 592, + [1024] = 636, + [1025] = 604, + [1026] = 638, + [1027] = 596, + [1028] = 645, + [1029] = 598, + [1030] = 561, + [1031] = 630, + [1032] = 618, [1033] = 1033, [1034] = 1034, - [1035] = 1035, - [1036] = 1036, - [1037] = 1037, - [1038] = 1038, + [1035] = 1033, + [1036] = 1034, + [1037] = 1033, + [1038] = 1033, [1039] = 1039, - [1040] = 1033, - [1041] = 1041, - [1042] = 1042, - [1043] = 1039, - [1044] = 1033, - [1045] = 1045, - [1046] = 1046, - [1047] = 1035, - [1048] = 1036, - [1049] = 1038, - [1050] = 1039, - [1051] = 1041, - [1052] = 1033, - [1053] = 1033, - [1054] = 1033, - [1055] = 1033, - [1056] = 1033, - [1057] = 1033, - [1058] = 1033, - [1059] = 1033, - [1060] = 1037, - [1061] = 1061, - [1062] = 1062, - [1063] = 1038, - [1064] = 1034, - [1065] = 1065, - [1066] = 1042, - [1067] = 1038, - [1068] = 1045, - [1069] = 1045, - [1070] = 1046, - [1071] = 1033, - [1072] = 1033, - [1073] = 1035, - [1074] = 1036, - [1075] = 1038, - [1076] = 1037, - [1077] = 1042, - [1078] = 1039, + [1040] = 1034, + [1041] = 1033, + [1042] = 561, + [1043] = 1034, + [1044] = 1034, + [1045] = 1033, + [1046] = 1034, + [1047] = 1047, + [1048] = 1034, + [1049] = 1033, + [1050] = 1033, + [1051] = 1034, + [1052] = 563, + [1053] = 619, + [1054] = 589, + [1055] = 606, + [1056] = 610, + [1057] = 564, + [1058] = 605, + [1059] = 603, + [1060] = 608, + [1061] = 598, + [1062] = 624, + [1063] = 564, + [1064] = 596, + [1065] = 645, + [1066] = 629, + [1067] = 595, + [1068] = 618, + [1069] = 604, + [1070] = 636, + [1071] = 638, + [1072] = 565, + [1073] = 562, + [1074] = 568, + [1075] = 592, + [1076] = 1076, + [1077] = 1077, + [1078] = 1078, [1079] = 1079, - [1080] = 1041, - [1081] = 1041, - [1082] = 1037, - [1083] = 1039, - [1084] = 1038, - [1085] = 1036, - [1086] = 1035, - [1087] = 1046, - [1088] = 1045, - [1089] = 1037, - [1090] = 1033, - [1091] = 1042, - [1092] = 1041, - [1093] = 1042, - [1094] = 1045, - [1095] = 1046, - [1096] = 1035, - [1097] = 1041, - [1098] = 1061, - [1099] = 1062, - [1100] = 1039, - [1101] = 1034, - [1102] = 1065, - [1103] = 1036, - [1104] = 1042, - [1105] = 1061, - [1106] = 1045, - [1107] = 1046, - [1108] = 1038, - [1109] = 1037, - [1110] = 1035, - [1111] = 1036, - [1112] = 1038, - [1113] = 1039, - [1114] = 1079, - [1115] = 1041, - [1116] = 1116, - [1117] = 1039, - [1118] = 1041, - [1119] = 1033, - [1120] = 1037, - [1121] = 1061, - [1122] = 1062, - [1123] = 1038, - [1124] = 1034, - [1125] = 1065, - [1126] = 1033, - [1127] = 1045, - [1128] = 1046, - [1129] = 1129, - [1130] = 1041, - [1131] = 1035, - [1132] = 1036, - [1133] = 1039, - [1134] = 1079, - [1135] = 1041, - [1136] = 1036, - [1137] = 1035, - [1138] = 1038, - [1139] = 1046, - [1140] = 1045, - [1141] = 1061, - [1142] = 1062, - [1143] = 1037, - [1144] = 1046, - [1145] = 1065, - [1146] = 1039, - [1147] = 1045, - [1148] = 1046, - [1149] = 1037, - [1150] = 1038, - [1151] = 1035, - [1152] = 1036, - [1153] = 1039, - [1154] = 1079, - [1155] = 1041, - [1156] = 1061, - [1157] = 1062, - [1158] = 1038, - [1159] = 1034, - [1160] = 1065, - [1161] = 1045, - [1162] = 1046, - [1163] = 1036, - [1164] = 1035, - [1165] = 1035, - [1166] = 1036, - [1167] = 1039, - [1168] = 1079, - [1169] = 1079, - [1170] = 1061, - [1171] = 1062, - [1172] = 1033, - [1173] = 1034, - [1174] = 1065, - [1175] = 1045, - [1176] = 1046, - [1177] = 1177, - [1178] = 1036, - [1179] = 1035, - [1180] = 1036, - [1181] = 1039, - [1182] = 1079, - [1183] = 1041, - [1184] = 1046, - [1185] = 1061, - [1186] = 1062, - [1187] = 1045, - [1188] = 1034, - [1189] = 1065, - [1190] = 1035, - [1191] = 1042, - [1192] = 1033, - [1193] = 1129, - [1194] = 1079, - [1195] = 1042, - [1196] = 1061, - [1197] = 1062, - [1198] = 1042, - [1199] = 1034, - [1200] = 1065, - [1201] = 1033, - [1202] = 1046, - [1203] = 1129, - [1204] = 1079, - [1205] = 1061, - [1206] = 1062, - [1207] = 1207, - [1208] = 1034, - [1209] = 1065, - [1210] = 1045, - [1211] = 1129, - [1212] = 1079, - [1213] = 1061, - [1214] = 1062, - [1215] = 1065, - [1216] = 1034, - [1217] = 1065, - [1218] = 1038, - [1219] = 1129, - [1220] = 1079, - [1221] = 1061, - [1222] = 1062, - [1223] = 1034, - [1224] = 1034, - [1225] = 1065, - [1226] = 1041, - [1227] = 1129, - [1228] = 1079, - [1229] = 1061, - [1230] = 1062, - [1231] = 1062, - [1232] = 1034, - [1233] = 1065, - [1234] = 1033, - [1235] = 1129, - [1236] = 1079, - [1237] = 1207, - [1238] = 1129, - [1239] = 1207, - [1240] = 1129, - [1241] = 1207, - [1242] = 1129, - [1243] = 1207, - [1244] = 1129, - [1245] = 1207, - [1246] = 1129, - [1247] = 1207, - [1248] = 1129, - [1249] = 1207, - [1250] = 1207, - [1251] = 1207, - [1252] = 1207, - [1253] = 1207, - [1254] = 1207, + [1080] = 1080, + [1081] = 1081, + [1082] = 1082, + [1083] = 1083, + [1084] = 1084, + [1085] = 1081, + [1086] = 1086, + [1087] = 1086, + [1088] = 1082, + [1089] = 1083, + [1090] = 1090, + [1091] = 1091, + [1092] = 1084, + [1093] = 1086, + [1094] = 1086, + [1095] = 1095, + [1096] = 1090, + [1097] = 1086, + [1098] = 1086, + [1099] = 1099, + [1100] = 1078, + [1101] = 1090, + [1102] = 1079, + [1103] = 1086, + [1104] = 1086, + [1105] = 1090, + [1106] = 1090, + [1107] = 1086, + [1108] = 1090, + [1109] = 1080, + [1110] = 1086, + [1111] = 1090, + [1112] = 1078, + [1113] = 1086, + [1114] = 1086, + [1115] = 1090, + [1116] = 1076, + [1117] = 1086, + [1118] = 1118, + [1119] = 1099, + [1120] = 1086, + [1121] = 1095, + [1122] = 1118, + [1123] = 1086, + [1124] = 1099, + [1125] = 1086, + [1126] = 1095, + [1127] = 1086, + [1128] = 1099, + [1129] = 1086, + [1130] = 1095, + [1131] = 1084, + [1132] = 1083, + [1133] = 1086, + [1134] = 1099, + [1135] = 1082, + [1136] = 1086, + [1137] = 1099, + [1138] = 1138, + [1139] = 1139, + [1140] = 1140, + [1141] = 1090, + [1142] = 1138, + [1143] = 1077, + [1144] = 1144, + [1145] = 1081, + [1146] = 1080, + [1147] = 1079, + [1148] = 1140, + [1149] = 1090, + [1150] = 1078, + [1151] = 1079, + [1152] = 1080, + [1153] = 1138, + [1154] = 1081, + [1155] = 1082, + [1156] = 1156, + [1157] = 1139, + [1158] = 1144, + [1159] = 1090, + [1160] = 1078, + [1161] = 1079, + [1162] = 1144, + [1163] = 1076, + [1164] = 1083, + [1165] = 1081, + [1166] = 1086, + [1167] = 1091, + [1168] = 1084, + [1169] = 1118, + [1170] = 1095, + [1171] = 1084, + [1172] = 1091, + [1173] = 1083, + [1174] = 1082, + [1175] = 1081, + [1176] = 1080, + [1177] = 1079, + [1178] = 1078, + [1179] = 1140, + [1180] = 1138, + [1181] = 1077, + [1182] = 1099, + [1183] = 1090, + [1184] = 1099, + [1185] = 1082, + [1186] = 1099, + [1187] = 1156, + [1188] = 1139, + [1189] = 1099, + [1190] = 1156, + [1191] = 1099, + [1192] = 1139, + [1193] = 1099, + [1194] = 1099, + [1195] = 1095, + [1196] = 1084, + [1197] = 1140, + [1198] = 1138, + [1199] = 1077, + [1200] = 1091, + [1201] = 1083, + [1202] = 1082, + [1203] = 1156, + [1204] = 1081, + [1205] = 1080, + [1206] = 1079, + [1207] = 1078, + [1208] = 1144, + [1209] = 1090, + [1210] = 1099, + [1211] = 1118, + [1212] = 1144, + [1213] = 1099, + [1214] = 1118, + [1215] = 1144, + [1216] = 1099, + [1217] = 1095, + [1218] = 1118, + [1219] = 1077, + [1220] = 1140, + [1221] = 1090, + [1222] = 1076, + [1223] = 1084, + [1224] = 1140, + [1225] = 1138, + [1226] = 1077, + [1227] = 1090, + [1228] = 1090, + [1229] = 1081, + [1230] = 1139, + [1231] = 1083, + [1232] = 1082, + [1233] = 1081, + [1234] = 1080, + [1235] = 1084, + [1236] = 1091, + [1237] = 1083, + [1238] = 1082, + [1239] = 1081, + [1240] = 1080, + [1241] = 1140, + [1242] = 1138, + [1243] = 1077, + [1244] = 1079, + [1245] = 1078, + [1246] = 1079, + [1247] = 1090, + [1248] = 1078, + [1249] = 1144, + [1250] = 1080, + [1251] = 1095, + [1252] = 1099, + [1253] = 1118, + [1254] = 1076, + [1255] = 1095, + [1256] = 1140, + [1257] = 1138, + [1258] = 1077, + [1259] = 1084, + [1260] = 1077, + [1261] = 1138, + [1262] = 1140, + [1263] = 1090, + [1264] = 1083, + [1265] = 1082, + [1266] = 1139, + [1267] = 1090, + [1268] = 1156, + [1269] = 1090, + [1270] = 1138, + [1271] = 1081, + [1272] = 1080, + [1273] = 1079, + [1274] = 1084, + [1275] = 1091, + [1276] = 1140, + [1277] = 1077, + [1278] = 1078, + [1279] = 1144, + [1280] = 1083, + [1281] = 1082, + [1282] = 1140, + [1283] = 1138, + [1284] = 1077, + [1285] = 1077, + [1286] = 1080, + [1287] = 1079, + [1288] = 1140, + [1289] = 1138, + [1290] = 1077, + [1291] = 1078, + [1292] = 1083, + [1293] = 1090, + [1294] = 1095, + [1295] = 1099, + [1296] = 1118, + [1297] = 1076, + [1298] = 1084, + [1299] = 1084, + [1300] = 1083, + [1301] = 1082, + [1302] = 1081, + [1303] = 1080, + [1304] = 1140, + [1305] = 1138, + [1306] = 1077, + [1307] = 1079, + [1308] = 1095, + [1309] = 1156, + [1310] = 1139, + [1311] = 1078, + [1312] = 1077, + [1313] = 1138, + [1314] = 1140, + [1315] = 1144, + [1316] = 1138, + [1317] = 1140, + [1318] = 1090, + [1319] = 1091, + [1320] = 1139, + [1321] = 1077, + [1322] = 1138, + [1323] = 1156, + [1324] = 1139, + [1325] = 1095, + [1326] = 1099, + [1327] = 1090, + [1328] = 1140, + [1329] = 568, + [1330] = 1091, + [1331] = 1118, + [1332] = 1140, + [1333] = 1138, + [1334] = 1077, + [1335] = 1076, + [1336] = 1139, + [1337] = 1077, + [1338] = 1138, + [1339] = 1156, + [1340] = 1090, + [1341] = 1140, + [1342] = 1091, + [1343] = 562, + [1344] = 565, + [1345] = 563, + [1346] = 1156, + [1347] = 1077, + [1348] = 1138, + [1349] = 1090, + [1350] = 1140, + [1351] = 1140, + [1352] = 1140, + [1353] = 1138, + [1354] = 1077, + [1355] = 1084, + [1356] = 1083, + [1357] = 1082, + [1358] = 1081, + [1359] = 1139, + [1360] = 1156, + [1361] = 1140, + [1362] = 1138, + [1363] = 1077, + [1364] = 1090, + [1365] = 1084, + [1366] = 1139, + [1367] = 1091, + [1368] = 1083, + [1369] = 1139, + [1370] = 1156, + [1371] = 1082, + [1372] = 1081, + [1373] = 1080, + [1374] = 1079, + [1375] = 1140, + [1376] = 1138, + [1377] = 1077, + [1378] = 1078, + [1379] = 1080, + [1380] = 1077, + [1381] = 1138, + [1382] = 1079, + [1383] = 1078, + [1384] = 1090, + [1385] = 1095, + [1386] = 1140, + [1387] = 1156, + [1388] = 1140, + [1389] = 1090, + [1390] = 1138, + [1391] = 1077, + [1392] = 1156, + [1393] = 1139, + [1394] = 1091, + [1395] = 1156, + [1396] = 1140, + [1397] = 1095, + [1398] = 1090, + [1399] = 1138, + [1400] = 1077, + [1401] = 1091, + [1402] = 1077, + [1403] = 1138, + [1404] = 1140, + [1405] = 1084, + [1406] = 1156, + [1407] = 1077, + [1408] = 1138, + [1409] = 1140, + [1410] = 1083, + [1411] = 1082, + [1412] = 1081, + [1413] = 1077, + [1414] = 1138, + [1415] = 1080, + [1416] = 1079, + [1417] = 1078, + [1418] = 1144, + [1419] = 1095, + [1420] = 1156, + [1421] = 1139, + [1422] = 1095, + [1423] = 1099, + [1424] = 1118, + [1425] = 1078, + [1426] = 1079, + [1427] = 1080, + [1428] = 1081, + [1429] = 1082, + [1430] = 1083, + [1431] = 1084, + [1432] = 1084, + [1433] = 1083, + [1434] = 1082, + [1435] = 1081, + [1436] = 1095, + [1437] = 1080, + [1438] = 1079, + [1439] = 1078, + [1440] = 1095, + [1441] = 1156, + [1442] = 1156, + [1443] = 1078, + [1444] = 1079, + [1445] = 1080, + [1446] = 1081, + [1447] = 1082, + [1448] = 1139, + [1449] = 1083, + [1450] = 1084, + [1451] = 1140, + [1452] = 1090, + [1453] = 1077, + [1454] = 1138, + [1455] = 1138, + [1456] = 1095, + [1457] = 1077, + [1458] = 1139, + [1459] = 1140, + [1460] = 1091, + [1461] = 1078, + [1462] = 1079, + [1463] = 1080, + [1464] = 1081, + [1465] = 1082, + [1466] = 1083, + [1467] = 1084, + [1468] = 1140, + [1469] = 1095, + [1470] = 1090, + [1471] = 1156, + [1472] = 1138, + [1473] = 1078, + [1474] = 1079, + [1475] = 1080, + [1476] = 1081, + [1477] = 1082, + [1478] = 1083, + [1479] = 1084, + [1480] = 1077, + [1481] = 1091, + [1482] = 1091, + [1483] = 1140, + [1484] = 1090, + [1485] = 1156, + [1486] = 1138, + [1487] = 1076, + [1488] = 1077, + [1489] = 1118, + [1490] = 1099, + [1491] = 1095, + [1492] = 1091, + [1493] = 1084, + [1494] = 1083, + [1495] = 1156, + [1496] = 1082, + [1497] = 1081, + [1498] = 1080, + [1499] = 1079, + [1500] = 1078, + [1501] = 1144, + [1502] = 1502, + [1503] = 606, + [1504] = 645, + [1505] = 1505, + [1506] = 1506, + [1507] = 1507, + [1508] = 1508, + [1509] = 1509, + [1510] = 565, + [1511] = 564, + [1512] = 568, + [1513] = 562, + [1514] = 563, + [1515] = 564, + [1516] = 565, + [1517] = 562, + [1518] = 563, + [1519] = 568, + [1520] = 615, + [1521] = 623, + [1522] = 625, + [1523] = 617, + [1524] = 607, + [1525] = 628, + [1526] = 633, + [1527] = 631, + [1528] = 622, + [1529] = 576, + [1530] = 645, + [1531] = 614, + [1532] = 632, + [1533] = 628, + [1534] = 562, + [1535] = 632, + [1536] = 565, + [1537] = 568, + [1538] = 564, + [1539] = 631, + [1540] = 625, + [1541] = 645, + [1542] = 564, + [1543] = 607, + [1544] = 623, + [1545] = 622, + [1546] = 563, + [1547] = 617, + [1548] = 615, + [1549] = 614, + [1550] = 633, + [1551] = 565, + [1552] = 562, + [1553] = 572, + [1554] = 571, + [1555] = 568, + [1556] = 563, + [1557] = 562, + [1558] = 563, + [1559] = 564, + [1560] = 564, + [1561] = 564, + [1562] = 562, + [1563] = 568, + [1564] = 563, + [1565] = 564, + [1566] = 563, + [1567] = 562, + [1568] = 568, + [1569] = 565, + [1570] = 564, + [1571] = 568, + [1572] = 565, + [1573] = 564, + [1574] = 565, + [1575] = 1575, + [1576] = 568, + [1577] = 1575, + [1578] = 1575, + [1579] = 1575, + [1580] = 1580, + [1581] = 1580, + [1582] = 1580, + [1583] = 1580, + [1584] = 1580, + [1585] = 1580, + [1586] = 1575, + [1587] = 1575, + [1588] = 1580, + [1589] = 1580, + [1590] = 1575, + [1591] = 1575, + [1592] = 1575, + [1593] = 1575, + [1594] = 1580, + [1595] = 1580, + [1596] = 1575, + [1597] = 1580, + [1598] = 568, + [1599] = 1580, + [1600] = 1580, + [1601] = 1575, + [1602] = 565, + [1603] = 1580, + [1604] = 1575, + [1605] = 1575, + [1606] = 1580, + [1607] = 1575, + [1608] = 1575, + [1609] = 1575, + [1610] = 1580, + [1611] = 1575, + [1612] = 568, + [1613] = 1580, + [1614] = 562, + [1615] = 565, + [1616] = 1580, + [1617] = 563, + [1618] = 562, + [1619] = 563, + [1620] = 1575, + [1621] = 565, + [1622] = 562, + [1623] = 563, + [1624] = 1575, + [1625] = 1580, + [1626] = 1580, + [1627] = 1575, + [1628] = 1580, + [1629] = 1629, + [1630] = 1630, + [1631] = 1630, + [1632] = 1630, + [1633] = 1630, + [1634] = 1630, + [1635] = 1630, + [1636] = 1630, + [1637] = 1630, + [1638] = 557, + [1639] = 559, + [1640] = 570, + [1641] = 639, + [1642] = 645, + [1643] = 630, + [1644] = 605, + [1645] = 629, + [1646] = 618, + [1647] = 608, + [1648] = 610, + [1649] = 596, + [1650] = 592, + [1651] = 589, + [1652] = 624, + [1653] = 603, + [1654] = 598, + [1655] = 619, + [1656] = 636, + [1657] = 595, + [1658] = 638, + [1659] = 604, + [1660] = 1660, + [1661] = 1661, + [1662] = 1662, + [1663] = 1661, + [1664] = 1664, + [1665] = 1665, + [1666] = 1660, + [1667] = 1660, + [1668] = 1660, + [1669] = 1661, + [1670] = 1660, + [1671] = 1660, + [1672] = 1661, + [1673] = 1673, + [1674] = 1661, + [1675] = 1661, + [1676] = 1662, + [1677] = 1661, + [1678] = 1660, + [1679] = 1661, + [1680] = 1680, + [1681] = 1664, + [1682] = 1660, + [1683] = 1683, + [1684] = 1684, + [1685] = 1684, + [1686] = 1686, + [1687] = 1686, + [1688] = 1684, + [1689] = 1686, + [1690] = 1686, + [1691] = 1686, + [1692] = 1686, + [1693] = 1686, + [1694] = 1686, + [1695] = 1684, + [1696] = 1686, + [1697] = 1686, + [1698] = 1686, + [1699] = 1684, + [1700] = 1684, + [1701] = 1701, + [1702] = 1684, + [1703] = 1684, + [1704] = 1506, + [1705] = 1686, + [1706] = 1686, + [1707] = 1684, + [1708] = 1686, + [1709] = 1686, + [1710] = 1684, + [1711] = 1686, + [1712] = 1684, + [1713] = 1686, + [1714] = 1686, + [1715] = 1686, + [1716] = 1686, + [1717] = 1686, + [1718] = 1686, + [1719] = 1686, + [1720] = 1686, + [1721] = 1686, + [1722] = 1684, + [1723] = 1684, + [1724] = 1686, + [1725] = 1686, + [1726] = 1684, + [1727] = 1684, + [1728] = 1686, + [1729] = 1684, + [1730] = 1684, + [1731] = 1731, + [1732] = 1684, + [1733] = 1684, + [1734] = 1686, + [1735] = 1684, + [1736] = 1686, + [1737] = 1509, + [1738] = 1686, + [1739] = 1684, + [1740] = 1686, + [1741] = 1741, + [1742] = 1742, + [1743] = 1743, + [1744] = 1744, + [1745] = 1745, + [1746] = 1746, + [1747] = 1747, + [1748] = 1748, + [1749] = 1749, + [1750] = 1750, + [1751] = 1751, + [1752] = 1741, + [1753] = 1743, + [1754] = 1744, + [1755] = 1745, + [1756] = 1746, + [1757] = 1747, + [1758] = 1748, + [1759] = 1747, + [1760] = 1751, + [1761] = 1751, + [1762] = 1741, + [1763] = 1743, + [1764] = 1744, + [1765] = 1748, + [1766] = 1745, + [1767] = 1746, + [1768] = 1747, + [1769] = 1748, + [1770] = 1741, + [1771] = 1747, + [1772] = 1751, + [1773] = 1741, + [1774] = 1743, + [1775] = 1744, + [1776] = 1741, + [1777] = 1745, + [1778] = 1746, + [1779] = 1747, + [1780] = 1748, + [1781] = 1746, + [1782] = 1745, + [1783] = 1751, + [1784] = 1741, + [1785] = 1743, + [1786] = 1744, + [1787] = 1744, + [1788] = 1745, + [1789] = 1746, + [1790] = 1747, + [1791] = 1748, + [1792] = 1743, + [1793] = 1741, + [1794] = 1741, + [1795] = 1743, + [1796] = 1744, + [1797] = 1797, + [1798] = 1745, + [1799] = 1746, + [1800] = 1747, + [1801] = 1748, + [1802] = 1751, + [1803] = 1748, + [1804] = 1741, + [1805] = 1743, + [1806] = 1744, + [1807] = 1749, + [1808] = 1745, + [1809] = 1746, + [1810] = 1747, + [1811] = 1748, + [1812] = 1750, + [1813] = 1741, + [1814] = 1750, + [1815] = 1815, + [1816] = 1816, + [1817] = 1741, + [1818] = 1818, + [1819] = 1742, + [1820] = 1749, + [1821] = 1751, + [1822] = 1746, + [1823] = 1741, + [1824] = 1748, + [1825] = 1747, + [1826] = 1743, + [1827] = 1744, + [1828] = 1745, + [1829] = 1744, + [1830] = 1745, + [1831] = 1746, + [1832] = 1749, + [1833] = 1750, + [1834] = 1743, + [1835] = 1747, + [1836] = 1797, + [1837] = 1741, + [1838] = 1748, + [1839] = 1750, + [1840] = 1751, + [1841] = 1741, + [1842] = 1748, + [1843] = 1843, + [1844] = 1748, + [1845] = 1747, + [1846] = 1747, + [1847] = 1746, + [1848] = 1745, + [1849] = 1744, + [1850] = 1743, + [1851] = 1741, + [1852] = 1751, + [1853] = 1750, + [1854] = 1750, + [1855] = 1750, + [1856] = 1749, + [1857] = 1857, + [1858] = 1749, + [1859] = 1746, + [1860] = 1741, + [1861] = 1745, + [1862] = 1748, + [1863] = 1749, + [1864] = 1744, + [1865] = 1743, + [1866] = 1741, + [1867] = 1750, + [1868] = 1746, + [1869] = 1751, + [1870] = 1815, + [1871] = 1816, + [1872] = 1745, + [1873] = 1818, + [1874] = 1742, + [1875] = 1749, + [1876] = 1751, + [1877] = 1743, + [1878] = 1744, + [1879] = 1747, + [1880] = 1750, + [1881] = 1745, + [1882] = 1746, + [1883] = 1749, + [1884] = 1747, + [1885] = 1797, + [1886] = 1748, + [1887] = 1749, + [1888] = 1746, + [1889] = 1745, + [1890] = 1741, + [1891] = 1891, + [1892] = 1744, + [1893] = 1743, + [1894] = 1744, + [1895] = 1815, + [1896] = 1816, + [1897] = 1743, + [1898] = 1818, + [1899] = 1742, + [1900] = 1749, + [1901] = 1743, + [1902] = 1744, + [1903] = 1751, + [1904] = 1751, + [1905] = 1745, + [1906] = 1746, + [1907] = 1747, + [1908] = 1797, + [1909] = 1748, + [1910] = 1741, + [1911] = 1911, + [1912] = 1742, + [1913] = 1818, + [1914] = 1749, + [1915] = 1816, + [1916] = 1815, + [1917] = 1741, + [1918] = 1815, + [1919] = 1816, + [1920] = 1741, + [1921] = 1818, + [1922] = 1741, + [1923] = 1749, + [1924] = 1743, + [1925] = 1744, + [1926] = 1741, + [1927] = 1750, + [1928] = 1745, + [1929] = 1746, + [1930] = 1747, + [1931] = 1797, + [1932] = 1748, + [1933] = 1815, + [1934] = 1816, + [1935] = 1749, + [1936] = 1818, + [1937] = 1742, + [1938] = 1743, + [1939] = 1744, + [1940] = 1750, + [1941] = 1748, + [1942] = 1745, + [1943] = 1746, + [1944] = 1747, + [1945] = 1797, + [1946] = 1748, + [1947] = 1815, + [1948] = 1816, + [1949] = 1751, + [1950] = 1818, + [1951] = 1742, + [1952] = 1743, + [1953] = 1744, + [1954] = 1747, + [1955] = 1749, + [1956] = 1745, + [1957] = 1746, + [1958] = 1747, + [1959] = 1797, + [1960] = 1748, + [1961] = 1815, + [1962] = 1816, + [1963] = 1746, + [1964] = 1818, + [1965] = 1742, + [1966] = 1745, + [1967] = 1797, + [1968] = 1815, + [1969] = 1816, + [1970] = 1750, + [1971] = 1818, + [1972] = 1742, + [1973] = 1744, + [1974] = 1797, + [1975] = 1815, + [1976] = 1816, + [1977] = 1743, + [1978] = 1818, + [1979] = 1742, + [1980] = 1741, + [1981] = 1797, + [1982] = 1815, + [1983] = 1816, + [1984] = 1741, + [1985] = 1818, + [1986] = 1742, + [1987] = 1751, + [1988] = 1797, + [1989] = 1815, + [1990] = 1816, + [1991] = 1749, + [1992] = 1818, + [1993] = 1742, + [1994] = 1750, + [1995] = 1797, + [1996] = 1815, + [1997] = 1816, + [1998] = 1741, + [1999] = 1818, + [2000] = 1742, + [2001] = 1749, + [2002] = 1797, + [2003] = 1815, + [2004] = 1816, + [2005] = 1749, + [2006] = 1818, + [2007] = 1742, + [2008] = 1749, + [2009] = 1797, + [2010] = 1815, + [2011] = 1816, + [2012] = 1750, + [2013] = 1818, + [2014] = 1742, + [2015] = 1741, + [2016] = 1797, + [2017] = 1750, + [2018] = 1815, + [2019] = 1816, + [2020] = 1741, + [2021] = 1818, + [2022] = 1742, + [2023] = 1749, + [2024] = 1751, + [2025] = 1749, + [2026] = 1857, + [2027] = 1797, + [2028] = 1815, + [2029] = 1816, + [2030] = 1741, + [2031] = 1818, + [2032] = 1742, + [2033] = 1750, + [2034] = 1751, + [2035] = 1857, + [2036] = 1797, + [2037] = 1815, + [2038] = 1816, + [2039] = 1748, + [2040] = 1818, + [2041] = 1742, + [2042] = 1741, + [2043] = 1857, + [2044] = 1797, + [2045] = 1815, + [2046] = 1816, + [2047] = 1743, + [2048] = 1818, + [2049] = 1742, + [2050] = 1747, + [2051] = 1857, + [2052] = 1797, + [2053] = 1815, + [2054] = 1816, + [2055] = 1741, + [2056] = 1818, + [2057] = 1742, + [2058] = 1744, + [2059] = 1857, + [2060] = 1797, + [2061] = 1815, + [2062] = 1816, + [2063] = 1745, + [2064] = 1818, + [2065] = 1742, + [2066] = 1746, + [2067] = 1857, + [2068] = 1797, + [2069] = 1857, + [2070] = 1857, + [2071] = 1857, + [2072] = 1857, + [2073] = 1857, + [2074] = 1857, + [2075] = 1857, + [2076] = 1857, + [2077] = 1911, + [2078] = 1857, + [2079] = 1911, + [2080] = 1857, + [2081] = 1911, + [2082] = 1857, + [2083] = 1911, + [2084] = 1857, + [2085] = 1911, + [2086] = 1857, + [2087] = 1911, + [2088] = 1857, + [2089] = 1911, + [2090] = 1911, + [2091] = 1911, + [2092] = 1911, + [2093] = 1911, + [2094] = 1911, + [2095] = 1911, + [2096] = 1911, + [2097] = 1911, + [2098] = 1911, + [2099] = 1911, + [2100] = 1911, + [2101] = 1911, + [2102] = 1911, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2258,449 +3113,643 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(21); - if (lookahead == '!') ADVANCE(6); - if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(12); - if (lookahead == '%') ADVANCE(52); - if (lookahead == '&') ADVANCE(3); - if (lookahead == '\'') ADVANCE(4); - if (lookahead == '(') ADVANCE(27); - if (lookahead == ')') ADVANCE(28); - if (lookahead == '*') ADVANCE(50); - if (lookahead == '+') ADVANCE(46); - if (lookahead == ',') ADVANCE(29); - if (lookahead == '-') ADVANCE(49); - if (lookahead == '.') ADVANCE(5); - if (lookahead == '/') ADVANCE(51); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); - if (lookahead == ':') ADVANCE(43); - if (lookahead == ';') ADVANCE(26); - if (lookahead == '<') ADVANCE(58); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(57); - if (lookahead == '[') ADVANCE(39); - if (lookahead == ']') ADVANCE(40); - if (lookahead == '`') ADVANCE(9); - if (lookahead == 'e') ADVANCE(33); - if (lookahead == '{') ADVANCE(24); - if (lookahead == '|') ADVANCE(66); - if (lookahead == '}') ADVANCE(25); + if (eof) ADVANCE(29); + if (lookahead == '!') ADVANCE(11); + if (lookahead == '"') ADVANCE(6); + if (lookahead == '#') ADVANCE(20); + if (lookahead == '%') ADVANCE(67); + if (lookahead == '&') ADVANCE(8); + if (lookahead == '\'') ADVANCE(9); + if (lookahead == '(') ADVANCE(35); + if (lookahead == ')') ADVANCE(36); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(60); + if (lookahead == ',') ADVANCE(37); + if (lookahead == '-') ADVANCE(64); + if (lookahead == '.') ADVANCE(10); + if (lookahead == '/') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (lookahead == ':') ADVANCE(57); + if (lookahead == ';') ADVANCE(34); + if (lookahead == '<') ADVANCE(73); + if (lookahead == '=') ADVANCE(55); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '[') ADVANCE(52); + if (lookahead == ']') ADVANCE(53); + if (lookahead == '`') ADVANCE(14); + if (lookahead == 'a') ADVANCE(45); + if (lookahead == 'e') ADVANCE(43); + if (lookahead == '{') ADVANCE(32); + if (lookahead == '|') ADVANCE(82); + if (lookahead == '}') ADVANCE(33); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(35); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 1: - if (lookahead == '!') ADVANCE(6); - if (lookahead == '#') ADVANCE(12); - if (lookahead == '%') ADVANCE(52); - if (lookahead == '&') ADVANCE(3); - if (lookahead == ')') ADVANCE(28); - if (lookahead == '*') ADVANCE(50); - if (lookahead == '+') ADVANCE(45); - if (lookahead == ',') ADVANCE(29); - if (lookahead == '-') ADVANCE(47); - if (lookahead == '.') ADVANCE(5); - if (lookahead == '/') ADVANCE(51); - if (lookahead == ':') ADVANCE(43); - if (lookahead == ';') ADVANCE(26); - if (lookahead == '<') ADVANCE(58); - if (lookahead == '=') ADVANCE(7); - if (lookahead == '>') ADVANCE(57); - if (lookahead == '|') ADVANCE(13); - if (lookahead == '}') ADVANCE(25); + if (lookahead == '!') ADVANCE(11); + if (lookahead == '"') ADVANCE(6); + if (lookahead == '#') ADVANCE(20); + if (lookahead == '%') ADVANCE(67); + if (lookahead == '&') ADVANCE(8); + if (lookahead == '\'') ADVANCE(9); + if (lookahead == '(') ADVANCE(35); + if (lookahead == ')') ADVANCE(36); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(59); + if (lookahead == ',') ADVANCE(37); + if (lookahead == '-') ADVANCE(63); + if (lookahead == '.') ADVANCE(10); + if (lookahead == '/') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (lookahead == ':') ADVANCE(57); + if (lookahead == ';') ADVANCE(34); + if (lookahead == '<') ADVANCE(73); + if (lookahead == '=') ADVANCE(12); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '[') ADVANCE(52); + if (lookahead == ']') ADVANCE(53); + if (lookahead == '`') ADVANCE(14); + if (lookahead == '{') ADVANCE(32); + if (lookahead == '|') ADVANCE(82); + if (lookahead == '}') ADVANCE(33); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(1) if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(35); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 2: - if (lookahead == '"') ADVANCE(38); - if (lookahead != 0) ADVANCE(2); + if (lookahead == '!') ADVANCE(11); + if (lookahead == '"') ADVANCE(6); + if (lookahead == '#') ADVANCE(20); + if (lookahead == '%') ADVANCE(67); + if (lookahead == '&') ADVANCE(8); + if (lookahead == '\'') ADVANCE(9); + if (lookahead == '(') ADVANCE(35); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(60); + if (lookahead == ',') ADVANCE(37); + if (lookahead == '-') ADVANCE(64); + if (lookahead == '.') ADVANCE(10); + if (lookahead == '/') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (lookahead == ':') ADVANCE(57); + if (lookahead == ';') ADVANCE(34); + if (lookahead == '<') ADVANCE(73); + if (lookahead == '=') ADVANCE(55); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '[') ADVANCE(52); + if (lookahead == '`') ADVANCE(14); + if (lookahead == '{') ADVANCE(32); + if (lookahead == '|') ADVANCE(82); + if (lookahead == '}') ADVANCE(33); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(2) + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 3: - if (lookahead == '&') ADVANCE(55); + if (lookahead == '!') ADVANCE(11); + if (lookahead == '#') ADVANCE(20); + if (lookahead == '%') ADVANCE(67); + if (lookahead == '&') ADVANCE(8); + if (lookahead == ')') ADVANCE(36); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(59); + if (lookahead == ',') ADVANCE(37); + if (lookahead == '-') ADVANCE(61); + if (lookahead == '.') ADVANCE(10); + if (lookahead == '/') ADVANCE(66); + if (lookahead == ':') ADVANCE(57); + if (lookahead == ';') ADVANCE(34); + if (lookahead == '<') ADVANCE(73); + if (lookahead == '=') ADVANCE(12); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '|') ADVANCE(21); + if (lookahead == '}') ADVANCE(33); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(3) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 4: - if (lookahead == '\'') ADVANCE(38); - if (lookahead != 0) ADVANCE(4); + if (lookahead == '!') ADVANCE(11); + if (lookahead == '#') ADVANCE(20); + if (lookahead == '%') ADVANCE(67); + if (lookahead == '&') ADVANCE(8); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(60); + if (lookahead == ',') ADVANCE(37); + if (lookahead == '-') ADVANCE(62); + if (lookahead == '.') ADVANCE(10); + if (lookahead == '/') ADVANCE(66); + if (lookahead == ':') ADVANCE(57); + if (lookahead == ';') ADVANCE(34); + if (lookahead == '<') ADVANCE(73); + if (lookahead == '=') ADVANCE(54); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '|') ADVANCE(21); + if (lookahead == '}') ADVANCE(33); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(4) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 5: - if (lookahead == '.') ADVANCE(44); + if (lookahead == '"') ADVANCE(6); + if (lookahead == '#') ADVANCE(20); + if (lookahead == '\'') ADVANCE(9); + if (lookahead == '(') ADVANCE(35); + if (lookahead == ',') ADVANCE(37); + if (lookahead == '-') ADVANCE(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (lookahead == ';') ADVANCE(34); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '[') ADVANCE(52); + if (lookahead == ']') ADVANCE(53); + if (lookahead == '`') ADVANCE(14); + if (lookahead == '{') ADVANCE(32); + if (lookahead == '|') ADVANCE(81); + if (lookahead == '}') ADVANCE(33); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(5) + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 6: - if (lookahead == '=') ADVANCE(54); + if (lookahead == '"') ADVANCE(51); + if (lookahead != 0) ADVANCE(6); END_STATE(); case 7: - if (lookahead == '=') ADVANCE(53); - if (lookahead == '>') ADVANCE(64); + if (lookahead == '#') ADVANCE(20); + if (lookahead == ',') ADVANCE(37); + if (lookahead == ';') ADVANCE(34); + if (lookahead == 'e') ADVANCE(43); + if (lookahead == '}') ADVANCE(33); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(7) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 8: - if (lookahead == '>') ADVANCE(64); + if (lookahead == '&') ADVANCE(70); END_STATE(); case 9: - if (lookahead == '`') ADVANCE(38); + if (lookahead == '\'') ADVANCE(51); if (lookahead != 0) ADVANCE(9); END_STATE(); case 10: - if (lookahead == 'f') ADVANCE(63); + if (lookahead == '.') ADVANCE(58); END_STATE(); case 11: - if (lookahead == 'i') ADVANCE(10); + if (lookahead == '=') ADVANCE(69); END_STATE(); case 12: - if (lookahead == '|') ADVANCE(23); - if (lookahead == '\n' || - lookahead == '#') ADVANCE(22); - if (lookahead != 0) ADVANCE(12); + if (lookahead == '=') ADVANCE(68); + if (lookahead == '>') ADVANCE(79); END_STATE(); case 13: - if (lookahead == '|') ADVANCE(56); + if (lookahead == '>') ADVANCE(79); END_STATE(); case 14: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); + if (lookahead == '`') ADVANCE(51); + if (lookahead != 0) ADVANCE(14); END_STATE(); case 15: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); + if (lookahead == 'f') ADVANCE(18); END_STATE(); case 16: - if (eof) ADVANCE(21); - if (lookahead == '!') ADVANCE(6); - if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(12); - if (lookahead == '%') ADVANCE(52); - if (lookahead == '&') ADVANCE(3); - if (lookahead == '\'') ADVANCE(4); - if (lookahead == '(') ADVANCE(27); - if (lookahead == ')') ADVANCE(28); - if (lookahead == '*') ADVANCE(50); - if (lookahead == '+') ADVANCE(46); - if (lookahead == ',') ADVANCE(29); - if (lookahead == '-') ADVANCE(49); - if (lookahead == '.') ADVANCE(5); - if (lookahead == '/') ADVANCE(51); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); - if (lookahead == ':') ADVANCE(43); - if (lookahead == ';') ADVANCE(26); - if (lookahead == '<') ADVANCE(58); - if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(57); - if (lookahead == '[') ADVANCE(39); - if (lookahead == ']') ADVANCE(40); - if (lookahead == '`') ADVANCE(9); - if (lookahead == '{') ADVANCE(24); - if (lookahead == '|') ADVANCE(66); - if (lookahead == '}') ADVANCE(25); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(16) - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(35); + if (lookahead == 'f') ADVANCE(78); END_STATE(); case 17: - if (eof) ADVANCE(21); - if (lookahead == '!') ADVANCE(6); - if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(12); - if (lookahead == '%') ADVANCE(52); - if (lookahead == '&') ADVANCE(3); - if (lookahead == '\'') ADVANCE(4); - if (lookahead == '(') ADVANCE(27); - if (lookahead == ')') ADVANCE(28); - if (lookahead == '*') ADVANCE(50); - if (lookahead == '+') ADVANCE(45); - if (lookahead == ',') ADVANCE(29); - if (lookahead == '-') ADVANCE(48); - if (lookahead == '.') ADVANCE(5); - if (lookahead == '/') ADVANCE(51); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); - if (lookahead == ':') ADVANCE(43); - if (lookahead == ';') ADVANCE(26); - if (lookahead == '<') ADVANCE(58); - if (lookahead == '=') ADVANCE(7); - if (lookahead == '>') ADVANCE(57); - if (lookahead == '[') ADVANCE(39); - if (lookahead == ']') ADVANCE(40); - if (lookahead == '`') ADVANCE(9); - if (lookahead == 'e') ADVANCE(33); - if (lookahead == '{') ADVANCE(24); - if (lookahead == '|') ADVANCE(66); - if (lookahead == '}') ADVANCE(25); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(17) - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(35); + if (lookahead == 'i') ADVANCE(16); END_STATE(); case 18: - if (eof) ADVANCE(21); - if (lookahead == '!') ADVANCE(6); - if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(12); - if (lookahead == '%') ADVANCE(52); - if (lookahead == '&') ADVANCE(3); - if (lookahead == '\'') ADVANCE(4); - if (lookahead == '(') ADVANCE(27); - if (lookahead == ')') ADVANCE(28); - if (lookahead == '*') ADVANCE(50); - if (lookahead == '+') ADVANCE(45); - if (lookahead == ',') ADVANCE(29); - if (lookahead == '-') ADVANCE(48); - if (lookahead == '.') ADVANCE(5); - if (lookahead == '/') ADVANCE(51); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); - if (lookahead == ':') ADVANCE(43); - if (lookahead == ';') ADVANCE(26); - if (lookahead == '<') ADVANCE(58); - if (lookahead == '=') ADVANCE(7); - if (lookahead == '>') ADVANCE(57); - if (lookahead == '[') ADVANCE(39); - if (lookahead == ']') ADVANCE(40); - if (lookahead == '`') ADVANCE(9); - if (lookahead == '{') ADVANCE(24); - if (lookahead == '|') ADVANCE(66); - if (lookahead == '}') ADVANCE(25); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(18) - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(35); + if (lookahead == 'o') ADVANCE(19); END_STATE(); case 19: - if (eof) ADVANCE(21); - if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(12); - if (lookahead == '\'') ADVANCE(4); - if (lookahead == '(') ADVANCE(27); - if (lookahead == ',') ADVANCE(29); - if (lookahead == '-') ADVANCE(14); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); - if (lookahead == ';') ADVANCE(26); - if (lookahead == '=') ADVANCE(42); - if (lookahead == '[') ADVANCE(39); - if (lookahead == ']') ADVANCE(40); - if (lookahead == '`') ADVANCE(9); - if (lookahead == '{') ADVANCE(24); - if (lookahead == '|') ADVANCE(65); - if (lookahead == '}') ADVANCE(25); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(19) - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(35); + if (lookahead == 'r') ADVANCE(80); END_STATE(); case 20: - if (eof) ADVANCE(21); - if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(12); - if (lookahead == '\'') ADVANCE(4); - if (lookahead == '(') ADVANCE(27); - if (lookahead == ',') ADVANCE(29); - if (lookahead == '-') ADVANCE(14); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); - if (lookahead == ';') ADVANCE(26); - if (lookahead == '=') ADVANCE(8); - if (lookahead == '[') ADVANCE(39); - if (lookahead == '`') ADVANCE(9); - if (lookahead == 'e') ADVANCE(33); - if (lookahead == '{') ADVANCE(24); - if (lookahead == '|') ADVANCE(65); - if (lookahead == '}') ADVANCE(25); + if (lookahead == '|') ADVANCE(31); + if (lookahead == '\n' || + lookahead == '#') ADVANCE(30); + if (lookahead != 0) ADVANCE(20); + END_STATE(); + case 21: + if (lookahead == '|') ADVANCE(71); + END_STATE(); + case 22: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + END_STATE(); + case 23: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); + END_STATE(); + case 24: + if (eof) ADVANCE(29); + if (lookahead == '!') ADVANCE(11); + if (lookahead == '"') ADVANCE(6); + if (lookahead == '#') ADVANCE(20); + if (lookahead == '%') ADVANCE(67); + if (lookahead == '&') ADVANCE(8); + if (lookahead == '\'') ADVANCE(9); + if (lookahead == '(') ADVANCE(35); + if (lookahead == ')') ADVANCE(36); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(60); + if (lookahead == ',') ADVANCE(37); + if (lookahead == '-') ADVANCE(64); + if (lookahead == '.') ADVANCE(10); + if (lookahead == '/') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (lookahead == ':') ADVANCE(57); + if (lookahead == ';') ADVANCE(34); + if (lookahead == '<') ADVANCE(73); + if (lookahead == '=') ADVANCE(55); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '[') ADVANCE(52); + if (lookahead == ']') ADVANCE(53); + if (lookahead == '`') ADVANCE(14); + if (lookahead == 'a') ADVANCE(45); + if (lookahead == '{') ADVANCE(32); + if (lookahead == '|') ADVANCE(82); + if (lookahead == '}') ADVANCE(33); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(20) + lookahead == ' ') SKIP(24) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(35); - END_STATE(); - case 21: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 22: - ACCEPT_TOKEN(sym_comment); - END_STATE(); - case 23: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '|') ADVANCE(23); - if (lookahead == '\n' || - lookahead == '#') ADVANCE(22); - if (lookahead != 0) ADVANCE(12); - END_STATE(); - case 24: - ACCEPT_TOKEN(anon_sym_LBRACE); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 25: - ACCEPT_TOKEN(anon_sym_RBRACE); + if (eof) ADVANCE(29); + if (lookahead == '!') ADVANCE(11); + if (lookahead == '"') ADVANCE(6); + if (lookahead == '#') ADVANCE(20); + if (lookahead == '%') ADVANCE(67); + if (lookahead == '&') ADVANCE(8); + if (lookahead == '\'') ADVANCE(9); + if (lookahead == '(') ADVANCE(35); + if (lookahead == ')') ADVANCE(36); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(59); + if (lookahead == ',') ADVANCE(37); + if (lookahead == '-') ADVANCE(63); + if (lookahead == '.') ADVANCE(10); + if (lookahead == '/') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (lookahead == ':') ADVANCE(57); + if (lookahead == ';') ADVANCE(34); + if (lookahead == '<') ADVANCE(73); + if (lookahead == '=') ADVANCE(12); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '[') ADVANCE(52); + if (lookahead == ']') ADVANCE(53); + if (lookahead == '`') ADVANCE(14); + if (lookahead == 'a') ADVANCE(45); + if (lookahead == 'e') ADVANCE(43); + if (lookahead == '{') ADVANCE(32); + if (lookahead == '|') ADVANCE(82); + if (lookahead == '}') ADVANCE(33); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(25) + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 26: - ACCEPT_TOKEN(anon_sym_SEMI); + if (eof) ADVANCE(29); + if (lookahead == '!') ADVANCE(11); + if (lookahead == '"') ADVANCE(6); + if (lookahead == '#') ADVANCE(20); + if (lookahead == '%') ADVANCE(67); + if (lookahead == '&') ADVANCE(8); + if (lookahead == '\'') ADVANCE(9); + if (lookahead == '(') ADVANCE(35); + if (lookahead == ')') ADVANCE(36); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(59); + if (lookahead == ',') ADVANCE(37); + if (lookahead == '-') ADVANCE(63); + if (lookahead == '.') ADVANCE(10); + if (lookahead == '/') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (lookahead == ':') ADVANCE(57); + if (lookahead == ';') ADVANCE(34); + if (lookahead == '<') ADVANCE(73); + if (lookahead == '=') ADVANCE(12); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '[') ADVANCE(52); + if (lookahead == ']') ADVANCE(53); + if (lookahead == '`') ADVANCE(14); + if (lookahead == 'a') ADVANCE(45); + if (lookahead == '{') ADVANCE(32); + if (lookahead == '|') ADVANCE(82); + if (lookahead == '}') ADVANCE(33); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(26) + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 27: - ACCEPT_TOKEN(anon_sym_LPAREN); + if (eof) ADVANCE(29); + if (lookahead == '"') ADVANCE(6); + if (lookahead == '#') ADVANCE(20); + if (lookahead == '\'') ADVANCE(9); + if (lookahead == '(') ADVANCE(35); + if (lookahead == ',') ADVANCE(37); + if (lookahead == '-') ADVANCE(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (lookahead == ';') ADVANCE(34); + if (lookahead == '=') ADVANCE(56); + if (lookahead == '[') ADVANCE(52); + if (lookahead == '`') ADVANCE(14); + if (lookahead == 'a') ADVANCE(45); + if (lookahead == '{') ADVANCE(32); + if (lookahead == '|') ADVANCE(81); + if (lookahead == '}') ADVANCE(33); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(27) + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 28: - ACCEPT_TOKEN(anon_sym_RPAREN); + if (eof) ADVANCE(29); + if (lookahead == '"') ADVANCE(6); + if (lookahead == '#') ADVANCE(20); + if (lookahead == '\'') ADVANCE(9); + if (lookahead == '(') ADVANCE(35); + if (lookahead == ',') ADVANCE(37); + if (lookahead == '-') ADVANCE(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (lookahead == ';') ADVANCE(34); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '[') ADVANCE(52); + if (lookahead == '`') ADVANCE(14); + if (lookahead == 'a') ADVANCE(45); + if (lookahead == 'e') ADVANCE(43); + if (lookahead == '{') ADVANCE(32); + if (lookahead == '|') ADVANCE(81); + if (lookahead == '}') ADVANCE(33); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(28) + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 29: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 30: - ACCEPT_TOKEN(sym_identifier); + ACCEPT_TOKEN(sym__comment); END_STATE(); case 31: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == ' ') ADVANCE(11); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(35); + ACCEPT_TOKEN(sym__comment); + if (lookahead == '|') ADVANCE(31); + if (lookahead == '\n' || + lookahead == '#') ADVANCE(30); + if (lookahead != 0) ADVANCE(20); END_STATE(); case 32: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(31); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(35); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 33: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(34); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(35); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 34: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(32); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(35); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 35: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(35); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 36: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(15); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 37: - ACCEPT_TOKEN(sym_float); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 38: - ACCEPT_TOKEN(sym_string); + ACCEPT_TOKEN(sym_identifier); END_STATE(); case 39: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == ' ') ADVANCE(17); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 40: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == ' ') ADVANCE(15); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 41: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(53); - if (lookahead == '>') ADVANCE(64); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(40); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(64); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(39); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 43: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(46); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 44: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(41); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 45: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 46: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(61); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(42); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 47: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 48: - ACCEPT_TOKEN(anon_sym_DASH); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 49: - ACCEPT_TOKEN(anon_sym_DASH); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); - if (lookahead == '=') ADVANCE(62); + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); END_STATE(); case 50: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(sym_float); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); END_STATE(); case 51: - ACCEPT_TOKEN(anon_sym_SLASH); + ACCEPT_TOKEN(sym_string); END_STATE(); case 52: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 53: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 54: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(68); END_STATE(); case 55: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(68); + if (lookahead == '>') ADVANCE(79); END_STATE(); case 56: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(79); END_STATE(); case 57: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(59); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 58: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(60); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(76); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(77); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_elseif); + ACCEPT_TOKEN(anon_sym_DASH); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_DASH); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (lookahead == '=') ADVANCE(77); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 66: + ACCEPT_TOKEN(anon_sym_SLASH); + END_STATE(); + case 67: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 68: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 69: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 70: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 71: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 72: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(74); + END_STATE(); + case 73: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(75); + END_STATE(); + case 74: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 75: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 76: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 77: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 78: + ACCEPT_TOKEN(anon_sym_elseif); + END_STATE(); + case 79: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 80: + ACCEPT_TOKEN(anon_sym_asyncfor); + END_STATE(); + case 81: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(56); + END_STATE(); + case 82: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(71); END_STATE(); default: return false; @@ -3431,903 +4480,903 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 19}, - [2] = {.lex_state = 17}, - [3] = {.lex_state = 17}, - [4] = {.lex_state = 17}, - [5] = {.lex_state = 18}, - [6] = {.lex_state = 17}, - [7] = {.lex_state = 18}, - [8] = {.lex_state = 17}, - [9] = {.lex_state = 17}, - [10] = {.lex_state = 17}, - [11] = {.lex_state = 18}, - [12] = {.lex_state = 17}, - [13] = {.lex_state = 17}, - [14] = {.lex_state = 17}, - [15] = {.lex_state = 17}, - [16] = {.lex_state = 18}, - [17] = {.lex_state = 17}, - [18] = {.lex_state = 18}, - [19] = {.lex_state = 18}, - [20] = {.lex_state = 18}, - [21] = {.lex_state = 18}, - [22] = {.lex_state = 18}, - [23] = {.lex_state = 17}, - [24] = {.lex_state = 17}, - [25] = {.lex_state = 18}, - [26] = {.lex_state = 18}, - [27] = {.lex_state = 18}, - [28] = {.lex_state = 18}, - [29] = {.lex_state = 18}, - [30] = {.lex_state = 18}, - [31] = {.lex_state = 18}, - [32] = {.lex_state = 18}, - [33] = {.lex_state = 18}, - [34] = {.lex_state = 18}, - [35] = {.lex_state = 18}, - [36] = {.lex_state = 18}, - [37] = {.lex_state = 18}, - [38] = {.lex_state = 18}, - [39] = {.lex_state = 18}, - [40] = {.lex_state = 18}, - [41] = {.lex_state = 18}, - [42] = {.lex_state = 18}, - [43] = {.lex_state = 18}, - [44] = {.lex_state = 18}, - [45] = {.lex_state = 18}, - [46] = {.lex_state = 18}, - [47] = {.lex_state = 18}, - [48] = {.lex_state = 18}, - [49] = {.lex_state = 18}, - [50] = {.lex_state = 18}, - [51] = {.lex_state = 18}, - [52] = {.lex_state = 18}, - [53] = {.lex_state = 18}, - [54] = {.lex_state = 18}, - [55] = {.lex_state = 18}, - [56] = {.lex_state = 18}, - [57] = {.lex_state = 18}, - [58] = {.lex_state = 18}, - [59] = {.lex_state = 18}, - [60] = {.lex_state = 18}, - [61] = {.lex_state = 18}, - [62] = {.lex_state = 18}, - [63] = {.lex_state = 18}, - [64] = {.lex_state = 18}, - [65] = {.lex_state = 18}, - [66] = {.lex_state = 18}, - [67] = {.lex_state = 18}, - [68] = {.lex_state = 18}, - [69] = {.lex_state = 18}, - [70] = {.lex_state = 18}, - [71] = {.lex_state = 18}, - [72] = {.lex_state = 18}, - [73] = {.lex_state = 18}, - [74] = {.lex_state = 18}, - [75] = {.lex_state = 18}, - [76] = {.lex_state = 18}, - [77] = {.lex_state = 18}, - [78] = {.lex_state = 18}, - [79] = {.lex_state = 18}, - [80] = {.lex_state = 18}, - [81] = {.lex_state = 18}, - [82] = {.lex_state = 18}, - [83] = {.lex_state = 18}, - [84] = {.lex_state = 18}, - [85] = {.lex_state = 18}, - [86] = {.lex_state = 18}, - [87] = {.lex_state = 18}, - [88] = {.lex_state = 18}, - [89] = {.lex_state = 18}, - [90] = {.lex_state = 18}, - [91] = {.lex_state = 18}, - [92] = {.lex_state = 18}, - [93] = {.lex_state = 18}, - [94] = {.lex_state = 18}, - [95] = {.lex_state = 18}, - [96] = {.lex_state = 18}, - [97] = {.lex_state = 18}, - [98] = {.lex_state = 18}, - [99] = {.lex_state = 18}, - [100] = {.lex_state = 18}, - [101] = {.lex_state = 18}, - [102] = {.lex_state = 18}, - [103] = {.lex_state = 18}, - [104] = {.lex_state = 18}, - [105] = {.lex_state = 18}, - [106] = {.lex_state = 18}, - [107] = {.lex_state = 18}, - [108] = {.lex_state = 18}, - [109] = {.lex_state = 18}, - [110] = {.lex_state = 18}, - [111] = {.lex_state = 18}, - [112] = {.lex_state = 18}, - [113] = {.lex_state = 18}, - [114] = {.lex_state = 18}, - [115] = {.lex_state = 18}, - [116] = {.lex_state = 18}, - [117] = {.lex_state = 18}, - [118] = {.lex_state = 18}, - [119] = {.lex_state = 18}, - [120] = {.lex_state = 18}, - [121] = {.lex_state = 18}, - [122] = {.lex_state = 18}, - [123] = {.lex_state = 18}, - [124] = {.lex_state = 18}, - [125] = {.lex_state = 18}, - [126] = {.lex_state = 18}, - [127] = {.lex_state = 18}, - [128] = {.lex_state = 18}, - [129] = {.lex_state = 18}, - [130] = {.lex_state = 18}, - [131] = {.lex_state = 18}, - [132] = {.lex_state = 18}, - [133] = {.lex_state = 18}, - [134] = {.lex_state = 18}, - [135] = {.lex_state = 18}, - [136] = {.lex_state = 18}, - [137] = {.lex_state = 18}, - [138] = {.lex_state = 18}, - [139] = {.lex_state = 18}, - [140] = {.lex_state = 18}, - [141] = {.lex_state = 18}, - [142] = {.lex_state = 18}, - [143] = {.lex_state = 18}, - [144] = {.lex_state = 18}, - [145] = {.lex_state = 18}, - [146] = {.lex_state = 18}, - [147] = {.lex_state = 18}, - [148] = {.lex_state = 18}, - [149] = {.lex_state = 18}, - [150] = {.lex_state = 18}, - [151] = {.lex_state = 18}, - [152] = {.lex_state = 18}, - [153] = {.lex_state = 18}, - [154] = {.lex_state = 18}, - [155] = {.lex_state = 18}, - [156] = {.lex_state = 18}, - [157] = {.lex_state = 18}, - [158] = {.lex_state = 18}, - [159] = {.lex_state = 18}, - [160] = {.lex_state = 18}, - [161] = {.lex_state = 0}, - [162] = {.lex_state = 0}, - [163] = {.lex_state = 0}, - [164] = {.lex_state = 16}, - [165] = {.lex_state = 0}, - [166] = {.lex_state = 16}, - [167] = {.lex_state = 17}, - [168] = {.lex_state = 17}, - [169] = {.lex_state = 0}, - [170] = {.lex_state = 17}, - [171] = {.lex_state = 17}, - [172] = {.lex_state = 0}, - [173] = {.lex_state = 16}, - [174] = {.lex_state = 17}, - [175] = {.lex_state = 17}, - [176] = {.lex_state = 17}, - [177] = {.lex_state = 17}, - [178] = {.lex_state = 16}, - [179] = {.lex_state = 17}, - [180] = {.lex_state = 17}, - [181] = {.lex_state = 17}, - [182] = {.lex_state = 17}, - [183] = {.lex_state = 17}, - [184] = {.lex_state = 17}, - [185] = {.lex_state = 17}, - [186] = {.lex_state = 18}, - [187] = {.lex_state = 18}, - [188] = {.lex_state = 18}, - [189] = {.lex_state = 16}, - [190] = {.lex_state = 18}, - [191] = {.lex_state = 18}, - [192] = {.lex_state = 17}, - [193] = {.lex_state = 16}, - [194] = {.lex_state = 17}, - [195] = {.lex_state = 18}, - [196] = {.lex_state = 17}, - [197] = {.lex_state = 17}, - [198] = {.lex_state = 17}, - [199] = {.lex_state = 20}, - [200] = {.lex_state = 17}, - [201] = {.lex_state = 17}, - [202] = {.lex_state = 20}, - [203] = {.lex_state = 17}, - [204] = {.lex_state = 18}, - [205] = {.lex_state = 20}, - [206] = {.lex_state = 18}, - [207] = {.lex_state = 18}, - [208] = {.lex_state = 18}, - [209] = {.lex_state = 20}, - [210] = {.lex_state = 16}, - [211] = {.lex_state = 17}, - [212] = {.lex_state = 18}, - [213] = {.lex_state = 20}, - [214] = {.lex_state = 18}, - [215] = {.lex_state = 18}, - [216] = {.lex_state = 18}, - [217] = {.lex_state = 18}, - [218] = {.lex_state = 18}, - [219] = {.lex_state = 18}, - [220] = {.lex_state = 18}, - [221] = {.lex_state = 18}, - [222] = {.lex_state = 18}, - [223] = {.lex_state = 18}, - [224] = {.lex_state = 19}, - [225] = {.lex_state = 19}, - [226] = {.lex_state = 19}, - [227] = {.lex_state = 19}, - [228] = {.lex_state = 19}, - [229] = {.lex_state = 19}, - [230] = {.lex_state = 18}, - [231] = {.lex_state = 18}, - [232] = {.lex_state = 19}, - [233] = {.lex_state = 18}, - [234] = {.lex_state = 19}, - [235] = {.lex_state = 19}, - [236] = {.lex_state = 19}, - [237] = {.lex_state = 19}, - [238] = {.lex_state = 19}, - [239] = {.lex_state = 19}, - [240] = {.lex_state = 19}, - [241] = {.lex_state = 19}, - [242] = {.lex_state = 19}, - [243] = {.lex_state = 19}, - [244] = {.lex_state = 19}, - [245] = {.lex_state = 19}, - [246] = {.lex_state = 19}, - [247] = {.lex_state = 19}, - [248] = {.lex_state = 19}, - [249] = {.lex_state = 19}, - [250] = {.lex_state = 19}, - [251] = {.lex_state = 19}, - [252] = {.lex_state = 19}, - [253] = {.lex_state = 19}, - [254] = {.lex_state = 19}, - [255] = {.lex_state = 19}, - [256] = {.lex_state = 19}, - [257] = {.lex_state = 19}, - [258] = {.lex_state = 19}, - [259] = {.lex_state = 19}, - [260] = {.lex_state = 19}, - [261] = {.lex_state = 19}, - [262] = {.lex_state = 19}, - [263] = {.lex_state = 19}, - [264] = {.lex_state = 19}, - [265] = {.lex_state = 19}, - [266] = {.lex_state = 19}, - [267] = {.lex_state = 19}, - [268] = {.lex_state = 19}, - [269] = {.lex_state = 19}, - [270] = {.lex_state = 19}, - [271] = {.lex_state = 19}, - [272] = {.lex_state = 19}, - [273] = {.lex_state = 19}, - [274] = {.lex_state = 19}, - [275] = {.lex_state = 19}, - [276] = {.lex_state = 19}, - [277] = {.lex_state = 19}, - [278] = {.lex_state = 19}, - [279] = {.lex_state = 19}, - [280] = {.lex_state = 19}, - [281] = {.lex_state = 19}, - [282] = {.lex_state = 19}, - [283] = {.lex_state = 19}, - [284] = {.lex_state = 19}, - [285] = {.lex_state = 19}, - [286] = {.lex_state = 19}, - [287] = {.lex_state = 19}, - [288] = {.lex_state = 19}, - [289] = {.lex_state = 19}, - [290] = {.lex_state = 19}, - [291] = {.lex_state = 19}, - [292] = {.lex_state = 19}, - [293] = {.lex_state = 19}, - [294] = {.lex_state = 19}, - [295] = {.lex_state = 19}, - [296] = {.lex_state = 19}, - [297] = {.lex_state = 19}, - [298] = {.lex_state = 19}, - [299] = {.lex_state = 19}, - [300] = {.lex_state = 19}, - [301] = {.lex_state = 19}, - [302] = {.lex_state = 19}, - [303] = {.lex_state = 19}, - [304] = {.lex_state = 19}, - [305] = {.lex_state = 19}, - [306] = {.lex_state = 19}, - [307] = {.lex_state = 19}, - [308] = {.lex_state = 19}, - [309] = {.lex_state = 19}, - [310] = {.lex_state = 19}, - [311] = {.lex_state = 19}, - [312] = {.lex_state = 19}, - [313] = {.lex_state = 19}, - [314] = {.lex_state = 19}, - [315] = {.lex_state = 19}, - [316] = {.lex_state = 19}, - [317] = {.lex_state = 19}, - [318] = {.lex_state = 19}, - [319] = {.lex_state = 19}, - [320] = {.lex_state = 19}, - [321] = {.lex_state = 19}, - [322] = {.lex_state = 19}, - [323] = {.lex_state = 19}, - [324] = {.lex_state = 19}, - [325] = {.lex_state = 19}, - [326] = {.lex_state = 19}, - [327] = {.lex_state = 19}, - [328] = {.lex_state = 19}, - [329] = {.lex_state = 19}, - [330] = {.lex_state = 19}, - [331] = {.lex_state = 19}, - [332] = {.lex_state = 19}, - [333] = {.lex_state = 19}, - [334] = {.lex_state = 19}, - [335] = {.lex_state = 19}, - [336] = {.lex_state = 19}, - [337] = {.lex_state = 19}, - [338] = {.lex_state = 19}, - [339] = {.lex_state = 17}, - [340] = {.lex_state = 16}, - [341] = {.lex_state = 17}, - [342] = {.lex_state = 17}, - [343] = {.lex_state = 17}, - [344] = {.lex_state = 18}, - [345] = {.lex_state = 17}, - [346] = {.lex_state = 17}, - [347] = {.lex_state = 17}, - [348] = {.lex_state = 18}, - [349] = {.lex_state = 17}, - [350] = {.lex_state = 17}, - [351] = {.lex_state = 17}, - [352] = {.lex_state = 18}, - [353] = {.lex_state = 17}, - [354] = {.lex_state = 17}, - [355] = {.lex_state = 17}, - [356] = {.lex_state = 17}, - [357] = {.lex_state = 17}, - [358] = {.lex_state = 17}, - [359] = {.lex_state = 18}, - [360] = {.lex_state = 17}, - [361] = {.lex_state = 17}, - [362] = {.lex_state = 18}, - [363] = {.lex_state = 17}, - [364] = {.lex_state = 18}, - [365] = {.lex_state = 17}, - [366] = {.lex_state = 17}, - [367] = {.lex_state = 17}, - [368] = {.lex_state = 17}, - [369] = {.lex_state = 17}, - [370] = {.lex_state = 17}, - [371] = {.lex_state = 18}, - [372] = {.lex_state = 17}, - [373] = {.lex_state = 17}, - [374] = {.lex_state = 17}, - [375] = {.lex_state = 17}, - [376] = {.lex_state = 18}, - [377] = {.lex_state = 17}, - [378] = {.lex_state = 17}, - [379] = {.lex_state = 17}, - [380] = {.lex_state = 17}, - [381] = {.lex_state = 18}, - [382] = {.lex_state = 18}, - [383] = {.lex_state = 17}, - [384] = {.lex_state = 18}, - [385] = {.lex_state = 18}, - [386] = {.lex_state = 17}, - [387] = {.lex_state = 17}, - [388] = {.lex_state = 17}, - [389] = {.lex_state = 17}, - [390] = {.lex_state = 17}, - [391] = {.lex_state = 17}, - [392] = {.lex_state = 17}, - [393] = {.lex_state = 17}, - [394] = {.lex_state = 17}, - [395] = {.lex_state = 18}, - [396] = {.lex_state = 17}, - [397] = {.lex_state = 17}, - [398] = {.lex_state = 17}, - [399] = {.lex_state = 17}, - [400] = {.lex_state = 17}, - [401] = {.lex_state = 17}, - [402] = {.lex_state = 17}, - [403] = {.lex_state = 17}, - [404] = {.lex_state = 17}, - [405] = {.lex_state = 17}, - [406] = {.lex_state = 17}, - [407] = {.lex_state = 17}, - [408] = {.lex_state = 17}, - [409] = {.lex_state = 17}, - [410] = {.lex_state = 17}, - [411] = {.lex_state = 17}, - [412] = {.lex_state = 18}, - [413] = {.lex_state = 18}, - [414] = {.lex_state = 17}, - [415] = {.lex_state = 17}, - [416] = {.lex_state = 17}, - [417] = {.lex_state = 18}, - [418] = {.lex_state = 17}, - [419] = {.lex_state = 17}, - [420] = {.lex_state = 17}, - [421] = {.lex_state = 17}, - [422] = {.lex_state = 17}, - [423] = {.lex_state = 17}, - [424] = {.lex_state = 17}, - [425] = {.lex_state = 18}, - [426] = {.lex_state = 17}, - [427] = {.lex_state = 17}, - [428] = {.lex_state = 17}, - [429] = {.lex_state = 17}, - [430] = {.lex_state = 17}, - [431] = {.lex_state = 17}, - [432] = {.lex_state = 17}, - [433] = {.lex_state = 17}, - [434] = {.lex_state = 18}, - [435] = {.lex_state = 17}, - [436] = {.lex_state = 17}, - [437] = {.lex_state = 20}, - [438] = {.lex_state = 18}, - [439] = {.lex_state = 17}, - [440] = {.lex_state = 20}, - [441] = {.lex_state = 17}, - [442] = {.lex_state = 17}, - [443] = {.lex_state = 18}, - [444] = {.lex_state = 18}, - [445] = {.lex_state = 20}, - [446] = {.lex_state = 18}, - [447] = {.lex_state = 20}, - [448] = {.lex_state = 17}, - [449] = {.lex_state = 18}, - [450] = {.lex_state = 17}, - [451] = {.lex_state = 18}, - [452] = {.lex_state = 18}, - [453] = {.lex_state = 18}, - [454] = {.lex_state = 18}, - [455] = {.lex_state = 18}, - [456] = {.lex_state = 18}, - [457] = {.lex_state = 18}, - [458] = {.lex_state = 18}, - [459] = {.lex_state = 18}, - [460] = {.lex_state = 18}, - [461] = {.lex_state = 18}, - [462] = {.lex_state = 18}, - [463] = {.lex_state = 18}, - [464] = {.lex_state = 18}, - [465] = {.lex_state = 18}, - [466] = {.lex_state = 18}, - [467] = {.lex_state = 18}, - [468] = {.lex_state = 18}, - [469] = {.lex_state = 18}, - [470] = {.lex_state = 18}, - [471] = {.lex_state = 18}, - [472] = {.lex_state = 18}, - [473] = {.lex_state = 18}, - [474] = {.lex_state = 18}, - [475] = {.lex_state = 18}, - [476] = {.lex_state = 18}, - [477] = {.lex_state = 18}, - [478] = {.lex_state = 18}, - [479] = {.lex_state = 18}, - [480] = {.lex_state = 18}, - [481] = {.lex_state = 18}, - [482] = {.lex_state = 18}, - [483] = {.lex_state = 18}, - [484] = {.lex_state = 18}, - [485] = {.lex_state = 18}, - [486] = {.lex_state = 18}, - [487] = {.lex_state = 18}, - [488] = {.lex_state = 17}, - [489] = {.lex_state = 18}, - [490] = {.lex_state = 18}, - [491] = {.lex_state = 18}, - [492] = {.lex_state = 18}, - [493] = {.lex_state = 18}, - [494] = {.lex_state = 18}, - [495] = {.lex_state = 18}, - [496] = {.lex_state = 18}, - [497] = {.lex_state = 18}, - [498] = {.lex_state = 18}, - [499] = {.lex_state = 18}, - [500] = {.lex_state = 18}, - [501] = {.lex_state = 18}, - [502] = {.lex_state = 18}, - [503] = {.lex_state = 18}, - [504] = {.lex_state = 18}, - [505] = {.lex_state = 18}, - [506] = {.lex_state = 18}, - [507] = {.lex_state = 18}, - [508] = {.lex_state = 18}, - [509] = {.lex_state = 18}, - [510] = {.lex_state = 18}, - [511] = {.lex_state = 17}, - [512] = {.lex_state = 18}, - [513] = {.lex_state = 18}, - [514] = {.lex_state = 18}, - [515] = {.lex_state = 18}, - [516] = {.lex_state = 19}, - [517] = {.lex_state = 19}, - [518] = {.lex_state = 18}, - [519] = {.lex_state = 19}, - [520] = {.lex_state = 18}, - [521] = {.lex_state = 18}, - [522] = {.lex_state = 18}, - [523] = {.lex_state = 18}, - [524] = {.lex_state = 18}, - [525] = {.lex_state = 18}, - [526] = {.lex_state = 18}, - [527] = {.lex_state = 18}, - [528] = {.lex_state = 18}, - [529] = {.lex_state = 18}, - [530] = {.lex_state = 18}, - [531] = {.lex_state = 18}, - [532] = {.lex_state = 18}, - [533] = {.lex_state = 18}, - [534] = {.lex_state = 18}, - [535] = {.lex_state = 18}, - [536] = {.lex_state = 18}, - [537] = {.lex_state = 19}, - [538] = {.lex_state = 18}, - [539] = {.lex_state = 18}, - [540] = {.lex_state = 18}, - [541] = {.lex_state = 18}, - [542] = {.lex_state = 18}, - [543] = {.lex_state = 18}, - [544] = {.lex_state = 18}, - [545] = {.lex_state = 18}, - [546] = {.lex_state = 18}, - [547] = {.lex_state = 18}, - [548] = {.lex_state = 18}, - [549] = {.lex_state = 18}, - [550] = {.lex_state = 18}, - [551] = {.lex_state = 18}, - [552] = {.lex_state = 18}, - [553] = {.lex_state = 18}, - [554] = {.lex_state = 18}, - [555] = {.lex_state = 18}, - [556] = {.lex_state = 18}, - [557] = {.lex_state = 18}, - [558] = {.lex_state = 18}, - [559] = {.lex_state = 18}, - [560] = {.lex_state = 20}, - [561] = {.lex_state = 20}, - [562] = {.lex_state = 20}, - [563] = {.lex_state = 20}, - [564] = {.lex_state = 20}, - [565] = {.lex_state = 19}, - [566] = {.lex_state = 20}, - [567] = {.lex_state = 20}, - [568] = {.lex_state = 20}, - [569] = {.lex_state = 19}, - [570] = {.lex_state = 20}, - [571] = {.lex_state = 18}, - [572] = {.lex_state = 20}, - [573] = {.lex_state = 18}, - [574] = {.lex_state = 20}, - [575] = {.lex_state = 20}, - [576] = {.lex_state = 20}, - [577] = {.lex_state = 20}, - [578] = {.lex_state = 20}, - [579] = {.lex_state = 20}, - [580] = {.lex_state = 19}, - [581] = {.lex_state = 18}, - [582] = {.lex_state = 19}, - [583] = {.lex_state = 20}, - [584] = {.lex_state = 20}, - [585] = {.lex_state = 19}, - [586] = {.lex_state = 20}, - [587] = {.lex_state = 20}, - [588] = {.lex_state = 20}, - [589] = {.lex_state = 20}, - [590] = {.lex_state = 20}, - [591] = {.lex_state = 20}, - [592] = {.lex_state = 19}, - [593] = {.lex_state = 20}, - [594] = {.lex_state = 20}, - [595] = {.lex_state = 20}, - [596] = {.lex_state = 19}, - [597] = {.lex_state = 20}, - [598] = {.lex_state = 20}, - [599] = {.lex_state = 19}, - [600] = {.lex_state = 19}, - [601] = {.lex_state = 20}, - [602] = {.lex_state = 18}, - [603] = {.lex_state = 18}, - [604] = {.lex_state = 18}, - [605] = {.lex_state = 18}, - [606] = {.lex_state = 18}, - [607] = {.lex_state = 18}, - [608] = {.lex_state = 19}, - [609] = {.lex_state = 19}, - [610] = {.lex_state = 19}, - [611] = {.lex_state = 19}, - [612] = {.lex_state = 19}, - [613] = {.lex_state = 19}, - [614] = {.lex_state = 19}, - [615] = {.lex_state = 19}, - [616] = {.lex_state = 19}, - [617] = {.lex_state = 19}, - [618] = {.lex_state = 19}, - [619] = {.lex_state = 19}, - [620] = {.lex_state = 19}, - [621] = {.lex_state = 19}, - [622] = {.lex_state = 19}, - [623] = {.lex_state = 19}, - [624] = {.lex_state = 19}, - [625] = {.lex_state = 19}, - [626] = {.lex_state = 19}, - [627] = {.lex_state = 19}, - [628] = {.lex_state = 19}, - [629] = {.lex_state = 19}, - [630] = {.lex_state = 19}, - [631] = {.lex_state = 19}, - [632] = {.lex_state = 19}, - [633] = {.lex_state = 19}, - [634] = {.lex_state = 19}, - [635] = {.lex_state = 19}, - [636] = {.lex_state = 19}, - [637] = {.lex_state = 19}, - [638] = {.lex_state = 19}, - [639] = {.lex_state = 19}, - [640] = {.lex_state = 19}, - [641] = {.lex_state = 19}, - [642] = {.lex_state = 19}, - [643] = {.lex_state = 19}, - [644] = {.lex_state = 19}, - [645] = {.lex_state = 19}, - [646] = {.lex_state = 19}, - [647] = {.lex_state = 19}, - [648] = {.lex_state = 19}, - [649] = {.lex_state = 19}, - [650] = {.lex_state = 19}, - [651] = {.lex_state = 19}, - [652] = {.lex_state = 19}, - [653] = {.lex_state = 19}, - [654] = {.lex_state = 19}, - [655] = {.lex_state = 19}, - [656] = {.lex_state = 19}, - [657] = {.lex_state = 19}, - [658] = {.lex_state = 19}, - [659] = {.lex_state = 19}, - [660] = {.lex_state = 19}, - [661] = {.lex_state = 19}, - [662] = {.lex_state = 19}, - [663] = {.lex_state = 19}, - [664] = {.lex_state = 19}, - [665] = {.lex_state = 19}, - [666] = {.lex_state = 19}, - [667] = {.lex_state = 19}, - [668] = {.lex_state = 19}, - [669] = {.lex_state = 19}, - [670] = {.lex_state = 19}, - [671] = {.lex_state = 19}, - [672] = {.lex_state = 19}, - [673] = {.lex_state = 19}, - [674] = {.lex_state = 19}, - [675] = {.lex_state = 19}, - [676] = {.lex_state = 19}, - [677] = {.lex_state = 19}, - [678] = {.lex_state = 19}, - [679] = {.lex_state = 19}, - [680] = {.lex_state = 19}, - [681] = {.lex_state = 19}, - [682] = {.lex_state = 19}, - [683] = {.lex_state = 19}, - [684] = {.lex_state = 19}, - [685] = {.lex_state = 19}, - [686] = {.lex_state = 19}, - [687] = {.lex_state = 19}, - [688] = {.lex_state = 19}, - [689] = {.lex_state = 19}, - [690] = {.lex_state = 19}, - [691] = {.lex_state = 19}, - [692] = {.lex_state = 19}, - [693] = {.lex_state = 19}, - [694] = {.lex_state = 19}, - [695] = {.lex_state = 19}, - [696] = {.lex_state = 19}, - [697] = {.lex_state = 19}, - [698] = {.lex_state = 19}, - [699] = {.lex_state = 19}, - [700] = {.lex_state = 19}, - [701] = {.lex_state = 19}, - [702] = {.lex_state = 19}, - [703] = {.lex_state = 19}, - [704] = {.lex_state = 19}, - [705] = {.lex_state = 19}, - [706] = {.lex_state = 19}, - [707] = {.lex_state = 19}, - [708] = {.lex_state = 19}, - [709] = {.lex_state = 19}, - [710] = {.lex_state = 19}, - [711] = {.lex_state = 19}, - [712] = {.lex_state = 19}, - [713] = {.lex_state = 19}, - [714] = {.lex_state = 19}, - [715] = {.lex_state = 19}, - [716] = {.lex_state = 19}, - [717] = {.lex_state = 19}, - [718] = {.lex_state = 19}, - [719] = {.lex_state = 19}, - [720] = {.lex_state = 19}, - [721] = {.lex_state = 19}, - [722] = {.lex_state = 19}, - [723] = {.lex_state = 19}, - [724] = {.lex_state = 19}, - [725] = {.lex_state = 19}, - [726] = {.lex_state = 19}, - [727] = {.lex_state = 19}, - [728] = {.lex_state = 19}, - [729] = {.lex_state = 19}, - [730] = {.lex_state = 19}, - [731] = {.lex_state = 19}, - [732] = {.lex_state = 19}, - [733] = {.lex_state = 19}, - [734] = {.lex_state = 19}, - [735] = {.lex_state = 19}, - [736] = {.lex_state = 19}, - [737] = {.lex_state = 19}, - [738] = {.lex_state = 19}, - [739] = {.lex_state = 19}, - [740] = {.lex_state = 19}, - [741] = {.lex_state = 19}, - [742] = {.lex_state = 19}, - [743] = {.lex_state = 19}, - [744] = {.lex_state = 19}, - [745] = {.lex_state = 19}, - [746] = {.lex_state = 19}, - [747] = {.lex_state = 19}, - [748] = {.lex_state = 19}, - [749] = {.lex_state = 19}, - [750] = {.lex_state = 19}, - [751] = {.lex_state = 19}, - [752] = {.lex_state = 19}, - [753] = {.lex_state = 19}, - [754] = {.lex_state = 19}, - [755] = {.lex_state = 19}, - [756] = {.lex_state = 19}, - [757] = {.lex_state = 19}, - [758] = {.lex_state = 19}, - [759] = {.lex_state = 19}, - [760] = {.lex_state = 19}, - [761] = {.lex_state = 19}, - [762] = {.lex_state = 19}, - [763] = {.lex_state = 19}, - [764] = {.lex_state = 19}, - [765] = {.lex_state = 19}, - [766] = {.lex_state = 19}, - [767] = {.lex_state = 19}, - [768] = {.lex_state = 19}, - [769] = {.lex_state = 19}, - [770] = {.lex_state = 19}, - [771] = {.lex_state = 19}, - [772] = {.lex_state = 19}, - [773] = {.lex_state = 19}, - [774] = {.lex_state = 19}, - [775] = {.lex_state = 19}, - [776] = {.lex_state = 19}, - [777] = {.lex_state = 19}, - [778] = {.lex_state = 19}, - [779] = {.lex_state = 19}, - [780] = {.lex_state = 19}, - [781] = {.lex_state = 19}, - [782] = {.lex_state = 19}, - [783] = {.lex_state = 19}, - [784] = {.lex_state = 19}, - [785] = {.lex_state = 19}, - [786] = {.lex_state = 19}, - [787] = {.lex_state = 19}, - [788] = {.lex_state = 19}, - [789] = {.lex_state = 19}, - [790] = {.lex_state = 19}, - [791] = {.lex_state = 18}, - [792] = {.lex_state = 19}, - [793] = {.lex_state = 19}, - [794] = {.lex_state = 19}, - [795] = {.lex_state = 19}, - [796] = {.lex_state = 19}, - [797] = {.lex_state = 19}, - [798] = {.lex_state = 19}, - [799] = {.lex_state = 19}, - [800] = {.lex_state = 19}, - [801] = {.lex_state = 19}, - [802] = {.lex_state = 19}, - [803] = {.lex_state = 19}, - [804] = {.lex_state = 19}, - [805] = {.lex_state = 19}, - [806] = {.lex_state = 19}, - [807] = {.lex_state = 19}, - [808] = {.lex_state = 19}, - [809] = {.lex_state = 18}, - [810] = {.lex_state = 19}, - [811] = {.lex_state = 19}, - [812] = {.lex_state = 19}, - [813] = {.lex_state = 19}, - [814] = {.lex_state = 19}, - [815] = {.lex_state = 19}, - [816] = {.lex_state = 18}, - [817] = {.lex_state = 19}, - [818] = {.lex_state = 18}, - [819] = {.lex_state = 19}, - [820] = {.lex_state = 19}, - [821] = {.lex_state = 19}, - [822] = {.lex_state = 19}, - [823] = {.lex_state = 19}, - [824] = {.lex_state = 19}, - [825] = {.lex_state = 19}, - [826] = {.lex_state = 19}, - [827] = {.lex_state = 19}, - [828] = {.lex_state = 19}, - [829] = {.lex_state = 19}, - [830] = {.lex_state = 19}, - [831] = {.lex_state = 19}, - [832] = {.lex_state = 19}, - [833] = {.lex_state = 19}, - [834] = {.lex_state = 19}, - [835] = {.lex_state = 19}, - [836] = {.lex_state = 19}, - [837] = {.lex_state = 19}, - [838] = {.lex_state = 19}, - [839] = {.lex_state = 19}, - [840] = {.lex_state = 19}, - [841] = {.lex_state = 19}, - [842] = {.lex_state = 19}, - [843] = {.lex_state = 19}, - [844] = {.lex_state = 19}, - [845] = {.lex_state = 19}, - [846] = {.lex_state = 19}, - [847] = {.lex_state = 19}, - [848] = {.lex_state = 19}, - [849] = {.lex_state = 19}, - [850] = {.lex_state = 19}, - [851] = {.lex_state = 19}, - [852] = {.lex_state = 19}, - [853] = {.lex_state = 19}, - [854] = {.lex_state = 19}, - [855] = {.lex_state = 19}, - [856] = {.lex_state = 19}, - [857] = {.lex_state = 19}, - [858] = {.lex_state = 19}, - [859] = {.lex_state = 19}, - [860] = {.lex_state = 19}, - [861] = {.lex_state = 19}, - [862] = {.lex_state = 19}, - [863] = {.lex_state = 19}, - [864] = {.lex_state = 19}, - [865] = {.lex_state = 19}, - [866] = {.lex_state = 19}, - [867] = {.lex_state = 19}, - [868] = {.lex_state = 19}, - [869] = {.lex_state = 19}, - [870] = {.lex_state = 19}, - [871] = {.lex_state = 19}, - [872] = {.lex_state = 19}, - [873] = {.lex_state = 19}, - [874] = {.lex_state = 19}, - [875] = {.lex_state = 19}, - [876] = {.lex_state = 19}, - [877] = {.lex_state = 19}, - [878] = {.lex_state = 19}, - [879] = {.lex_state = 19}, - [880] = {.lex_state = 19}, - [881] = {.lex_state = 19}, - [882] = {.lex_state = 19}, - [883] = {.lex_state = 19}, - [884] = {.lex_state = 19}, - [885] = {.lex_state = 19}, - [886] = {.lex_state = 19}, - [887] = {.lex_state = 19}, - [888] = {.lex_state = 19}, - [889] = {.lex_state = 19}, - [890] = {.lex_state = 19}, - [891] = {.lex_state = 19}, - [892] = {.lex_state = 19}, - [893] = {.lex_state = 19}, - [894] = {.lex_state = 19}, + [1] = {.lex_state = 27}, + [2] = {.lex_state = 0}, + [3] = {.lex_state = 0}, + [4] = {.lex_state = 24}, + [5] = {.lex_state = 0}, + [6] = {.lex_state = 25}, + [7] = {.lex_state = 24}, + [8] = {.lex_state = 0}, + [9] = {.lex_state = 0}, + [10] = {.lex_state = 0}, + [11] = {.lex_state = 24}, + [12] = {.lex_state = 0}, + [13] = {.lex_state = 0}, + [14] = {.lex_state = 25}, + [15] = {.lex_state = 24}, + [16] = {.lex_state = 0}, + [17] = {.lex_state = 24}, + [18] = {.lex_state = 25}, + [19] = {.lex_state = 26}, + [20] = {.lex_state = 24}, + [21] = {.lex_state = 0}, + [22] = {.lex_state = 25}, + [23] = {.lex_state = 0}, + [24] = {.lex_state = 24}, + [25] = {.lex_state = 24}, + [26] = {.lex_state = 26}, + [27] = {.lex_state = 0}, + [28] = {.lex_state = 25}, + [29] = {.lex_state = 25}, + [30] = {.lex_state = 25}, + [31] = {.lex_state = 26}, + [32] = {.lex_state = 24}, + [33] = {.lex_state = 25}, + [34] = {.lex_state = 25}, + [35] = {.lex_state = 24}, + [36] = {.lex_state = 25}, + [37] = {.lex_state = 26}, + [38] = {.lex_state = 25}, + [39] = {.lex_state = 26}, + [40] = {.lex_state = 26}, + [41] = {.lex_state = 25}, + [42] = {.lex_state = 24}, + [43] = {.lex_state = 24}, + [44] = {.lex_state = 24}, + [45] = {.lex_state = 24}, + [46] = {.lex_state = 26}, + [47] = {.lex_state = 26}, + [48] = {.lex_state = 24}, + [49] = {.lex_state = 24}, + [50] = {.lex_state = 26}, + [51] = {.lex_state = 25}, + [52] = {.lex_state = 26}, + [53] = {.lex_state = 26}, + [54] = {.lex_state = 26}, + [55] = {.lex_state = 25}, + [56] = {.lex_state = 26}, + [57] = {.lex_state = 26}, + [58] = {.lex_state = 26}, + [59] = {.lex_state = 26}, + [60] = {.lex_state = 26}, + [61] = {.lex_state = 26}, + [62] = {.lex_state = 26}, + [63] = {.lex_state = 26}, + [64] = {.lex_state = 26}, + [65] = {.lex_state = 26}, + [66] = {.lex_state = 26}, + [67] = {.lex_state = 26}, + [68] = {.lex_state = 26}, + [69] = {.lex_state = 26}, + [70] = {.lex_state = 26}, + [71] = {.lex_state = 26}, + [72] = {.lex_state = 26}, + [73] = {.lex_state = 26}, + [74] = {.lex_state = 26}, + [75] = {.lex_state = 26}, + [76] = {.lex_state = 26}, + [77] = {.lex_state = 26}, + [78] = {.lex_state = 26}, + [79] = {.lex_state = 26}, + [80] = {.lex_state = 26}, + [81] = {.lex_state = 26}, + [82] = {.lex_state = 26}, + [83] = {.lex_state = 26}, + [84] = {.lex_state = 26}, + [85] = {.lex_state = 26}, + [86] = {.lex_state = 26}, + [87] = {.lex_state = 26}, + [88] = {.lex_state = 26}, + [89] = {.lex_state = 26}, + [90] = {.lex_state = 26}, + [91] = {.lex_state = 26}, + [92] = {.lex_state = 26}, + [93] = {.lex_state = 26}, + [94] = {.lex_state = 26}, + [95] = {.lex_state = 26}, + [96] = {.lex_state = 26}, + [97] = {.lex_state = 26}, + [98] = {.lex_state = 26}, + [99] = {.lex_state = 26}, + [100] = {.lex_state = 26}, + [101] = {.lex_state = 26}, + [102] = {.lex_state = 26}, + [103] = {.lex_state = 26}, + [104] = {.lex_state = 26}, + [105] = {.lex_state = 26}, + [106] = {.lex_state = 26}, + [107] = {.lex_state = 26}, + [108] = {.lex_state = 26}, + [109] = {.lex_state = 26}, + [110] = {.lex_state = 26}, + [111] = {.lex_state = 26}, + [112] = {.lex_state = 26}, + [113] = {.lex_state = 26}, + [114] = {.lex_state = 26}, + [115] = {.lex_state = 26}, + [116] = {.lex_state = 26}, + [117] = {.lex_state = 26}, + [118] = {.lex_state = 26}, + [119] = {.lex_state = 26}, + [120] = {.lex_state = 26}, + [121] = {.lex_state = 26}, + [122] = {.lex_state = 26}, + [123] = {.lex_state = 26}, + [124] = {.lex_state = 26}, + [125] = {.lex_state = 26}, + [126] = {.lex_state = 26}, + [127] = {.lex_state = 26}, + [128] = {.lex_state = 26}, + [129] = {.lex_state = 26}, + [130] = {.lex_state = 26}, + [131] = {.lex_state = 26}, + [132] = {.lex_state = 26}, + [133] = {.lex_state = 26}, + [134] = {.lex_state = 26}, + [135] = {.lex_state = 26}, + [136] = {.lex_state = 26}, + [137] = {.lex_state = 26}, + [138] = {.lex_state = 26}, + [139] = {.lex_state = 26}, + [140] = {.lex_state = 26}, + [141] = {.lex_state = 26}, + [142] = {.lex_state = 26}, + [143] = {.lex_state = 26}, + [144] = {.lex_state = 26}, + [145] = {.lex_state = 26}, + [146] = {.lex_state = 26}, + [147] = {.lex_state = 26}, + [148] = {.lex_state = 26}, + [149] = {.lex_state = 26}, + [150] = {.lex_state = 26}, + [151] = {.lex_state = 26}, + [152] = {.lex_state = 26}, + [153] = {.lex_state = 26}, + [154] = {.lex_state = 26}, + [155] = {.lex_state = 26}, + [156] = {.lex_state = 26}, + [157] = {.lex_state = 26}, + [158] = {.lex_state = 26}, + [159] = {.lex_state = 26}, + [160] = {.lex_state = 26}, + [161] = {.lex_state = 26}, + [162] = {.lex_state = 26}, + [163] = {.lex_state = 26}, + [164] = {.lex_state = 26}, + [165] = {.lex_state = 26}, + [166] = {.lex_state = 26}, + [167] = {.lex_state = 26}, + [168] = {.lex_state = 26}, + [169] = {.lex_state = 26}, + [170] = {.lex_state = 26}, + [171] = {.lex_state = 26}, + [172] = {.lex_state = 26}, + [173] = {.lex_state = 26}, + [174] = {.lex_state = 26}, + [175] = {.lex_state = 26}, + [176] = {.lex_state = 26}, + [177] = {.lex_state = 26}, + [178] = {.lex_state = 26}, + [179] = {.lex_state = 26}, + [180] = {.lex_state = 26}, + [181] = {.lex_state = 26}, + [182] = {.lex_state = 26}, + [183] = {.lex_state = 26}, + [184] = {.lex_state = 26}, + [185] = {.lex_state = 26}, + [186] = {.lex_state = 26}, + [187] = {.lex_state = 26}, + [188] = {.lex_state = 26}, + [189] = {.lex_state = 26}, + [190] = {.lex_state = 26}, + [191] = {.lex_state = 26}, + [192] = {.lex_state = 26}, + [193] = {.lex_state = 26}, + [194] = {.lex_state = 26}, + [195] = {.lex_state = 26}, + [196] = {.lex_state = 26}, + [197] = {.lex_state = 26}, + [198] = {.lex_state = 26}, + [199] = {.lex_state = 26}, + [200] = {.lex_state = 26}, + [201] = {.lex_state = 26}, + [202] = {.lex_state = 26}, + [203] = {.lex_state = 26}, + [204] = {.lex_state = 26}, + [205] = {.lex_state = 26}, + [206] = {.lex_state = 26}, + [207] = {.lex_state = 26}, + [208] = {.lex_state = 26}, + [209] = {.lex_state = 26}, + [210] = {.lex_state = 26}, + [211] = {.lex_state = 26}, + [212] = {.lex_state = 26}, + [213] = {.lex_state = 26}, + [214] = {.lex_state = 26}, + [215] = {.lex_state = 26}, + [216] = {.lex_state = 26}, + [217] = {.lex_state = 26}, + [218] = {.lex_state = 26}, + [219] = {.lex_state = 26}, + [220] = {.lex_state = 26}, + [221] = {.lex_state = 26}, + [222] = {.lex_state = 26}, + [223] = {.lex_state = 26}, + [224] = {.lex_state = 26}, + [225] = {.lex_state = 26}, + [226] = {.lex_state = 26}, + [227] = {.lex_state = 26}, + [228] = {.lex_state = 26}, + [229] = {.lex_state = 26}, + [230] = {.lex_state = 26}, + [231] = {.lex_state = 26}, + [232] = {.lex_state = 26}, + [233] = {.lex_state = 26}, + [234] = {.lex_state = 26}, + [235] = {.lex_state = 26}, + [236] = {.lex_state = 26}, + [237] = {.lex_state = 26}, + [238] = {.lex_state = 26}, + [239] = {.lex_state = 26}, + [240] = {.lex_state = 26}, + [241] = {.lex_state = 26}, + [242] = {.lex_state = 26}, + [243] = {.lex_state = 26}, + [244] = {.lex_state = 26}, + [245] = {.lex_state = 26}, + [246] = {.lex_state = 26}, + [247] = {.lex_state = 26}, + [248] = {.lex_state = 26}, + [249] = {.lex_state = 26}, + [250] = {.lex_state = 26}, + [251] = {.lex_state = 26}, + [252] = {.lex_state = 26}, + [253] = {.lex_state = 26}, + [254] = {.lex_state = 26}, + [255] = {.lex_state = 26}, + [256] = {.lex_state = 26}, + [257] = {.lex_state = 26}, + [258] = {.lex_state = 26}, + [259] = {.lex_state = 26}, + [260] = {.lex_state = 26}, + [261] = {.lex_state = 0}, + [262] = {.lex_state = 0}, + [263] = {.lex_state = 0}, + [264] = {.lex_state = 0}, + [265] = {.lex_state = 0}, + [266] = {.lex_state = 0}, + [267] = {.lex_state = 0}, + [268] = {.lex_state = 0}, + [269] = {.lex_state = 0}, + [270] = {.lex_state = 0}, + [271] = {.lex_state = 0}, + [272] = {.lex_state = 0}, + [273] = {.lex_state = 24}, + [274] = {.lex_state = 0}, + [275] = {.lex_state = 0}, + [276] = {.lex_state = 0}, + [277] = {.lex_state = 24}, + [278] = {.lex_state = 24}, + [279] = {.lex_state = 0}, + [280] = {.lex_state = 24}, + [281] = {.lex_state = 0}, + [282] = {.lex_state = 0}, + [283] = {.lex_state = 0}, + [284] = {.lex_state = 24}, + [285] = {.lex_state = 24}, + [286] = {.lex_state = 0}, + [287] = {.lex_state = 24}, + [288] = {.lex_state = 24}, + [289] = {.lex_state = 0}, + [290] = {.lex_state = 0}, + [291] = {.lex_state = 25}, + [292] = {.lex_state = 0}, + [293] = {.lex_state = 25}, + [294] = {.lex_state = 24}, + [295] = {.lex_state = 25}, + [296] = {.lex_state = 0}, + [297] = {.lex_state = 0}, + [298] = {.lex_state = 0}, + [299] = {.lex_state = 0}, + [300] = {.lex_state = 24}, + [301] = {.lex_state = 25}, + [302] = {.lex_state = 25}, + [303] = {.lex_state = 0}, + [304] = {.lex_state = 24}, + [305] = {.lex_state = 24}, + [306] = {.lex_state = 24}, + [307] = {.lex_state = 24}, + [308] = {.lex_state = 25}, + [309] = {.lex_state = 0}, + [310] = {.lex_state = 0}, + [311] = {.lex_state = 24}, + [312] = {.lex_state = 25}, + [313] = {.lex_state = 24}, + [314] = {.lex_state = 25}, + [315] = {.lex_state = 25}, + [316] = {.lex_state = 25}, + [317] = {.lex_state = 25}, + [318] = {.lex_state = 24}, + [319] = {.lex_state = 25}, + [320] = {.lex_state = 24}, + [321] = {.lex_state = 24}, + [322] = {.lex_state = 24}, + [323] = {.lex_state = 24}, + [324] = {.lex_state = 24}, + [325] = {.lex_state = 24}, + [326] = {.lex_state = 25}, + [327] = {.lex_state = 24}, + [328] = {.lex_state = 24}, + [329] = {.lex_state = 25}, + [330] = {.lex_state = 24}, + [331] = {.lex_state = 24}, + [332] = {.lex_state = 25}, + [333] = {.lex_state = 25}, + [334] = {.lex_state = 26}, + [335] = {.lex_state = 24}, + [336] = {.lex_state = 26}, + [337] = {.lex_state = 26}, + [338] = {.lex_state = 26}, + [339] = {.lex_state = 26}, + [340] = {.lex_state = 24}, + [341] = {.lex_state = 25}, + [342] = {.lex_state = 26}, + [343] = {.lex_state = 24}, + [344] = {.lex_state = 25}, + [345] = {.lex_state = 25}, + [346] = {.lex_state = 26}, + [347] = {.lex_state = 26}, + [348] = {.lex_state = 28}, + [349] = {.lex_state = 24}, + [350] = {.lex_state = 25}, + [351] = {.lex_state = 25}, + [352] = {.lex_state = 28}, + [353] = {.lex_state = 26}, + [354] = {.lex_state = 28}, + [355] = {.lex_state = 25}, + [356] = {.lex_state = 25}, + [357] = {.lex_state = 25}, + [358] = {.lex_state = 28}, + [359] = {.lex_state = 28}, + [360] = {.lex_state = 26}, + [361] = {.lex_state = 26}, + [362] = {.lex_state = 26}, + [363] = {.lex_state = 26}, + [364] = {.lex_state = 26}, + [365] = {.lex_state = 26}, + [366] = {.lex_state = 26}, + [367] = {.lex_state = 26}, + [368] = {.lex_state = 26}, + [369] = {.lex_state = 26}, + [370] = {.lex_state = 27}, + [371] = {.lex_state = 27}, + [372] = {.lex_state = 26}, + [373] = {.lex_state = 26}, + [374] = {.lex_state = 27}, + [375] = {.lex_state = 26}, + [376] = {.lex_state = 27}, + [377] = {.lex_state = 27}, + [378] = {.lex_state = 27}, + [379] = {.lex_state = 26}, + [380] = {.lex_state = 26}, + [381] = {.lex_state = 27}, + [382] = {.lex_state = 27}, + [383] = {.lex_state = 27}, + [384] = {.lex_state = 27}, + [385] = {.lex_state = 27}, + [386] = {.lex_state = 27}, + [387] = {.lex_state = 27}, + [388] = {.lex_state = 27}, + [389] = {.lex_state = 27}, + [390] = {.lex_state = 27}, + [391] = {.lex_state = 27}, + [392] = {.lex_state = 27}, + [393] = {.lex_state = 27}, + [394] = {.lex_state = 27}, + [395] = {.lex_state = 27}, + [396] = {.lex_state = 27}, + [397] = {.lex_state = 27}, + [398] = {.lex_state = 27}, + [399] = {.lex_state = 27}, + [400] = {.lex_state = 27}, + [401] = {.lex_state = 27}, + [402] = {.lex_state = 27}, + [403] = {.lex_state = 27}, + [404] = {.lex_state = 27}, + [405] = {.lex_state = 27}, + [406] = {.lex_state = 27}, + [407] = {.lex_state = 27}, + [408] = {.lex_state = 27}, + [409] = {.lex_state = 27}, + [410] = {.lex_state = 27}, + [411] = {.lex_state = 27}, + [412] = {.lex_state = 27}, + [413] = {.lex_state = 27}, + [414] = {.lex_state = 27}, + [415] = {.lex_state = 27}, + [416] = {.lex_state = 27}, + [417] = {.lex_state = 27}, + [418] = {.lex_state = 27}, + [419] = {.lex_state = 27}, + [420] = {.lex_state = 27}, + [421] = {.lex_state = 27}, + [422] = {.lex_state = 27}, + [423] = {.lex_state = 27}, + [424] = {.lex_state = 27}, + [425] = {.lex_state = 27}, + [426] = {.lex_state = 27}, + [427] = {.lex_state = 27}, + [428] = {.lex_state = 27}, + [429] = {.lex_state = 27}, + [430] = {.lex_state = 27}, + [431] = {.lex_state = 27}, + [432] = {.lex_state = 27}, + [433] = {.lex_state = 27}, + [434] = {.lex_state = 27}, + [435] = {.lex_state = 27}, + [436] = {.lex_state = 27}, + [437] = {.lex_state = 27}, + [438] = {.lex_state = 27}, + [439] = {.lex_state = 27}, + [440] = {.lex_state = 27}, + [441] = {.lex_state = 27}, + [442] = {.lex_state = 27}, + [443] = {.lex_state = 27}, + [444] = {.lex_state = 27}, + [445] = {.lex_state = 27}, + [446] = {.lex_state = 27}, + [447] = {.lex_state = 27}, + [448] = {.lex_state = 27}, + [449] = {.lex_state = 27}, + [450] = {.lex_state = 27}, + [451] = {.lex_state = 27}, + [452] = {.lex_state = 27}, + [453] = {.lex_state = 27}, + [454] = {.lex_state = 27}, + [455] = {.lex_state = 27}, + [456] = {.lex_state = 27}, + [457] = {.lex_state = 27}, + [458] = {.lex_state = 27}, + [459] = {.lex_state = 27}, + [460] = {.lex_state = 27}, + [461] = {.lex_state = 27}, + [462] = {.lex_state = 27}, + [463] = {.lex_state = 27}, + [464] = {.lex_state = 27}, + [465] = {.lex_state = 27}, + [466] = {.lex_state = 27}, + [467] = {.lex_state = 27}, + [468] = {.lex_state = 27}, + [469] = {.lex_state = 27}, + [470] = {.lex_state = 27}, + [471] = {.lex_state = 27}, + [472] = {.lex_state = 27}, + [473] = {.lex_state = 27}, + [474] = {.lex_state = 27}, + [475] = {.lex_state = 27}, + [476] = {.lex_state = 27}, + [477] = {.lex_state = 27}, + [478] = {.lex_state = 27}, + [479] = {.lex_state = 27}, + [480] = {.lex_state = 27}, + [481] = {.lex_state = 27}, + [482] = {.lex_state = 27}, + [483] = {.lex_state = 27}, + [484] = {.lex_state = 27}, + [485] = {.lex_state = 27}, + [486] = {.lex_state = 27}, + [487] = {.lex_state = 27}, + [488] = {.lex_state = 27}, + [489] = {.lex_state = 27}, + [490] = {.lex_state = 27}, + [491] = {.lex_state = 27}, + [492] = {.lex_state = 27}, + [493] = {.lex_state = 27}, + [494] = {.lex_state = 27}, + [495] = {.lex_state = 27}, + [496] = {.lex_state = 27}, + [497] = {.lex_state = 27}, + [498] = {.lex_state = 27}, + [499] = {.lex_state = 27}, + [500] = {.lex_state = 27}, + [501] = {.lex_state = 27}, + [502] = {.lex_state = 27}, + [503] = {.lex_state = 27}, + [504] = {.lex_state = 27}, + [505] = {.lex_state = 27}, + [506] = {.lex_state = 27}, + [507] = {.lex_state = 27}, + [508] = {.lex_state = 27}, + [509] = {.lex_state = 27}, + [510] = {.lex_state = 27}, + [511] = {.lex_state = 27}, + [512] = {.lex_state = 27}, + [513] = {.lex_state = 27}, + [514] = {.lex_state = 27}, + [515] = {.lex_state = 27}, + [516] = {.lex_state = 27}, + [517] = {.lex_state = 27}, + [518] = {.lex_state = 27}, + [519] = {.lex_state = 27}, + [520] = {.lex_state = 27}, + [521] = {.lex_state = 27}, + [522] = {.lex_state = 27}, + [523] = {.lex_state = 27}, + [524] = {.lex_state = 27}, + [525] = {.lex_state = 27}, + [526] = {.lex_state = 27}, + [527] = {.lex_state = 27}, + [528] = {.lex_state = 27}, + [529] = {.lex_state = 27}, + [530] = {.lex_state = 27}, + [531] = {.lex_state = 27}, + [532] = {.lex_state = 27}, + [533] = {.lex_state = 27}, + [534] = {.lex_state = 27}, + [535] = {.lex_state = 27}, + [536] = {.lex_state = 27}, + [537] = {.lex_state = 27}, + [538] = {.lex_state = 27}, + [539] = {.lex_state = 27}, + [540] = {.lex_state = 27}, + [541] = {.lex_state = 27}, + [542] = {.lex_state = 27}, + [543] = {.lex_state = 27}, + [544] = {.lex_state = 27}, + [545] = {.lex_state = 27}, + [546] = {.lex_state = 27}, + [547] = {.lex_state = 27}, + [548] = {.lex_state = 27}, + [549] = {.lex_state = 27}, + [550] = {.lex_state = 27}, + [551] = {.lex_state = 27}, + [552] = {.lex_state = 27}, + [553] = {.lex_state = 27}, + [554] = {.lex_state = 27}, + [555] = {.lex_state = 27}, + [556] = {.lex_state = 27}, + [557] = {.lex_state = 0}, + [558] = {.lex_state = 0}, + [559] = {.lex_state = 0}, + [560] = {.lex_state = 0}, + [561] = {.lex_state = 0}, + [562] = {.lex_state = 0}, + [563] = {.lex_state = 0}, + [564] = {.lex_state = 0}, + [565] = {.lex_state = 0}, + [566] = {.lex_state = 0}, + [567] = {.lex_state = 0}, + [568] = {.lex_state = 0}, + [569] = {.lex_state = 0}, + [570] = {.lex_state = 0}, + [571] = {.lex_state = 0}, + [572] = {.lex_state = 0}, + [573] = {.lex_state = 0}, + [574] = {.lex_state = 0}, + [575] = {.lex_state = 0}, + [576] = {.lex_state = 0}, + [577] = {.lex_state = 0}, + [578] = {.lex_state = 0}, + [579] = {.lex_state = 0}, + [580] = {.lex_state = 0}, + [581] = {.lex_state = 0}, + [582] = {.lex_state = 0}, + [583] = {.lex_state = 0}, + [584] = {.lex_state = 0}, + [585] = {.lex_state = 0}, + [586] = {.lex_state = 0}, + [587] = {.lex_state = 0}, + [588] = {.lex_state = 0}, + [589] = {.lex_state = 0}, + [590] = {.lex_state = 24}, + [591] = {.lex_state = 0}, + [592] = {.lex_state = 0}, + [593] = {.lex_state = 0}, + [594] = {.lex_state = 0}, + [595] = {.lex_state = 0}, + [596] = {.lex_state = 0}, + [597] = {.lex_state = 24}, + [598] = {.lex_state = 0}, + [599] = {.lex_state = 0}, + [600] = {.lex_state = 0}, + [601] = {.lex_state = 24}, + [602] = {.lex_state = 0}, + [603] = {.lex_state = 0}, + [604] = {.lex_state = 0}, + [605] = {.lex_state = 0}, + [606] = {.lex_state = 0}, + [607] = {.lex_state = 0}, + [608] = {.lex_state = 0}, + [609] = {.lex_state = 0}, + [610] = {.lex_state = 0}, + [611] = {.lex_state = 0}, + [612] = {.lex_state = 0}, + [613] = {.lex_state = 25}, + [614] = {.lex_state = 0}, + [615] = {.lex_state = 0}, + [616] = {.lex_state = 24}, + [617] = {.lex_state = 0}, + [618] = {.lex_state = 0}, + [619] = {.lex_state = 0}, + [620] = {.lex_state = 0}, + [621] = {.lex_state = 0}, + [622] = {.lex_state = 0}, + [623] = {.lex_state = 0}, + [624] = {.lex_state = 0}, + [625] = {.lex_state = 0}, + [626] = {.lex_state = 0}, + [627] = {.lex_state = 25}, + [628] = {.lex_state = 0}, + [629] = {.lex_state = 0}, + [630] = {.lex_state = 0}, + [631] = {.lex_state = 0}, + [632] = {.lex_state = 0}, + [633] = {.lex_state = 0}, + [634] = {.lex_state = 0}, + [635] = {.lex_state = 24}, + [636] = {.lex_state = 0}, + [637] = {.lex_state = 0}, + [638] = {.lex_state = 0}, + [639] = {.lex_state = 0}, + [640] = {.lex_state = 24}, + [641] = {.lex_state = 0}, + [642] = {.lex_state = 24}, + [643] = {.lex_state = 24}, + [644] = {.lex_state = 24}, + [645] = {.lex_state = 0}, + [646] = {.lex_state = 0}, + [647] = {.lex_state = 25}, + [648] = {.lex_state = 25}, + [649] = {.lex_state = 2}, + [650] = {.lex_state = 25}, + [651] = {.lex_state = 24}, + [652] = {.lex_state = 25}, + [653] = {.lex_state = 25}, + [654] = {.lex_state = 25}, + [655] = {.lex_state = 0}, + [656] = {.lex_state = 0}, + [657] = {.lex_state = 24}, + [658] = {.lex_state = 0}, + [659] = {.lex_state = 0}, + [660] = {.lex_state = 25}, + [661] = {.lex_state = 0}, + [662] = {.lex_state = 2}, + [663] = {.lex_state = 0}, + [664] = {.lex_state = 24}, + [665] = {.lex_state = 25}, + [666] = {.lex_state = 25}, + [667] = {.lex_state = 25}, + [668] = {.lex_state = 25}, + [669] = {.lex_state = 2}, + [670] = {.lex_state = 25}, + [671] = {.lex_state = 24}, + [672] = {.lex_state = 0}, + [673] = {.lex_state = 2}, + [674] = {.lex_state = 2}, + [675] = {.lex_state = 25}, + [676] = {.lex_state = 0}, + [677] = {.lex_state = 25}, + [678] = {.lex_state = 25}, + [679] = {.lex_state = 2}, + [680] = {.lex_state = 24}, + [681] = {.lex_state = 24}, + [682] = {.lex_state = 24}, + [683] = {.lex_state = 24}, + [684] = {.lex_state = 24}, + [685] = {.lex_state = 25}, + [686] = {.lex_state = 24}, + [687] = {.lex_state = 24}, + [688] = {.lex_state = 24}, + [689] = {.lex_state = 24}, + [690] = {.lex_state = 24}, + [691] = {.lex_state = 24}, + [692] = {.lex_state = 2}, + [693] = {.lex_state = 24}, + [694] = {.lex_state = 24}, + [695] = {.lex_state = 2}, + [696] = {.lex_state = 24}, + [697] = {.lex_state = 2}, + [698] = {.lex_state = 2}, + [699] = {.lex_state = 24}, + [700] = {.lex_state = 25}, + [701] = {.lex_state = 24}, + [702] = {.lex_state = 25}, + [703] = {.lex_state = 24}, + [704] = {.lex_state = 24}, + [705] = {.lex_state = 24}, + [706] = {.lex_state = 24}, + [707] = {.lex_state = 1}, + [708] = {.lex_state = 25}, + [709] = {.lex_state = 1}, + [710] = {.lex_state = 25}, + [711] = {.lex_state = 24}, + [712] = {.lex_state = 24}, + [713] = {.lex_state = 24}, + [714] = {.lex_state = 25}, + [715] = {.lex_state = 25}, + [716] = {.lex_state = 1}, + [717] = {.lex_state = 24}, + [718] = {.lex_state = 24}, + [719] = {.lex_state = 24}, + [720] = {.lex_state = 24}, + [721] = {.lex_state = 24}, + [722] = {.lex_state = 24}, + [723] = {.lex_state = 24}, + [724] = {.lex_state = 25}, + [725] = {.lex_state = 24}, + [726] = {.lex_state = 1}, + [727] = {.lex_state = 24}, + [728] = {.lex_state = 24}, + [729] = {.lex_state = 24}, + [730] = {.lex_state = 24}, + [731] = {.lex_state = 24}, + [732] = {.lex_state = 25}, + [733] = {.lex_state = 24}, + [734] = {.lex_state = 24}, + [735] = {.lex_state = 24}, + [736] = {.lex_state = 24}, + [737] = {.lex_state = 24}, + [738] = {.lex_state = 24}, + [739] = {.lex_state = 24}, + [740] = {.lex_state = 25}, + [741] = {.lex_state = 25}, + [742] = {.lex_state = 24}, + [743] = {.lex_state = 25}, + [744] = {.lex_state = 25}, + [745] = {.lex_state = 2}, + [746] = {.lex_state = 25}, + [747] = {.lex_state = 24}, + [748] = {.lex_state = 0}, + [749] = {.lex_state = 26}, + [750] = {.lex_state = 25}, + [751] = {.lex_state = 26}, + [752] = {.lex_state = 25}, + [753] = {.lex_state = 25}, + [754] = {.lex_state = 0}, + [755] = {.lex_state = 26}, + [756] = {.lex_state = 26}, + [757] = {.lex_state = 25}, + [758] = {.lex_state = 25}, + [759] = {.lex_state = 25}, + [760] = {.lex_state = 25}, + [761] = {.lex_state = 25}, + [762] = {.lex_state = 25}, + [763] = {.lex_state = 25}, + [764] = {.lex_state = 25}, + [765] = {.lex_state = 25}, + [766] = {.lex_state = 25}, + [767] = {.lex_state = 25}, + [768] = {.lex_state = 24}, + [769] = {.lex_state = 1}, + [770] = {.lex_state = 25}, + [771] = {.lex_state = 24}, + [772] = {.lex_state = 1}, + [773] = {.lex_state = 1}, + [774] = {.lex_state = 26}, + [775] = {.lex_state = 26}, + [776] = {.lex_state = 24}, + [777] = {.lex_state = 25}, + [778] = {.lex_state = 25}, + [779] = {.lex_state = 25}, + [780] = {.lex_state = 1}, + [781] = {.lex_state = 25}, + [782] = {.lex_state = 0}, + [783] = {.lex_state = 25}, + [784] = {.lex_state = 26}, + [785] = {.lex_state = 25}, + [786] = {.lex_state = 26}, + [787] = {.lex_state = 25}, + [788] = {.lex_state = 25}, + [789] = {.lex_state = 25}, + [790] = {.lex_state = 26}, + [791] = {.lex_state = 25}, + [792] = {.lex_state = 25}, + [793] = {.lex_state = 25}, + [794] = {.lex_state = 25}, + [795] = {.lex_state = 24}, + [796] = {.lex_state = 25}, + [797] = {.lex_state = 24}, + [798] = {.lex_state = 24}, + [799] = {.lex_state = 25}, + [800] = {.lex_state = 25}, + [801] = {.lex_state = 25}, + [802] = {.lex_state = 25}, + [803] = {.lex_state = 25}, + [804] = {.lex_state = 25}, + [805] = {.lex_state = 25}, + [806] = {.lex_state = 25}, + [807] = {.lex_state = 25}, + [808] = {.lex_state = 25}, + [809] = {.lex_state = 25}, + [810] = {.lex_state = 25}, + [811] = {.lex_state = 25}, + [812] = {.lex_state = 25}, + [813] = {.lex_state = 25}, + [814] = {.lex_state = 24}, + [815] = {.lex_state = 25}, + [816] = {.lex_state = 25}, + [817] = {.lex_state = 25}, + [818] = {.lex_state = 25}, + [819] = {.lex_state = 28}, + [820] = {.lex_state = 28}, + [821] = {.lex_state = 28}, + [822] = {.lex_state = 24}, + [823] = {.lex_state = 26}, + [824] = {.lex_state = 26}, + [825] = {.lex_state = 25}, + [826] = {.lex_state = 25}, + [827] = {.lex_state = 25}, + [828] = {.lex_state = 26}, + [829] = {.lex_state = 26}, + [830] = {.lex_state = 1}, + [831] = {.lex_state = 26}, + [832] = {.lex_state = 25}, + [833] = {.lex_state = 26}, + [834] = {.lex_state = 26}, + [835] = {.lex_state = 26}, + [836] = {.lex_state = 25}, + [837] = {.lex_state = 28}, + [838] = {.lex_state = 26}, + [839] = {.lex_state = 26}, + [840] = {.lex_state = 26}, + [841] = {.lex_state = 26}, + [842] = {.lex_state = 24}, + [843] = {.lex_state = 26}, + [844] = {.lex_state = 26}, + [845] = {.lex_state = 26}, + [846] = {.lex_state = 26}, + [847] = {.lex_state = 26}, + [848] = {.lex_state = 26}, + [849] = {.lex_state = 26}, + [850] = {.lex_state = 26}, + [851] = {.lex_state = 26}, + [852] = {.lex_state = 26}, + [853] = {.lex_state = 26}, + [854] = {.lex_state = 26}, + [855] = {.lex_state = 1}, + [856] = {.lex_state = 26}, + [857] = {.lex_state = 26}, + [858] = {.lex_state = 26}, + [859] = {.lex_state = 25}, + [860] = {.lex_state = 26}, + [861] = {.lex_state = 26}, + [862] = {.lex_state = 26}, + [863] = {.lex_state = 26}, + [864] = {.lex_state = 26}, + [865] = {.lex_state = 26}, + [866] = {.lex_state = 26}, + [867] = {.lex_state = 24}, + [868] = {.lex_state = 26}, + [869] = {.lex_state = 26}, + [870] = {.lex_state = 26}, + [871] = {.lex_state = 26}, + [872] = {.lex_state = 26}, + [873] = {.lex_state = 26}, + [874] = {.lex_state = 26}, + [875] = {.lex_state = 26}, + [876] = {.lex_state = 26}, + [877] = {.lex_state = 25}, + [878] = {.lex_state = 26}, + [879] = {.lex_state = 26}, + [880] = {.lex_state = 26}, + [881] = {.lex_state = 26}, + [882] = {.lex_state = 26}, + [883] = {.lex_state = 1}, + [884] = {.lex_state = 1}, + [885] = {.lex_state = 1}, + [886] = {.lex_state = 1}, + [887] = {.lex_state = 27}, + [888] = {.lex_state = 26}, + [889] = {.lex_state = 26}, + [890] = {.lex_state = 26}, + [891] = {.lex_state = 27}, + [892] = {.lex_state = 1}, + [893] = {.lex_state = 1}, + [894] = {.lex_state = 1}, [895] = {.lex_state = 1}, [896] = {.lex_state = 1}, - [897] = {.lex_state = 1}, + [897] = {.lex_state = 27}, [898] = {.lex_state = 1}, [899] = {.lex_state = 1}, [900] = {.lex_state = 1}, @@ -4338,15 +5387,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [905] = {.lex_state = 1}, [906] = {.lex_state = 1}, [907] = {.lex_state = 1}, - [908] = {.lex_state = 1}, + [908] = {.lex_state = 27}, [909] = {.lex_state = 1}, [910] = {.lex_state = 1}, - [911] = {.lex_state = 1}, + [911] = {.lex_state = 26}, [912] = {.lex_state = 1}, [913] = {.lex_state = 1}, [914] = {.lex_state = 1}, [915] = {.lex_state = 1}, - [916] = {.lex_state = 1}, + [916] = {.lex_state = 26}, [917] = {.lex_state = 1}, [918] = {.lex_state = 1}, [919] = {.lex_state = 1}, @@ -4355,7 +5404,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [922] = {.lex_state = 1}, [923] = {.lex_state = 1}, [924] = {.lex_state = 1}, - [925] = {.lex_state = 1}, + [925] = {.lex_state = 26}, [926] = {.lex_state = 1}, [927] = {.lex_state = 1}, [928] = {.lex_state = 1}, @@ -4364,7 +5413,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [931] = {.lex_state = 1}, [932] = {.lex_state = 1}, [933] = {.lex_state = 1}, - [934] = {.lex_state = 1}, + [934] = {.lex_state = 26}, [935] = {.lex_state = 1}, [936] = {.lex_state = 1}, [937] = {.lex_state = 1}, @@ -4380,318 +5429,1166 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [947] = {.lex_state = 1}, [948] = {.lex_state = 1}, [949] = {.lex_state = 1}, - [950] = {.lex_state = 1}, - [951] = {.lex_state = 1}, - [952] = {.lex_state = 1}, - [953] = {.lex_state = 1}, - [954] = {.lex_state = 1}, - [955] = {.lex_state = 1}, - [956] = {.lex_state = 1}, + [950] = {.lex_state = 2}, + [951] = {.lex_state = 2}, + [952] = {.lex_state = 2}, + [953] = {.lex_state = 2}, + [954] = {.lex_state = 2}, + [955] = {.lex_state = 2}, + [956] = {.lex_state = 2}, [957] = {.lex_state = 1}, [958] = {.lex_state = 1}, [959] = {.lex_state = 1}, [960] = {.lex_state = 1}, - [961] = {.lex_state = 1}, - [962] = {.lex_state = 1}, + [961] = {.lex_state = 2}, + [962] = {.lex_state = 2}, [963] = {.lex_state = 1}, - [964] = {.lex_state = 1}, - [965] = {.lex_state = 1}, - [966] = {.lex_state = 1}, + [964] = {.lex_state = 2}, + [965] = {.lex_state = 2}, + [966] = {.lex_state = 2}, [967] = {.lex_state = 1}, [968] = {.lex_state = 1}, - [969] = {.lex_state = 1}, - [970] = {.lex_state = 1}, + [969] = {.lex_state = 28}, + [970] = {.lex_state = 2}, [971] = {.lex_state = 1}, [972] = {.lex_state = 1}, [973] = {.lex_state = 1}, - [974] = {.lex_state = 1}, + [974] = {.lex_state = 2}, [975] = {.lex_state = 1}, - [976] = {.lex_state = 1}, - [977] = {.lex_state = 1}, - [978] = {.lex_state = 1}, - [979] = {.lex_state = 0}, - [980] = {.lex_state = 0}, - [981] = {.lex_state = 0}, - [982] = {.lex_state = 19}, - [983] = {.lex_state = 19}, - [984] = {.lex_state = 19}, - [985] = {.lex_state = 19}, - [986] = {.lex_state = 19}, - [987] = {.lex_state = 19}, - [988] = {.lex_state = 19}, - [989] = {.lex_state = 19}, - [990] = {.lex_state = 19}, - [991] = {.lex_state = 19}, - [992] = {.lex_state = 19}, - [993] = {.lex_state = 19}, - [994] = {.lex_state = 19}, - [995] = {.lex_state = 19}, - [996] = {.lex_state = 19}, - [997] = {.lex_state = 19}, - [998] = {.lex_state = 19}, - [999] = {.lex_state = 19}, - [1000] = {.lex_state = 19}, - [1001] = {.lex_state = 19}, - [1002] = {.lex_state = 19}, - [1003] = {.lex_state = 19}, - [1004] = {.lex_state = 19}, - [1005] = {.lex_state = 19}, - [1006] = {.lex_state = 19}, - [1007] = {.lex_state = 19}, - [1008] = {.lex_state = 19}, - [1009] = {.lex_state = 19}, - [1010] = {.lex_state = 19}, - [1011] = {.lex_state = 19}, - [1012] = {.lex_state = 19}, - [1013] = {.lex_state = 19}, - [1014] = {.lex_state = 19}, - [1015] = {.lex_state = 19}, - [1016] = {.lex_state = 19}, - [1017] = {.lex_state = 19}, - [1018] = {.lex_state = 19}, - [1019] = {.lex_state = 19}, - [1020] = {.lex_state = 19}, - [1021] = {.lex_state = 19}, - [1022] = {.lex_state = 19}, - [1023] = {.lex_state = 19}, - [1024] = {.lex_state = 19}, - [1025] = {.lex_state = 19}, - [1026] = {.lex_state = 19}, - [1027] = {.lex_state = 19}, - [1028] = {.lex_state = 19}, - [1029] = {.lex_state = 19}, - [1030] = {.lex_state = 19}, - [1031] = {.lex_state = 19}, - [1032] = {.lex_state = 19}, - [1033] = {.lex_state = 0}, - [1034] = {.lex_state = 19}, - [1035] = {.lex_state = 19}, - [1036] = {.lex_state = 19}, - [1037] = {.lex_state = 19}, - [1038] = {.lex_state = 19}, - [1039] = {.lex_state = 19}, - [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 19}, - [1042] = {.lex_state = 19}, - [1043] = {.lex_state = 19}, - [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 19}, - [1046] = {.lex_state = 19}, - [1047] = {.lex_state = 19}, - [1048] = {.lex_state = 19}, - [1049] = {.lex_state = 19}, - [1050] = {.lex_state = 19}, - [1051] = {.lex_state = 19}, - [1052] = {.lex_state = 0}, - [1053] = {.lex_state = 0}, - [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 0}, - [1056] = {.lex_state = 0}, - [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 0}, - [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 19}, - [1061] = {.lex_state = 19}, - [1062] = {.lex_state = 19}, - [1063] = {.lex_state = 19}, - [1064] = {.lex_state = 19}, - [1065] = {.lex_state = 19}, - [1066] = {.lex_state = 19}, - [1067] = {.lex_state = 19}, - [1068] = {.lex_state = 19}, - [1069] = {.lex_state = 19}, - [1070] = {.lex_state = 19}, - [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 0}, - [1073] = {.lex_state = 19}, - [1074] = {.lex_state = 19}, - [1075] = {.lex_state = 19}, - [1076] = {.lex_state = 19}, - [1077] = {.lex_state = 19}, - [1078] = {.lex_state = 19}, - [1079] = {.lex_state = 19}, - [1080] = {.lex_state = 19}, - [1081] = {.lex_state = 19}, - [1082] = {.lex_state = 19}, - [1083] = {.lex_state = 19}, - [1084] = {.lex_state = 19}, - [1085] = {.lex_state = 19}, - [1086] = {.lex_state = 19}, - [1087] = {.lex_state = 19}, - [1088] = {.lex_state = 19}, - [1089] = {.lex_state = 19}, - [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 19}, - [1092] = {.lex_state = 19}, - [1093] = {.lex_state = 19}, - [1094] = {.lex_state = 19}, - [1095] = {.lex_state = 19}, - [1096] = {.lex_state = 19}, - [1097] = {.lex_state = 19}, - [1098] = {.lex_state = 19}, - [1099] = {.lex_state = 19}, - [1100] = {.lex_state = 19}, - [1101] = {.lex_state = 19}, - [1102] = {.lex_state = 19}, - [1103] = {.lex_state = 19}, - [1104] = {.lex_state = 19}, - [1105] = {.lex_state = 19}, - [1106] = {.lex_state = 19}, - [1107] = {.lex_state = 19}, - [1108] = {.lex_state = 19}, - [1109] = {.lex_state = 19}, - [1110] = {.lex_state = 19}, - [1111] = {.lex_state = 19}, - [1112] = {.lex_state = 19}, - [1113] = {.lex_state = 19}, - [1114] = {.lex_state = 19}, - [1115] = {.lex_state = 19}, - [1116] = {.lex_state = 19}, - [1117] = {.lex_state = 19}, - [1118] = {.lex_state = 19}, - [1119] = {.lex_state = 0}, - [1120] = {.lex_state = 19}, - [1121] = {.lex_state = 19}, - [1122] = {.lex_state = 19}, - [1123] = {.lex_state = 19}, - [1124] = {.lex_state = 19}, - [1125] = {.lex_state = 19}, - [1126] = {.lex_state = 0}, - [1127] = {.lex_state = 19}, - [1128] = {.lex_state = 19}, - [1129] = {.lex_state = 19}, - [1130] = {.lex_state = 19}, - [1131] = {.lex_state = 19}, - [1132] = {.lex_state = 19}, - [1133] = {.lex_state = 19}, - [1134] = {.lex_state = 19}, - [1135] = {.lex_state = 19}, - [1136] = {.lex_state = 19}, - [1137] = {.lex_state = 19}, - [1138] = {.lex_state = 19}, - [1139] = {.lex_state = 19}, - [1140] = {.lex_state = 19}, - [1141] = {.lex_state = 19}, - [1142] = {.lex_state = 19}, - [1143] = {.lex_state = 19}, - [1144] = {.lex_state = 19}, - [1145] = {.lex_state = 19}, - [1146] = {.lex_state = 19}, - [1147] = {.lex_state = 19}, - [1148] = {.lex_state = 19}, - [1149] = {.lex_state = 19}, - [1150] = {.lex_state = 19}, - [1151] = {.lex_state = 19}, - [1152] = {.lex_state = 19}, - [1153] = {.lex_state = 19}, - [1154] = {.lex_state = 19}, - [1155] = {.lex_state = 19}, - [1156] = {.lex_state = 19}, - [1157] = {.lex_state = 19}, - [1158] = {.lex_state = 19}, - [1159] = {.lex_state = 19}, - [1160] = {.lex_state = 19}, - [1161] = {.lex_state = 19}, - [1162] = {.lex_state = 19}, - [1163] = {.lex_state = 19}, - [1164] = {.lex_state = 19}, - [1165] = {.lex_state = 19}, - [1166] = {.lex_state = 19}, - [1167] = {.lex_state = 19}, - [1168] = {.lex_state = 19}, - [1169] = {.lex_state = 19}, - [1170] = {.lex_state = 19}, - [1171] = {.lex_state = 19}, - [1172] = {.lex_state = 0}, - [1173] = {.lex_state = 19}, - [1174] = {.lex_state = 19}, - [1175] = {.lex_state = 19}, - [1176] = {.lex_state = 19}, - [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 19}, - [1179] = {.lex_state = 19}, - [1180] = {.lex_state = 19}, - [1181] = {.lex_state = 19}, - [1182] = {.lex_state = 19}, - [1183] = {.lex_state = 19}, - [1184] = {.lex_state = 19}, - [1185] = {.lex_state = 19}, - [1186] = {.lex_state = 19}, - [1187] = {.lex_state = 19}, - [1188] = {.lex_state = 19}, - [1189] = {.lex_state = 19}, - [1190] = {.lex_state = 19}, - [1191] = {.lex_state = 19}, - [1192] = {.lex_state = 0}, - [1193] = {.lex_state = 19}, - [1194] = {.lex_state = 19}, - [1195] = {.lex_state = 19}, - [1196] = {.lex_state = 19}, - [1197] = {.lex_state = 19}, - [1198] = {.lex_state = 19}, - [1199] = {.lex_state = 19}, - [1200] = {.lex_state = 19}, - [1201] = {.lex_state = 0}, - [1202] = {.lex_state = 19}, - [1203] = {.lex_state = 19}, - [1204] = {.lex_state = 19}, - [1205] = {.lex_state = 19}, - [1206] = {.lex_state = 19}, - [1207] = {.lex_state = 19}, - [1208] = {.lex_state = 19}, - [1209] = {.lex_state = 19}, - [1210] = {.lex_state = 19}, - [1211] = {.lex_state = 19}, - [1212] = {.lex_state = 19}, - [1213] = {.lex_state = 19}, - [1214] = {.lex_state = 19}, - [1215] = {.lex_state = 19}, - [1216] = {.lex_state = 19}, - [1217] = {.lex_state = 19}, - [1218] = {.lex_state = 19}, - [1219] = {.lex_state = 19}, - [1220] = {.lex_state = 19}, - [1221] = {.lex_state = 19}, - [1222] = {.lex_state = 19}, - [1223] = {.lex_state = 19}, - [1224] = {.lex_state = 19}, - [1225] = {.lex_state = 19}, - [1226] = {.lex_state = 19}, - [1227] = {.lex_state = 19}, - [1228] = {.lex_state = 19}, - [1229] = {.lex_state = 19}, - [1230] = {.lex_state = 19}, - [1231] = {.lex_state = 19}, - [1232] = {.lex_state = 19}, - [1233] = {.lex_state = 19}, - [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 19}, - [1236] = {.lex_state = 19}, - [1237] = {.lex_state = 19}, - [1238] = {.lex_state = 19}, - [1239] = {.lex_state = 19}, - [1240] = {.lex_state = 19}, - [1241] = {.lex_state = 19}, - [1242] = {.lex_state = 19}, - [1243] = {.lex_state = 19}, - [1244] = {.lex_state = 19}, - [1245] = {.lex_state = 19}, - [1246] = {.lex_state = 19}, - [1247] = {.lex_state = 19}, - [1248] = {.lex_state = 19}, - [1249] = {.lex_state = 19}, - [1250] = {.lex_state = 19}, - [1251] = {.lex_state = 19}, - [1252] = {.lex_state = 19}, - [1253] = {.lex_state = 19}, - [1254] = {.lex_state = 19}, + [976] = {.lex_state = 28}, + [977] = {.lex_state = 28}, + [978] = {.lex_state = 28}, + [979] = {.lex_state = 1}, + [980] = {.lex_state = 28}, + [981] = {.lex_state = 2}, + [982] = {.lex_state = 2}, + [983] = {.lex_state = 28}, + [984] = {.lex_state = 2}, + [985] = {.lex_state = 28}, + [986] = {.lex_state = 2}, + [987] = {.lex_state = 2}, + [988] = {.lex_state = 28}, + [989] = {.lex_state = 2}, + [990] = {.lex_state = 2}, + [991] = {.lex_state = 2}, + [992] = {.lex_state = 2}, + [993] = {.lex_state = 2}, + [994] = {.lex_state = 2}, + [995] = {.lex_state = 1}, + [996] = {.lex_state = 1}, + [997] = {.lex_state = 1}, + [998] = {.lex_state = 28}, + [999] = {.lex_state = 28}, + [1000] = {.lex_state = 1}, + [1001] = {.lex_state = 1}, + [1002] = {.lex_state = 1}, + [1003] = {.lex_state = 5}, + [1004] = {.lex_state = 1}, + [1005] = {.lex_state = 5}, + [1006] = {.lex_state = 1}, + [1007] = {.lex_state = 1}, + [1008] = {.lex_state = 1}, + [1009] = {.lex_state = 1}, + [1010] = {.lex_state = 1}, + [1011] = {.lex_state = 1}, + [1012] = {.lex_state = 28}, + [1013] = {.lex_state = 28}, + [1014] = {.lex_state = 28}, + [1015] = {.lex_state = 28}, + [1016] = {.lex_state = 28}, + [1017] = {.lex_state = 28}, + [1018] = {.lex_state = 28}, + [1019] = {.lex_state = 28}, + [1020] = {.lex_state = 28}, + [1021] = {.lex_state = 28}, + [1022] = {.lex_state = 28}, + [1023] = {.lex_state = 28}, + [1024] = {.lex_state = 28}, + [1025] = {.lex_state = 28}, + [1026] = {.lex_state = 28}, + [1027] = {.lex_state = 28}, + [1028] = {.lex_state = 28}, + [1029] = {.lex_state = 28}, + [1030] = {.lex_state = 1}, + [1031] = {.lex_state = 28}, + [1032] = {.lex_state = 28}, + [1033] = {.lex_state = 5}, + [1034] = {.lex_state = 5}, + [1035] = {.lex_state = 5}, + [1036] = {.lex_state = 5}, + [1037] = {.lex_state = 5}, + [1038] = {.lex_state = 5}, + [1039] = {.lex_state = 1}, + [1040] = {.lex_state = 5}, + [1041] = {.lex_state = 5}, + [1042] = {.lex_state = 1}, + [1043] = {.lex_state = 5}, + [1044] = {.lex_state = 5}, + [1045] = {.lex_state = 5}, + [1046] = {.lex_state = 5}, + [1047] = {.lex_state = 5}, + [1048] = {.lex_state = 5}, + [1049] = {.lex_state = 5}, + [1050] = {.lex_state = 5}, + [1051] = {.lex_state = 5}, + [1052] = {.lex_state = 1}, + [1053] = {.lex_state = 27}, + [1054] = {.lex_state = 27}, + [1055] = {.lex_state = 27}, + [1056] = {.lex_state = 27}, + [1057] = {.lex_state = 1}, + [1058] = {.lex_state = 27}, + [1059] = {.lex_state = 27}, + [1060] = {.lex_state = 27}, + [1061] = {.lex_state = 27}, + [1062] = {.lex_state = 27}, + [1063] = {.lex_state = 1}, + [1064] = {.lex_state = 27}, + [1065] = {.lex_state = 27}, + [1066] = {.lex_state = 27}, + [1067] = {.lex_state = 27}, + [1068] = {.lex_state = 27}, + [1069] = {.lex_state = 27}, + [1070] = {.lex_state = 27}, + [1071] = {.lex_state = 27}, + [1072] = {.lex_state = 1}, + [1073] = {.lex_state = 1}, + [1074] = {.lex_state = 1}, + [1075] = {.lex_state = 27}, + [1076] = {.lex_state = 5}, + [1077] = {.lex_state = 5}, + [1078] = {.lex_state = 5}, + [1079] = {.lex_state = 5}, + [1080] = {.lex_state = 5}, + [1081] = {.lex_state = 5}, + [1082] = {.lex_state = 5}, + [1083] = {.lex_state = 5}, + [1084] = {.lex_state = 5}, + [1085] = {.lex_state = 5}, + [1086] = {.lex_state = 5}, + [1087] = {.lex_state = 5}, + [1088] = {.lex_state = 5}, + [1089] = {.lex_state = 5}, + [1090] = {.lex_state = 5}, + [1091] = {.lex_state = 5}, + [1092] = {.lex_state = 5}, + [1093] = {.lex_state = 5}, + [1094] = {.lex_state = 5}, + [1095] = {.lex_state = 5}, + [1096] = {.lex_state = 5}, + [1097] = {.lex_state = 5}, + [1098] = {.lex_state = 5}, + [1099] = {.lex_state = 5}, + [1100] = {.lex_state = 5}, + [1101] = {.lex_state = 5}, + [1102] = {.lex_state = 5}, + [1103] = {.lex_state = 5}, + [1104] = {.lex_state = 5}, + [1105] = {.lex_state = 5}, + [1106] = {.lex_state = 5}, + [1107] = {.lex_state = 5}, + [1108] = {.lex_state = 5}, + [1109] = {.lex_state = 5}, + [1110] = {.lex_state = 5}, + [1111] = {.lex_state = 5}, + [1112] = {.lex_state = 5}, + [1113] = {.lex_state = 5}, + [1114] = {.lex_state = 5}, + [1115] = {.lex_state = 5}, + [1116] = {.lex_state = 5}, + [1117] = {.lex_state = 5}, + [1118] = {.lex_state = 5}, + [1119] = {.lex_state = 5}, + [1120] = {.lex_state = 5}, + [1121] = {.lex_state = 5}, + [1122] = {.lex_state = 5}, + [1123] = {.lex_state = 5}, + [1124] = {.lex_state = 5}, + [1125] = {.lex_state = 5}, + [1126] = {.lex_state = 5}, + [1127] = {.lex_state = 5}, + [1128] = {.lex_state = 5}, + [1129] = {.lex_state = 5}, + [1130] = {.lex_state = 5}, + [1131] = {.lex_state = 5}, + [1132] = {.lex_state = 5}, + [1133] = {.lex_state = 5}, + [1134] = {.lex_state = 5}, + [1135] = {.lex_state = 5}, + [1136] = {.lex_state = 5}, + [1137] = {.lex_state = 5}, + [1138] = {.lex_state = 5}, + [1139] = {.lex_state = 5}, + [1140] = {.lex_state = 5}, + [1141] = {.lex_state = 5}, + [1142] = {.lex_state = 5}, + [1143] = {.lex_state = 5}, + [1144] = {.lex_state = 5}, + [1145] = {.lex_state = 5}, + [1146] = {.lex_state = 5}, + [1147] = {.lex_state = 5}, + [1148] = {.lex_state = 5}, + [1149] = {.lex_state = 5}, + [1150] = {.lex_state = 5}, + [1151] = {.lex_state = 5}, + [1152] = {.lex_state = 5}, + [1153] = {.lex_state = 5}, + [1154] = {.lex_state = 5}, + [1155] = {.lex_state = 5}, + [1156] = {.lex_state = 5}, + [1157] = {.lex_state = 5}, + [1158] = {.lex_state = 5}, + [1159] = {.lex_state = 5}, + [1160] = {.lex_state = 5}, + [1161] = {.lex_state = 5}, + [1162] = {.lex_state = 5}, + [1163] = {.lex_state = 5}, + [1164] = {.lex_state = 5}, + [1165] = {.lex_state = 5}, + [1166] = {.lex_state = 5}, + [1167] = {.lex_state = 5}, + [1168] = {.lex_state = 5}, + [1169] = {.lex_state = 5}, + [1170] = {.lex_state = 5}, + [1171] = {.lex_state = 5}, + [1172] = {.lex_state = 5}, + [1173] = {.lex_state = 5}, + [1174] = {.lex_state = 5}, + [1175] = {.lex_state = 5}, + [1176] = {.lex_state = 5}, + [1177] = {.lex_state = 5}, + [1178] = {.lex_state = 5}, + [1179] = {.lex_state = 5}, + [1180] = {.lex_state = 5}, + [1181] = {.lex_state = 5}, + [1182] = {.lex_state = 5}, + [1183] = {.lex_state = 5}, + [1184] = {.lex_state = 5}, + [1185] = {.lex_state = 5}, + [1186] = {.lex_state = 5}, + [1187] = {.lex_state = 5}, + [1188] = {.lex_state = 5}, + [1189] = {.lex_state = 5}, + [1190] = {.lex_state = 5}, + [1191] = {.lex_state = 5}, + [1192] = {.lex_state = 5}, + [1193] = {.lex_state = 5}, + [1194] = {.lex_state = 5}, + [1195] = {.lex_state = 5}, + [1196] = {.lex_state = 5}, + [1197] = {.lex_state = 5}, + [1198] = {.lex_state = 5}, + [1199] = {.lex_state = 5}, + [1200] = {.lex_state = 5}, + [1201] = {.lex_state = 5}, + [1202] = {.lex_state = 5}, + [1203] = {.lex_state = 5}, + [1204] = {.lex_state = 5}, + [1205] = {.lex_state = 5}, + [1206] = {.lex_state = 5}, + [1207] = {.lex_state = 5}, + [1208] = {.lex_state = 5}, + [1209] = {.lex_state = 5}, + [1210] = {.lex_state = 5}, + [1211] = {.lex_state = 5}, + [1212] = {.lex_state = 5}, + [1213] = {.lex_state = 5}, + [1214] = {.lex_state = 5}, + [1215] = {.lex_state = 5}, + [1216] = {.lex_state = 5}, + [1217] = {.lex_state = 5}, + [1218] = {.lex_state = 5}, + [1219] = {.lex_state = 5}, + [1220] = {.lex_state = 5}, + [1221] = {.lex_state = 5}, + [1222] = {.lex_state = 5}, + [1223] = {.lex_state = 5}, + [1224] = {.lex_state = 5}, + [1225] = {.lex_state = 5}, + [1226] = {.lex_state = 5}, + [1227] = {.lex_state = 5}, + [1228] = {.lex_state = 5}, + [1229] = {.lex_state = 5}, + [1230] = {.lex_state = 5}, + [1231] = {.lex_state = 5}, + [1232] = {.lex_state = 5}, + [1233] = {.lex_state = 5}, + [1234] = {.lex_state = 5}, + [1235] = {.lex_state = 5}, + [1236] = {.lex_state = 5}, + [1237] = {.lex_state = 5}, + [1238] = {.lex_state = 5}, + [1239] = {.lex_state = 5}, + [1240] = {.lex_state = 5}, + [1241] = {.lex_state = 5}, + [1242] = {.lex_state = 5}, + [1243] = {.lex_state = 5}, + [1244] = {.lex_state = 5}, + [1245] = {.lex_state = 5}, + [1246] = {.lex_state = 5}, + [1247] = {.lex_state = 5}, + [1248] = {.lex_state = 5}, + [1249] = {.lex_state = 5}, + [1250] = {.lex_state = 5}, + [1251] = {.lex_state = 5}, + [1252] = {.lex_state = 5}, + [1253] = {.lex_state = 5}, + [1254] = {.lex_state = 5}, + [1255] = {.lex_state = 5}, + [1256] = {.lex_state = 5}, + [1257] = {.lex_state = 5}, + [1258] = {.lex_state = 5}, + [1259] = {.lex_state = 5}, + [1260] = {.lex_state = 5}, + [1261] = {.lex_state = 5}, + [1262] = {.lex_state = 5}, + [1263] = {.lex_state = 5}, + [1264] = {.lex_state = 5}, + [1265] = {.lex_state = 5}, + [1266] = {.lex_state = 5}, + [1267] = {.lex_state = 5}, + [1268] = {.lex_state = 5}, + [1269] = {.lex_state = 5}, + [1270] = {.lex_state = 5}, + [1271] = {.lex_state = 5}, + [1272] = {.lex_state = 5}, + [1273] = {.lex_state = 5}, + [1274] = {.lex_state = 5}, + [1275] = {.lex_state = 5}, + [1276] = {.lex_state = 5}, + [1277] = {.lex_state = 5}, + [1278] = {.lex_state = 5}, + [1279] = {.lex_state = 5}, + [1280] = {.lex_state = 5}, + [1281] = {.lex_state = 5}, + [1282] = {.lex_state = 5}, + [1283] = {.lex_state = 5}, + [1284] = {.lex_state = 5}, + [1285] = {.lex_state = 5}, + [1286] = {.lex_state = 5}, + [1287] = {.lex_state = 5}, + [1288] = {.lex_state = 5}, + [1289] = {.lex_state = 5}, + [1290] = {.lex_state = 5}, + [1291] = {.lex_state = 5}, + [1292] = {.lex_state = 5}, + [1293] = {.lex_state = 5}, + [1294] = {.lex_state = 5}, + [1295] = {.lex_state = 5}, + [1296] = {.lex_state = 5}, + [1297] = {.lex_state = 5}, + [1298] = {.lex_state = 5}, + [1299] = {.lex_state = 5}, + [1300] = {.lex_state = 5}, + [1301] = {.lex_state = 5}, + [1302] = {.lex_state = 5}, + [1303] = {.lex_state = 5}, + [1304] = {.lex_state = 5}, + [1305] = {.lex_state = 5}, + [1306] = {.lex_state = 5}, + [1307] = {.lex_state = 5}, + [1308] = {.lex_state = 5}, + [1309] = {.lex_state = 5}, + [1310] = {.lex_state = 5}, + [1311] = {.lex_state = 5}, + [1312] = {.lex_state = 5}, + [1313] = {.lex_state = 5}, + [1314] = {.lex_state = 5}, + [1315] = {.lex_state = 5}, + [1316] = {.lex_state = 5}, + [1317] = {.lex_state = 5}, + [1318] = {.lex_state = 5}, + [1319] = {.lex_state = 5}, + [1320] = {.lex_state = 5}, + [1321] = {.lex_state = 5}, + [1322] = {.lex_state = 5}, + [1323] = {.lex_state = 5}, + [1324] = {.lex_state = 5}, + [1325] = {.lex_state = 5}, + [1326] = {.lex_state = 5}, + [1327] = {.lex_state = 5}, + [1328] = {.lex_state = 5}, + [1329] = {.lex_state = 1}, + [1330] = {.lex_state = 5}, + [1331] = {.lex_state = 5}, + [1332] = {.lex_state = 5}, + [1333] = {.lex_state = 5}, + [1334] = {.lex_state = 5}, + [1335] = {.lex_state = 5}, + [1336] = {.lex_state = 5}, + [1337] = {.lex_state = 5}, + [1338] = {.lex_state = 5}, + [1339] = {.lex_state = 5}, + [1340] = {.lex_state = 5}, + [1341] = {.lex_state = 5}, + [1342] = {.lex_state = 5}, + [1343] = {.lex_state = 1}, + [1344] = {.lex_state = 1}, + [1345] = {.lex_state = 1}, + [1346] = {.lex_state = 5}, + [1347] = {.lex_state = 5}, + [1348] = {.lex_state = 5}, + [1349] = {.lex_state = 5}, + [1350] = {.lex_state = 5}, + [1351] = {.lex_state = 5}, + [1352] = {.lex_state = 5}, + [1353] = {.lex_state = 5}, + [1354] = {.lex_state = 5}, + [1355] = {.lex_state = 5}, + [1356] = {.lex_state = 5}, + [1357] = {.lex_state = 5}, + [1358] = {.lex_state = 5}, + [1359] = {.lex_state = 5}, + [1360] = {.lex_state = 5}, + [1361] = {.lex_state = 5}, + [1362] = {.lex_state = 5}, + [1363] = {.lex_state = 5}, + [1364] = {.lex_state = 5}, + [1365] = {.lex_state = 5}, + [1366] = {.lex_state = 5}, + [1367] = {.lex_state = 5}, + [1368] = {.lex_state = 5}, + [1369] = {.lex_state = 5}, + [1370] = {.lex_state = 5}, + [1371] = {.lex_state = 5}, + [1372] = {.lex_state = 5}, + [1373] = {.lex_state = 5}, + [1374] = {.lex_state = 5}, + [1375] = {.lex_state = 5}, + [1376] = {.lex_state = 5}, + [1377] = {.lex_state = 5}, + [1378] = {.lex_state = 5}, + [1379] = {.lex_state = 5}, + [1380] = {.lex_state = 5}, + [1381] = {.lex_state = 5}, + [1382] = {.lex_state = 5}, + [1383] = {.lex_state = 5}, + [1384] = {.lex_state = 5}, + [1385] = {.lex_state = 5}, + [1386] = {.lex_state = 5}, + [1387] = {.lex_state = 5}, + [1388] = {.lex_state = 5}, + [1389] = {.lex_state = 5}, + [1390] = {.lex_state = 5}, + [1391] = {.lex_state = 5}, + [1392] = {.lex_state = 5}, + [1393] = {.lex_state = 5}, + [1394] = {.lex_state = 5}, + [1395] = {.lex_state = 5}, + [1396] = {.lex_state = 5}, + [1397] = {.lex_state = 5}, + [1398] = {.lex_state = 5}, + [1399] = {.lex_state = 5}, + [1400] = {.lex_state = 5}, + [1401] = {.lex_state = 5}, + [1402] = {.lex_state = 5}, + [1403] = {.lex_state = 5}, + [1404] = {.lex_state = 5}, + [1405] = {.lex_state = 5}, + [1406] = {.lex_state = 5}, + [1407] = {.lex_state = 5}, + [1408] = {.lex_state = 5}, + [1409] = {.lex_state = 5}, + [1410] = {.lex_state = 5}, + [1411] = {.lex_state = 5}, + [1412] = {.lex_state = 5}, + [1413] = {.lex_state = 5}, + [1414] = {.lex_state = 5}, + [1415] = {.lex_state = 5}, + [1416] = {.lex_state = 5}, + [1417] = {.lex_state = 5}, + [1418] = {.lex_state = 5}, + [1419] = {.lex_state = 5}, + [1420] = {.lex_state = 5}, + [1421] = {.lex_state = 5}, + [1422] = {.lex_state = 5}, + [1423] = {.lex_state = 5}, + [1424] = {.lex_state = 5}, + [1425] = {.lex_state = 5}, + [1426] = {.lex_state = 5}, + [1427] = {.lex_state = 5}, + [1428] = {.lex_state = 5}, + [1429] = {.lex_state = 5}, + [1430] = {.lex_state = 5}, + [1431] = {.lex_state = 5}, + [1432] = {.lex_state = 5}, + [1433] = {.lex_state = 5}, + [1434] = {.lex_state = 5}, + [1435] = {.lex_state = 5}, + [1436] = {.lex_state = 5}, + [1437] = {.lex_state = 5}, + [1438] = {.lex_state = 5}, + [1439] = {.lex_state = 5}, + [1440] = {.lex_state = 5}, + [1441] = {.lex_state = 5}, + [1442] = {.lex_state = 5}, + [1443] = {.lex_state = 5}, + [1444] = {.lex_state = 5}, + [1445] = {.lex_state = 5}, + [1446] = {.lex_state = 5}, + [1447] = {.lex_state = 5}, + [1448] = {.lex_state = 5}, + [1449] = {.lex_state = 5}, + [1450] = {.lex_state = 5}, + [1451] = {.lex_state = 5}, + [1452] = {.lex_state = 5}, + [1453] = {.lex_state = 5}, + [1454] = {.lex_state = 5}, + [1455] = {.lex_state = 5}, + [1456] = {.lex_state = 5}, + [1457] = {.lex_state = 5}, + [1458] = {.lex_state = 5}, + [1459] = {.lex_state = 5}, + [1460] = {.lex_state = 5}, + [1461] = {.lex_state = 5}, + [1462] = {.lex_state = 5}, + [1463] = {.lex_state = 5}, + [1464] = {.lex_state = 5}, + [1465] = {.lex_state = 5}, + [1466] = {.lex_state = 5}, + [1467] = {.lex_state = 5}, + [1468] = {.lex_state = 5}, + [1469] = {.lex_state = 5}, + [1470] = {.lex_state = 5}, + [1471] = {.lex_state = 5}, + [1472] = {.lex_state = 5}, + [1473] = {.lex_state = 5}, + [1474] = {.lex_state = 5}, + [1475] = {.lex_state = 5}, + [1476] = {.lex_state = 5}, + [1477] = {.lex_state = 5}, + [1478] = {.lex_state = 5}, + [1479] = {.lex_state = 5}, + [1480] = {.lex_state = 5}, + [1481] = {.lex_state = 5}, + [1482] = {.lex_state = 5}, + [1483] = {.lex_state = 5}, + [1484] = {.lex_state = 5}, + [1485] = {.lex_state = 5}, + [1486] = {.lex_state = 5}, + [1487] = {.lex_state = 5}, + [1488] = {.lex_state = 5}, + [1489] = {.lex_state = 5}, + [1490] = {.lex_state = 5}, + [1491] = {.lex_state = 5}, + [1492] = {.lex_state = 5}, + [1493] = {.lex_state = 5}, + [1494] = {.lex_state = 5}, + [1495] = {.lex_state = 5}, + [1496] = {.lex_state = 5}, + [1497] = {.lex_state = 5}, + [1498] = {.lex_state = 5}, + [1499] = {.lex_state = 5}, + [1500] = {.lex_state = 5}, + [1501] = {.lex_state = 5}, + [1502] = {.lex_state = 27}, + [1503] = {.lex_state = 5}, + [1504] = {.lex_state = 5}, + [1505] = {.lex_state = 5}, + [1506] = {.lex_state = 5}, + [1507] = {.lex_state = 5}, + [1508] = {.lex_state = 5}, + [1509] = {.lex_state = 5}, + [1510] = {.lex_state = 4}, + [1511] = {.lex_state = 4}, + [1512] = {.lex_state = 4}, + [1513] = {.lex_state = 4}, + [1514] = {.lex_state = 4}, + [1515] = {.lex_state = 4}, + [1516] = {.lex_state = 4}, + [1517] = {.lex_state = 4}, + [1518] = {.lex_state = 4}, + [1519] = {.lex_state = 4}, + [1520] = {.lex_state = 4}, + [1521] = {.lex_state = 4}, + [1522] = {.lex_state = 4}, + [1523] = {.lex_state = 4}, + [1524] = {.lex_state = 4}, + [1525] = {.lex_state = 4}, + [1526] = {.lex_state = 4}, + [1527] = {.lex_state = 4}, + [1528] = {.lex_state = 4}, + [1529] = {.lex_state = 4}, + [1530] = {.lex_state = 4}, + [1531] = {.lex_state = 4}, + [1532] = {.lex_state = 4}, + [1533] = {.lex_state = 3}, + [1534] = {.lex_state = 3}, + [1535] = {.lex_state = 3}, + [1536] = {.lex_state = 3}, + [1537] = {.lex_state = 3}, + [1538] = {.lex_state = 3}, + [1539] = {.lex_state = 3}, + [1540] = {.lex_state = 3}, + [1541] = {.lex_state = 3}, + [1542] = {.lex_state = 3}, + [1543] = {.lex_state = 3}, + [1544] = {.lex_state = 3}, + [1545] = {.lex_state = 3}, + [1546] = {.lex_state = 3}, + [1547] = {.lex_state = 3}, + [1548] = {.lex_state = 3}, + [1549] = {.lex_state = 3}, + [1550] = {.lex_state = 3}, + [1551] = {.lex_state = 3}, + [1552] = {.lex_state = 3}, + [1553] = {.lex_state = 3}, + [1554] = {.lex_state = 3}, + [1555] = {.lex_state = 3}, + [1556] = {.lex_state = 3}, + [1557] = {.lex_state = 3}, + [1558] = {.lex_state = 3}, + [1559] = {.lex_state = 3}, + [1560] = {.lex_state = 3}, + [1561] = {.lex_state = 3}, + [1562] = {.lex_state = 3}, + [1563] = {.lex_state = 3}, + [1564] = {.lex_state = 3}, + [1565] = {.lex_state = 3}, + [1566] = {.lex_state = 3}, + [1567] = {.lex_state = 3}, + [1568] = {.lex_state = 3}, + [1569] = {.lex_state = 3}, + [1570] = {.lex_state = 3}, + [1571] = {.lex_state = 3}, + [1572] = {.lex_state = 3}, + [1573] = {.lex_state = 3}, + [1574] = {.lex_state = 3}, + [1575] = {.lex_state = 3}, + [1576] = {.lex_state = 3}, + [1577] = {.lex_state = 3}, + [1578] = {.lex_state = 3}, + [1579] = {.lex_state = 3}, + [1580] = {.lex_state = 3}, + [1581] = {.lex_state = 3}, + [1582] = {.lex_state = 3}, + [1583] = {.lex_state = 3}, + [1584] = {.lex_state = 3}, + [1585] = {.lex_state = 3}, + [1586] = {.lex_state = 3}, + [1587] = {.lex_state = 3}, + [1588] = {.lex_state = 3}, + [1589] = {.lex_state = 3}, + [1590] = {.lex_state = 3}, + [1591] = {.lex_state = 3}, + [1592] = {.lex_state = 3}, + [1593] = {.lex_state = 3}, + [1594] = {.lex_state = 3}, + [1595] = {.lex_state = 3}, + [1596] = {.lex_state = 3}, + [1597] = {.lex_state = 3}, + [1598] = {.lex_state = 3}, + [1599] = {.lex_state = 3}, + [1600] = {.lex_state = 3}, + [1601] = {.lex_state = 3}, + [1602] = {.lex_state = 3}, + [1603] = {.lex_state = 3}, + [1604] = {.lex_state = 3}, + [1605] = {.lex_state = 3}, + [1606] = {.lex_state = 3}, + [1607] = {.lex_state = 3}, + [1608] = {.lex_state = 3}, + [1609] = {.lex_state = 3}, + [1610] = {.lex_state = 3}, + [1611] = {.lex_state = 3}, + [1612] = {.lex_state = 3}, + [1613] = {.lex_state = 3}, + [1614] = {.lex_state = 3}, + [1615] = {.lex_state = 3}, + [1616] = {.lex_state = 3}, + [1617] = {.lex_state = 3}, + [1618] = {.lex_state = 3}, + [1619] = {.lex_state = 3}, + [1620] = {.lex_state = 3}, + [1621] = {.lex_state = 3}, + [1622] = {.lex_state = 3}, + [1623] = {.lex_state = 3}, + [1624] = {.lex_state = 3}, + [1625] = {.lex_state = 3}, + [1626] = {.lex_state = 3}, + [1627] = {.lex_state = 3}, + [1628] = {.lex_state = 3}, + [1629] = {.lex_state = 3}, + [1630] = {.lex_state = 3}, + [1631] = {.lex_state = 3}, + [1632] = {.lex_state = 3}, + [1633] = {.lex_state = 3}, + [1634] = {.lex_state = 3}, + [1635] = {.lex_state = 3}, + [1636] = {.lex_state = 3}, + [1637] = {.lex_state = 3}, + [1638] = {.lex_state = 7}, + [1639] = {.lex_state = 7}, + [1640] = {.lex_state = 7}, + [1641] = {.lex_state = 7}, + [1642] = {.lex_state = 7}, + [1643] = {.lex_state = 7}, + [1644] = {.lex_state = 2}, + [1645] = {.lex_state = 2}, + [1646] = {.lex_state = 2}, + [1647] = {.lex_state = 2}, + [1648] = {.lex_state = 2}, + [1649] = {.lex_state = 2}, + [1650] = {.lex_state = 2}, + [1651] = {.lex_state = 2}, + [1652] = {.lex_state = 2}, + [1653] = {.lex_state = 2}, + [1654] = {.lex_state = 2}, + [1655] = {.lex_state = 2}, + [1656] = {.lex_state = 2}, + [1657] = {.lex_state = 2}, + [1658] = {.lex_state = 2}, + [1659] = {.lex_state = 2}, + [1660] = {.lex_state = 2}, + [1661] = {.lex_state = 2}, + [1662] = {.lex_state = 5}, + [1663] = {.lex_state = 2}, + [1664] = {.lex_state = 5}, + [1665] = {.lex_state = 2}, + [1666] = {.lex_state = 2}, + [1667] = {.lex_state = 2}, + [1668] = {.lex_state = 2}, + [1669] = {.lex_state = 2}, + [1670] = {.lex_state = 2}, + [1671] = {.lex_state = 2}, + [1672] = {.lex_state = 2}, + [1673] = {.lex_state = 5}, + [1674] = {.lex_state = 2}, + [1675] = {.lex_state = 2}, + [1676] = {.lex_state = 5}, + [1677] = {.lex_state = 2}, + [1678] = {.lex_state = 2}, + [1679] = {.lex_state = 2}, + [1680] = {.lex_state = 2}, + [1681] = {.lex_state = 5}, + [1682] = {.lex_state = 2}, + [1683] = {.lex_state = 5}, + [1684] = {.lex_state = 27}, + [1685] = {.lex_state = 27}, + [1686] = {.lex_state = 27}, + [1687] = {.lex_state = 27}, + [1688] = {.lex_state = 27}, + [1689] = {.lex_state = 27}, + [1690] = {.lex_state = 27}, + [1691] = {.lex_state = 27}, + [1692] = {.lex_state = 27}, + [1693] = {.lex_state = 27}, + [1694] = {.lex_state = 27}, + [1695] = {.lex_state = 27}, + [1696] = {.lex_state = 27}, + [1697] = {.lex_state = 27}, + [1698] = {.lex_state = 27}, + [1699] = {.lex_state = 27}, + [1700] = {.lex_state = 27}, + [1701] = {.lex_state = 2}, + [1702] = {.lex_state = 27}, + [1703] = {.lex_state = 27}, + [1704] = {.lex_state = 2}, + [1705] = {.lex_state = 27}, + [1706] = {.lex_state = 27}, + [1707] = {.lex_state = 27}, + [1708] = {.lex_state = 27}, + [1709] = {.lex_state = 27}, + [1710] = {.lex_state = 27}, + [1711] = {.lex_state = 27}, + [1712] = {.lex_state = 27}, + [1713] = {.lex_state = 27}, + [1714] = {.lex_state = 27}, + [1715] = {.lex_state = 27}, + [1716] = {.lex_state = 27}, + [1717] = {.lex_state = 27}, + [1718] = {.lex_state = 27}, + [1719] = {.lex_state = 27}, + [1720] = {.lex_state = 27}, + [1721] = {.lex_state = 27}, + [1722] = {.lex_state = 27}, + [1723] = {.lex_state = 27}, + [1724] = {.lex_state = 27}, + [1725] = {.lex_state = 27}, + [1726] = {.lex_state = 27}, + [1727] = {.lex_state = 27}, + [1728] = {.lex_state = 27}, + [1729] = {.lex_state = 27}, + [1730] = {.lex_state = 27}, + [1731] = {.lex_state = 5}, + [1732] = {.lex_state = 27}, + [1733] = {.lex_state = 27}, + [1734] = {.lex_state = 27}, + [1735] = {.lex_state = 27}, + [1736] = {.lex_state = 27}, + [1737] = {.lex_state = 2}, + [1738] = {.lex_state = 27}, + [1739] = {.lex_state = 27}, + [1740] = {.lex_state = 27}, + [1741] = {.lex_state = 0}, + [1742] = {.lex_state = 2}, + [1743] = {.lex_state = 2}, + [1744] = {.lex_state = 2}, + [1745] = {.lex_state = 2}, + [1746] = {.lex_state = 2}, + [1747] = {.lex_state = 2}, + [1748] = {.lex_state = 2}, + [1749] = {.lex_state = 2}, + [1750] = {.lex_state = 2}, + [1751] = {.lex_state = 2}, + [1752] = {.lex_state = 0}, + [1753] = {.lex_state = 2}, + [1754] = {.lex_state = 2}, + [1755] = {.lex_state = 2}, + [1756] = {.lex_state = 2}, + [1757] = {.lex_state = 2}, + [1758] = {.lex_state = 2}, + [1759] = {.lex_state = 2}, + [1760] = {.lex_state = 2}, + [1761] = {.lex_state = 2}, + [1762] = {.lex_state = 0}, + [1763] = {.lex_state = 2}, + [1764] = {.lex_state = 2}, + [1765] = {.lex_state = 2}, + [1766] = {.lex_state = 2}, + [1767] = {.lex_state = 2}, + [1768] = {.lex_state = 2}, + [1769] = {.lex_state = 2}, + [1770] = {.lex_state = 0}, + [1771] = {.lex_state = 2}, + [1772] = {.lex_state = 2}, + [1773] = {.lex_state = 0}, + [1774] = {.lex_state = 2}, + [1775] = {.lex_state = 2}, + [1776] = {.lex_state = 0}, + [1777] = {.lex_state = 2}, + [1778] = {.lex_state = 2}, + [1779] = {.lex_state = 2}, + [1780] = {.lex_state = 2}, + [1781] = {.lex_state = 2}, + [1782] = {.lex_state = 2}, + [1783] = {.lex_state = 2}, + [1784] = {.lex_state = 0}, + [1785] = {.lex_state = 2}, + [1786] = {.lex_state = 2}, + [1787] = {.lex_state = 2}, + [1788] = {.lex_state = 2}, + [1789] = {.lex_state = 2}, + [1790] = {.lex_state = 2}, + [1791] = {.lex_state = 2}, + [1792] = {.lex_state = 2}, + [1793] = {.lex_state = 0}, + [1794] = {.lex_state = 0}, + [1795] = {.lex_state = 2}, + [1796] = {.lex_state = 2}, + [1797] = {.lex_state = 2}, + [1798] = {.lex_state = 2}, + [1799] = {.lex_state = 2}, + [1800] = {.lex_state = 2}, + [1801] = {.lex_state = 2}, + [1802] = {.lex_state = 2}, + [1803] = {.lex_state = 2}, + [1804] = {.lex_state = 0}, + [1805] = {.lex_state = 2}, + [1806] = {.lex_state = 2}, + [1807] = {.lex_state = 2}, + [1808] = {.lex_state = 2}, + [1809] = {.lex_state = 2}, + [1810] = {.lex_state = 2}, + [1811] = {.lex_state = 2}, + [1812] = {.lex_state = 2}, + [1813] = {.lex_state = 0}, + [1814] = {.lex_state = 2}, + [1815] = {.lex_state = 2}, + [1816] = {.lex_state = 2}, + [1817] = {.lex_state = 0}, + [1818] = {.lex_state = 2}, + [1819] = {.lex_state = 2}, + [1820] = {.lex_state = 2}, + [1821] = {.lex_state = 2}, + [1822] = {.lex_state = 2}, + [1823] = {.lex_state = 0}, + [1824] = {.lex_state = 2}, + [1825] = {.lex_state = 2}, + [1826] = {.lex_state = 2}, + [1827] = {.lex_state = 2}, + [1828] = {.lex_state = 2}, + [1829] = {.lex_state = 2}, + [1830] = {.lex_state = 2}, + [1831] = {.lex_state = 2}, + [1832] = {.lex_state = 2}, + [1833] = {.lex_state = 2}, + [1834] = {.lex_state = 2}, + [1835] = {.lex_state = 2}, + [1836] = {.lex_state = 2}, + [1837] = {.lex_state = 0}, + [1838] = {.lex_state = 2}, + [1839] = {.lex_state = 2}, + [1840] = {.lex_state = 2}, + [1841] = {.lex_state = 0}, + [1842] = {.lex_state = 2}, + [1843] = {.lex_state = 27}, + [1844] = {.lex_state = 2}, + [1845] = {.lex_state = 2}, + [1846] = {.lex_state = 2}, + [1847] = {.lex_state = 2}, + [1848] = {.lex_state = 2}, + [1849] = {.lex_state = 2}, + [1850] = {.lex_state = 2}, + [1851] = {.lex_state = 0}, + [1852] = {.lex_state = 2}, + [1853] = {.lex_state = 2}, + [1854] = {.lex_state = 2}, + [1855] = {.lex_state = 2}, + [1856] = {.lex_state = 2}, + [1857] = {.lex_state = 2}, + [1858] = {.lex_state = 2}, + [1859] = {.lex_state = 2}, + [1860] = {.lex_state = 0}, + [1861] = {.lex_state = 2}, + [1862] = {.lex_state = 2}, + [1863] = {.lex_state = 2}, + [1864] = {.lex_state = 2}, + [1865] = {.lex_state = 2}, + [1866] = {.lex_state = 0}, + [1867] = {.lex_state = 2}, + [1868] = {.lex_state = 2}, + [1869] = {.lex_state = 2}, + [1870] = {.lex_state = 2}, + [1871] = {.lex_state = 2}, + [1872] = {.lex_state = 2}, + [1873] = {.lex_state = 2}, + [1874] = {.lex_state = 2}, + [1875] = {.lex_state = 2}, + [1876] = {.lex_state = 2}, + [1877] = {.lex_state = 2}, + [1878] = {.lex_state = 2}, + [1879] = {.lex_state = 2}, + [1880] = {.lex_state = 2}, + [1881] = {.lex_state = 2}, + [1882] = {.lex_state = 2}, + [1883] = {.lex_state = 2}, + [1884] = {.lex_state = 2}, + [1885] = {.lex_state = 2}, + [1886] = {.lex_state = 2}, + [1887] = {.lex_state = 2}, + [1888] = {.lex_state = 2}, + [1889] = {.lex_state = 2}, + [1890] = {.lex_state = 0}, + [1891] = {.lex_state = 0}, + [1892] = {.lex_state = 2}, + [1893] = {.lex_state = 2}, + [1894] = {.lex_state = 2}, + [1895] = {.lex_state = 2}, + [1896] = {.lex_state = 2}, + [1897] = {.lex_state = 2}, + [1898] = {.lex_state = 2}, + [1899] = {.lex_state = 2}, + [1900] = {.lex_state = 2}, + [1901] = {.lex_state = 2}, + [1902] = {.lex_state = 2}, + [1903] = {.lex_state = 2}, + [1904] = {.lex_state = 2}, + [1905] = {.lex_state = 2}, + [1906] = {.lex_state = 2}, + [1907] = {.lex_state = 2}, + [1908] = {.lex_state = 2}, + [1909] = {.lex_state = 2}, + [1910] = {.lex_state = 0}, + [1911] = {.lex_state = 2}, + [1912] = {.lex_state = 2}, + [1913] = {.lex_state = 2}, + [1914] = {.lex_state = 2}, + [1915] = {.lex_state = 2}, + [1916] = {.lex_state = 2}, + [1917] = {.lex_state = 0}, + [1918] = {.lex_state = 2}, + [1919] = {.lex_state = 2}, + [1920] = {.lex_state = 0}, + [1921] = {.lex_state = 2}, + [1922] = {.lex_state = 0}, + [1923] = {.lex_state = 2}, + [1924] = {.lex_state = 2}, + [1925] = {.lex_state = 2}, + [1926] = {.lex_state = 0}, + [1927] = {.lex_state = 2}, + [1928] = {.lex_state = 2}, + [1929] = {.lex_state = 2}, + [1930] = {.lex_state = 2}, + [1931] = {.lex_state = 2}, + [1932] = {.lex_state = 2}, + [1933] = {.lex_state = 2}, + [1934] = {.lex_state = 2}, + [1935] = {.lex_state = 2}, + [1936] = {.lex_state = 2}, + [1937] = {.lex_state = 2}, + [1938] = {.lex_state = 2}, + [1939] = {.lex_state = 2}, + [1940] = {.lex_state = 2}, + [1941] = {.lex_state = 2}, + [1942] = {.lex_state = 2}, + [1943] = {.lex_state = 2}, + [1944] = {.lex_state = 2}, + [1945] = {.lex_state = 2}, + [1946] = {.lex_state = 2}, + [1947] = {.lex_state = 2}, + [1948] = {.lex_state = 2}, + [1949] = {.lex_state = 2}, + [1950] = {.lex_state = 2}, + [1951] = {.lex_state = 2}, + [1952] = {.lex_state = 2}, + [1953] = {.lex_state = 2}, + [1954] = {.lex_state = 2}, + [1955] = {.lex_state = 2}, + [1956] = {.lex_state = 2}, + [1957] = {.lex_state = 2}, + [1958] = {.lex_state = 2}, + [1959] = {.lex_state = 2}, + [1960] = {.lex_state = 2}, + [1961] = {.lex_state = 2}, + [1962] = {.lex_state = 2}, + [1963] = {.lex_state = 2}, + [1964] = {.lex_state = 2}, + [1965] = {.lex_state = 2}, + [1966] = {.lex_state = 2}, + [1967] = {.lex_state = 2}, + [1968] = {.lex_state = 2}, + [1969] = {.lex_state = 2}, + [1970] = {.lex_state = 2}, + [1971] = {.lex_state = 2}, + [1972] = {.lex_state = 2}, + [1973] = {.lex_state = 2}, + [1974] = {.lex_state = 2}, + [1975] = {.lex_state = 2}, + [1976] = {.lex_state = 2}, + [1977] = {.lex_state = 2}, + [1978] = {.lex_state = 2}, + [1979] = {.lex_state = 2}, + [1980] = {.lex_state = 0}, + [1981] = {.lex_state = 2}, + [1982] = {.lex_state = 2}, + [1983] = {.lex_state = 2}, + [1984] = {.lex_state = 0}, + [1985] = {.lex_state = 2}, + [1986] = {.lex_state = 2}, + [1987] = {.lex_state = 2}, + [1988] = {.lex_state = 2}, + [1989] = {.lex_state = 2}, + [1990] = {.lex_state = 2}, + [1991] = {.lex_state = 2}, + [1992] = {.lex_state = 2}, + [1993] = {.lex_state = 2}, + [1994] = {.lex_state = 2}, + [1995] = {.lex_state = 2}, + [1996] = {.lex_state = 2}, + [1997] = {.lex_state = 2}, + [1998] = {.lex_state = 0}, + [1999] = {.lex_state = 2}, + [2000] = {.lex_state = 2}, + [2001] = {.lex_state = 2}, + [2002] = {.lex_state = 2}, + [2003] = {.lex_state = 2}, + [2004] = {.lex_state = 2}, + [2005] = {.lex_state = 2}, + [2006] = {.lex_state = 2}, + [2007] = {.lex_state = 2}, + [2008] = {.lex_state = 2}, + [2009] = {.lex_state = 2}, + [2010] = {.lex_state = 2}, + [2011] = {.lex_state = 2}, + [2012] = {.lex_state = 2}, + [2013] = {.lex_state = 2}, + [2014] = {.lex_state = 2}, + [2015] = {.lex_state = 0}, + [2016] = {.lex_state = 2}, + [2017] = {.lex_state = 2}, + [2018] = {.lex_state = 2}, + [2019] = {.lex_state = 2}, + [2020] = {.lex_state = 0}, + [2021] = {.lex_state = 2}, + [2022] = {.lex_state = 2}, + [2023] = {.lex_state = 2}, + [2024] = {.lex_state = 2}, + [2025] = {.lex_state = 2}, + [2026] = {.lex_state = 2}, + [2027] = {.lex_state = 2}, + [2028] = {.lex_state = 2}, + [2029] = {.lex_state = 2}, + [2030] = {.lex_state = 0}, + [2031] = {.lex_state = 2}, + [2032] = {.lex_state = 2}, + [2033] = {.lex_state = 2}, + [2034] = {.lex_state = 2}, + [2035] = {.lex_state = 2}, + [2036] = {.lex_state = 2}, + [2037] = {.lex_state = 2}, + [2038] = {.lex_state = 2}, + [2039] = {.lex_state = 2}, + [2040] = {.lex_state = 2}, + [2041] = {.lex_state = 2}, + [2042] = {.lex_state = 0}, + [2043] = {.lex_state = 2}, + [2044] = {.lex_state = 2}, + [2045] = {.lex_state = 2}, + [2046] = {.lex_state = 2}, + [2047] = {.lex_state = 2}, + [2048] = {.lex_state = 2}, + [2049] = {.lex_state = 2}, + [2050] = {.lex_state = 2}, + [2051] = {.lex_state = 2}, + [2052] = {.lex_state = 2}, + [2053] = {.lex_state = 2}, + [2054] = {.lex_state = 2}, + [2055] = {.lex_state = 0}, + [2056] = {.lex_state = 2}, + [2057] = {.lex_state = 2}, + [2058] = {.lex_state = 2}, + [2059] = {.lex_state = 2}, + [2060] = {.lex_state = 2}, + [2061] = {.lex_state = 2}, + [2062] = {.lex_state = 2}, + [2063] = {.lex_state = 2}, + [2064] = {.lex_state = 2}, + [2065] = {.lex_state = 2}, + [2066] = {.lex_state = 2}, + [2067] = {.lex_state = 2}, + [2068] = {.lex_state = 2}, + [2069] = {.lex_state = 2}, + [2070] = {.lex_state = 2}, + [2071] = {.lex_state = 2}, + [2072] = {.lex_state = 2}, + [2073] = {.lex_state = 2}, + [2074] = {.lex_state = 2}, + [2075] = {.lex_state = 2}, + [2076] = {.lex_state = 2}, + [2077] = {.lex_state = 2}, + [2078] = {.lex_state = 2}, + [2079] = {.lex_state = 2}, + [2080] = {.lex_state = 2}, + [2081] = {.lex_state = 2}, + [2082] = {.lex_state = 2}, + [2083] = {.lex_state = 2}, + [2084] = {.lex_state = 2}, + [2085] = {.lex_state = 2}, + [2086] = {.lex_state = 2}, + [2087] = {.lex_state = 2}, + [2088] = {.lex_state = 2}, + [2089] = {.lex_state = 2}, + [2090] = {.lex_state = 2}, + [2091] = {.lex_state = 2}, + [2092] = {.lex_state = 2}, + [2093] = {.lex_state = 2}, + [2094] = {.lex_state = 2}, + [2095] = {.lex_state = 2}, + [2096] = {.lex_state = 2}, + [2097] = {.lex_state = 2}, + [2098] = {.lex_state = 2}, + [2099] = {.lex_state = 2}, + [2100] = {.lex_state = 2}, + [2101] = {.lex_state = 2}, + [2102] = {.lex_state = 2}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), - [sym_comment] = ACTIONS(3), + [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), @@ -4730,6 +6627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(1), [anon_sym_while] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), + [anon_sym_asyncfor] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), [anon_sym_transform] = ACTIONS(1), [anon_sym_filter] = ACTIONS(1), @@ -4776,43 +6674,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(1), }, [1] = { - [sym_root] = STATE(1177), - [sym_block] = STATE(227), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_root_repeat1] = STATE(227), - [aux_sym_block_repeat1] = STATE(226), + [sym_root] = STATE(1891), + [sym_block] = STATE(378), + [sym_statement] = STATE(381), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_root_repeat1] = STATE(378), + [aux_sym_block_repeat1] = STATE(381), [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), + [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), @@ -4826,4989 +6724,5196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(23), [anon_sym_while] = ACTIONS(25), [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [2] = { - [sym_block] = STATE(392), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(845), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(846), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [ts_builtin_sym_end] = ACTIONS(51), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(51), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(51), - [anon_sym_COMMA] = ACTIONS(51), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(51), - [anon_sym_COLON] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(51), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_elseif] = ACTIONS(51), - [anon_sym_else] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_block] = STATE(629), + [sym_statement] = STATE(10), + [sym_expression] = STATE(571), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1313), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1312), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(558), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [aux_sym_block_repeat1] = STATE(10), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(53), + [anon_sym_COMMA] = ACTIONS(53), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_RBRACK] = ACTIONS(53), + [anon_sym_EQ] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(53), + [anon_sym_DASH_EQ] = ACTIONS(53), + [anon_sym_if] = ACTIONS(81), + [anon_sym_elseif] = ACTIONS(53), + [anon_sym_else] = ACTIONS(69), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [3] = { - [sym_block] = STATE(392), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(736), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(738), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [ts_builtin_sym_end] = ACTIONS(51), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(51), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(51), - [anon_sym_COMMA] = ACTIONS(51), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(51), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_elseif] = ACTIONS(51), - [anon_sym_else] = ACTIONS(79), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(629), + [sym_statement] = STATE(12), + [sym_expression] = STATE(583), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1376), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1377), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(567), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [aux_sym_block_repeat1] = STATE(12), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(53), + [anon_sym_COMMA] = ACTIONS(53), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_RBRACK] = ACTIONS(53), + [anon_sym_EQ] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(53), + [anon_sym_DASH_EQ] = ACTIONS(53), + [anon_sym_if] = ACTIONS(117), + [anon_sym_elseif] = ACTIONS(53), + [anon_sym_else] = ACTIONS(69), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_asyncfor] = ACTIONS(127), + [anon_sym_transform] = ACTIONS(129), + [anon_sym_filter] = ACTIONS(131), + [anon_sym_find] = ACTIONS(133), + [anon_sym_remove] = ACTIONS(135), + [anon_sym_reduce] = ACTIONS(137), + [anon_sym_select] = ACTIONS(139), + [anon_sym_insert] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [4] = { - [sym_block] = STATE(392), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(789), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(790), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [ts_builtin_sym_end] = ACTIONS(51), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(51), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(51), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(51), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_elseif] = ACTIONS(51), - [anon_sym_else] = ACTIONS(79), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), + [sym_block] = STATE(735), + [sym_statement] = STATE(17), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1316), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1285), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(17), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(53), + [anon_sym_COMMA] = ACTIONS(53), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(53), + [anon_sym_EQ] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(53), + [anon_sym_DASH_EQ] = ACTIONS(53), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [5] = { - [sym_block] = STATE(463), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(660), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(650), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [ts_builtin_sym_end] = ACTIONS(51), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(51), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(51), - [anon_sym_COMMA] = ACTIONS(51), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(51), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(51), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [sym_block] = STATE(629), + [sym_statement] = STATE(21), + [sym_expression] = STATE(593), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1414), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1413), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(584), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1776), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(286), + [aux_sym_block_repeat1] = STATE(21), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(53), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_EQ] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_DOT_DOT] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(53), + [anon_sym_DASH_EQ] = ACTIONS(53), + [anon_sym_if] = ACTIONS(197), + [anon_sym_elseif] = ACTIONS(53), + [anon_sym_else] = ACTIONS(69), + [anon_sym_match] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(201), + [anon_sym_while] = ACTIONS(203), + [anon_sym_for] = ACTIONS(205), + [anon_sym_asyncfor] = ACTIONS(207), + [anon_sym_transform] = ACTIONS(209), + [anon_sym_filter] = ACTIONS(211), + [anon_sym_find] = ACTIONS(213), + [anon_sym_remove] = ACTIONS(215), + [anon_sym_reduce] = ACTIONS(217), + [anon_sym_select] = ACTIONS(219), + [anon_sym_insert] = ACTIONS(221), + [anon_sym_async] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_assert_equal] = ACTIONS(227), + [anon_sym_download] = ACTIONS(227), + [anon_sym_help] = ACTIONS(227), + [anon_sym_length] = ACTIONS(227), + [anon_sym_output] = ACTIONS(227), + [anon_sym_output_error] = ACTIONS(227), + [anon_sym_type] = ACTIONS(227), + [anon_sym_append] = ACTIONS(227), + [anon_sym_metadata] = ACTIONS(227), + [anon_sym_move] = ACTIONS(227), + [anon_sym_read] = ACTIONS(227), + [anon_sym_workdir] = ACTIONS(227), + [anon_sym_write] = ACTIONS(227), + [anon_sym_from_json] = ACTIONS(227), + [anon_sym_to_json] = ACTIONS(227), + [anon_sym_to_string] = ACTIONS(227), + [anon_sym_to_float] = ACTIONS(227), + [anon_sym_bash] = ACTIONS(227), + [anon_sym_fish] = ACTIONS(227), + [anon_sym_raw] = ACTIONS(227), + [anon_sym_sh] = ACTIONS(227), + [anon_sym_zsh] = ACTIONS(227), + [anon_sym_random] = ACTIONS(227), + [anon_sym_random_boolean] = ACTIONS(227), + [anon_sym_random_float] = ACTIONS(227), + [anon_sym_random_integer] = ACTIONS(227), + [anon_sym_columns] = ACTIONS(227), + [anon_sym_rows] = ACTIONS(227), + [anon_sym_reverse] = ACTIONS(227), }, [6] = { - [sym_statement] = STATE(6), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(6), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(221), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(213), - [sym_integer] = ACTIONS(224), - [sym_float] = ACTIONS(227), - [sym_string] = ACTIONS(227), - [anon_sym_true] = ACTIONS(230), - [anon_sym_false] = ACTIONS(230), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(213), - [anon_sym_DOT_DOT] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_AMP_AMP] = ACTIONS(213), - [anon_sym_PIPE_PIPE] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_if] = ACTIONS(238), - [anon_sym_elseif] = ACTIONS(213), - [anon_sym_else] = ACTIONS(236), - [anon_sym_match] = ACTIONS(241), - [anon_sym_EQ_GT] = ACTIONS(244), - [anon_sym_while] = ACTIONS(247), - [anon_sym_for] = ACTIONS(250), - [anon_sym_transform] = ACTIONS(253), - [anon_sym_filter] = ACTIONS(256), - [anon_sym_find] = ACTIONS(259), - [anon_sym_remove] = ACTIONS(262), + [sym_block] = STATE(811), + [sym_statement] = STATE(22), + [sym_expression] = STATE(685), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(576), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1362), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1363), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(647), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [aux_sym_block_repeat1] = STATE(22), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(229), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(233), + [anon_sym_RPAREN] = ACTIONS(53), + [anon_sym_COMMA] = ACTIONS(53), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_RBRACK] = ACTIONS(53), + [anon_sym_COLON] = ACTIONS(243), + [anon_sym_DOT_DOT] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(245), + [anon_sym_elseif] = ACTIONS(53), + [anon_sym_else] = ACTIONS(69), + [anon_sym_match] = ACTIONS(247), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(251), + [anon_sym_for] = ACTIONS(253), + [anon_sym_asyncfor] = ACTIONS(255), + [anon_sym_transform] = ACTIONS(257), + [anon_sym_filter] = ACTIONS(259), + [anon_sym_find] = ACTIONS(261), + [anon_sym_remove] = ACTIONS(263), [anon_sym_reduce] = ACTIONS(265), - [anon_sym_select] = ACTIONS(268), - [anon_sym_insert] = ACTIONS(271), - [anon_sym_async] = ACTIONS(274), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_table] = ACTIONS(280), - [anon_sym_assert] = ACTIONS(283), - [anon_sym_assert_equal] = ACTIONS(283), - [anon_sym_download] = ACTIONS(283), - [anon_sym_help] = ACTIONS(283), - [anon_sym_length] = ACTIONS(283), - [anon_sym_output] = ACTIONS(283), - [anon_sym_output_error] = ACTIONS(283), - [anon_sym_type] = ACTIONS(283), - [anon_sym_append] = ACTIONS(283), - [anon_sym_metadata] = ACTIONS(283), - [anon_sym_move] = ACTIONS(283), - [anon_sym_read] = ACTIONS(283), - [anon_sym_workdir] = ACTIONS(283), - [anon_sym_write] = ACTIONS(283), - [anon_sym_from_json] = ACTIONS(283), - [anon_sym_to_json] = ACTIONS(283), - [anon_sym_to_string] = ACTIONS(283), - [anon_sym_to_float] = ACTIONS(283), - [anon_sym_bash] = ACTIONS(283), - [anon_sym_fish] = ACTIONS(283), - [anon_sym_raw] = ACTIONS(283), - [anon_sym_sh] = ACTIONS(283), - [anon_sym_zsh] = ACTIONS(283), - [anon_sym_random] = ACTIONS(283), - [anon_sym_random_boolean] = ACTIONS(283), - [anon_sym_random_float] = ACTIONS(283), - [anon_sym_random_integer] = ACTIONS(283), - [anon_sym_columns] = ACTIONS(283), - [anon_sym_rows] = ACTIONS(283), - [anon_sym_reverse] = ACTIONS(283), + [anon_sym_select] = ACTIONS(267), + [anon_sym_insert] = ACTIONS(269), + [anon_sym_async] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), }, [7] = { - [sym_block] = STATE(463), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(623), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(664), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [ts_builtin_sym_end] = ACTIONS(51), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(51), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(51), - [anon_sym_COMMA] = ACTIONS(51), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(51), - [anon_sym_COLON] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_block] = STATE(735), + [sym_statement] = STATE(24), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1261), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1219), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(24), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(53), + [anon_sym_COMMA] = ACTIONS(53), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(53), + [anon_sym_EQ] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(53), + [anon_sym_DASH_EQ] = ACTIONS(53), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [8] = { - [sym_statement] = STATE(6), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(6), - [ts_builtin_sym_end] = ACTIONS(318), - [sym_identifier] = ACTIONS(320), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(323), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(318), - [sym_integer] = ACTIONS(329), - [sym_float] = ACTIONS(332), - [sym_string] = ACTIONS(332), - [anon_sym_true] = ACTIONS(335), - [anon_sym_false] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_RBRACK] = ACTIONS(318), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(343), - [anon_sym_elseif] = ACTIONS(318), - [anon_sym_else] = ACTIONS(341), - [anon_sym_match] = ACTIONS(346), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(352), - [anon_sym_for] = ACTIONS(355), - [anon_sym_transform] = ACTIONS(358), - [anon_sym_filter] = ACTIONS(361), - [anon_sym_find] = ACTIONS(364), - [anon_sym_remove] = ACTIONS(367), - [anon_sym_reduce] = ACTIONS(370), - [anon_sym_select] = ACTIONS(373), - [anon_sym_insert] = ACTIONS(376), - [anon_sym_async] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(385), - [anon_sym_assert] = ACTIONS(388), - [anon_sym_assert_equal] = ACTIONS(388), - [anon_sym_download] = ACTIONS(388), - [anon_sym_help] = ACTIONS(388), - [anon_sym_length] = ACTIONS(388), - [anon_sym_output] = ACTIONS(388), - [anon_sym_output_error] = ACTIONS(388), - [anon_sym_type] = ACTIONS(388), - [anon_sym_append] = ACTIONS(388), - [anon_sym_metadata] = ACTIONS(388), - [anon_sym_move] = ACTIONS(388), - [anon_sym_read] = ACTIONS(388), - [anon_sym_workdir] = ACTIONS(388), - [anon_sym_write] = ACTIONS(388), - [anon_sym_from_json] = ACTIONS(388), - [anon_sym_to_json] = ACTIONS(388), - [anon_sym_to_string] = ACTIONS(388), - [anon_sym_to_float] = ACTIONS(388), - [anon_sym_bash] = ACTIONS(388), - [anon_sym_fish] = ACTIONS(388), - [anon_sym_raw] = ACTIONS(388), - [anon_sym_sh] = ACTIONS(388), - [anon_sym_zsh] = ACTIONS(388), - [anon_sym_random] = ACTIONS(388), - [anon_sym_random_boolean] = ACTIONS(388), - [anon_sym_random_float] = ACTIONS(388), - [anon_sym_random_integer] = ACTIONS(388), - [anon_sym_columns] = ACTIONS(388), - [anon_sym_rows] = ACTIONS(388), - [anon_sym_reverse] = ACTIONS(388), + [sym_block] = STATE(629), + [sym_statement] = STATE(27), + [sym_expression] = STATE(663), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1138), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1277), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(637), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1998), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(296), + [aux_sym_block_repeat1] = STATE(27), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(53), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_EQ] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(53), + [anon_sym_DASH_EQ] = ACTIONS(53), + [anon_sym_if] = ACTIONS(311), + [anon_sym_elseif] = ACTIONS(53), + [anon_sym_else] = ACTIONS(69), + [anon_sym_match] = ACTIONS(313), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_asyncfor] = ACTIONS(321), + [anon_sym_transform] = ACTIONS(323), + [anon_sym_filter] = ACTIONS(325), + [anon_sym_find] = ACTIONS(327), + [anon_sym_remove] = ACTIONS(329), + [anon_sym_reduce] = ACTIONS(331), + [anon_sym_select] = ACTIONS(333), + [anon_sym_insert] = ACTIONS(335), + [anon_sym_async] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(341), + [anon_sym_assert_equal] = ACTIONS(341), + [anon_sym_download] = ACTIONS(341), + [anon_sym_help] = ACTIONS(341), + [anon_sym_length] = ACTIONS(341), + [anon_sym_output] = ACTIONS(341), + [anon_sym_output_error] = ACTIONS(341), + [anon_sym_type] = ACTIONS(341), + [anon_sym_append] = ACTIONS(341), + [anon_sym_metadata] = ACTIONS(341), + [anon_sym_move] = ACTIONS(341), + [anon_sym_read] = ACTIONS(341), + [anon_sym_workdir] = ACTIONS(341), + [anon_sym_write] = ACTIONS(341), + [anon_sym_from_json] = ACTIONS(341), + [anon_sym_to_json] = ACTIONS(341), + [anon_sym_to_string] = ACTIONS(341), + [anon_sym_to_float] = ACTIONS(341), + [anon_sym_bash] = ACTIONS(341), + [anon_sym_fish] = ACTIONS(341), + [anon_sym_raw] = ACTIONS(341), + [anon_sym_sh] = ACTIONS(341), + [anon_sym_zsh] = ACTIONS(341), + [anon_sym_random] = ACTIONS(341), + [anon_sym_random_boolean] = ACTIONS(341), + [anon_sym_random_float] = ACTIONS(341), + [anon_sym_random_integer] = ACTIONS(341), + [anon_sym_columns] = ACTIONS(341), + [anon_sym_rows] = ACTIONS(341), + [anon_sym_reverse] = ACTIONS(341), }, [9] = { - [sym_block] = STATE(392), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(773), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(774), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [ts_builtin_sym_end] = ACTIONS(51), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(51), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(51), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_elseif] = ACTIONS(51), - [anon_sym_else] = ACTIONS(79), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_statement] = STATE(9), + [sym_expression] = STATE(571), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(558), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [aux_sym_block_repeat1] = STATE(9), + [ts_builtin_sym_end] = ACTIONS(343), + [sym_identifier] = ACTIONS(345), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(343), + [sym_integer] = ACTIONS(354), + [sym_float] = ACTIONS(357), + [sym_string] = ACTIONS(357), + [anon_sym_true] = ACTIONS(360), + [anon_sym_false] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_RBRACK] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(366), + [anon_sym_COLON] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(366), + [anon_sym_DASH] = ACTIONS(366), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PERCENT] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(366), + [anon_sym_GT_EQ] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_PLUS_EQ] = ACTIONS(343), + [anon_sym_DASH_EQ] = ACTIONS(343), + [anon_sym_if] = ACTIONS(368), + [anon_sym_elseif] = ACTIONS(343), + [anon_sym_else] = ACTIONS(366), + [anon_sym_match] = ACTIONS(371), + [anon_sym_EQ_GT] = ACTIONS(374), + [anon_sym_while] = ACTIONS(377), + [anon_sym_for] = ACTIONS(380), + [anon_sym_asyncfor] = ACTIONS(383), + [anon_sym_transform] = ACTIONS(386), + [anon_sym_filter] = ACTIONS(389), + [anon_sym_find] = ACTIONS(392), + [anon_sym_remove] = ACTIONS(395), + [anon_sym_reduce] = ACTIONS(398), + [anon_sym_select] = ACTIONS(401), + [anon_sym_insert] = ACTIONS(404), + [anon_sym_async] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_table] = ACTIONS(413), + [anon_sym_assert] = ACTIONS(416), + [anon_sym_assert_equal] = ACTIONS(416), + [anon_sym_download] = ACTIONS(416), + [anon_sym_help] = ACTIONS(416), + [anon_sym_length] = ACTIONS(416), + [anon_sym_output] = ACTIONS(416), + [anon_sym_output_error] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_append] = ACTIONS(416), + [anon_sym_metadata] = ACTIONS(416), + [anon_sym_move] = ACTIONS(416), + [anon_sym_read] = ACTIONS(416), + [anon_sym_workdir] = ACTIONS(416), + [anon_sym_write] = ACTIONS(416), + [anon_sym_from_json] = ACTIONS(416), + [anon_sym_to_json] = ACTIONS(416), + [anon_sym_to_string] = ACTIONS(416), + [anon_sym_to_float] = ACTIONS(416), + [anon_sym_bash] = ACTIONS(416), + [anon_sym_fish] = ACTIONS(416), + [anon_sym_raw] = ACTIONS(416), + [anon_sym_sh] = ACTIONS(416), + [anon_sym_zsh] = ACTIONS(416), + [anon_sym_random] = ACTIONS(416), + [anon_sym_random_boolean] = ACTIONS(416), + [anon_sym_random_float] = ACTIONS(416), + [anon_sym_random_integer] = ACTIONS(416), + [anon_sym_columns] = ACTIONS(416), + [anon_sym_rows] = ACTIONS(416), + [anon_sym_reverse] = ACTIONS(416), }, [10] = { - [sym_block] = STATE(576), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(736), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(738), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_RBRACE] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(51), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_COMMA] = ACTIONS(51), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_elseif] = ACTIONS(51), - [anon_sym_else] = ACTIONS(79), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_statement] = STATE(9), + [sym_expression] = STATE(571), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(558), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [aux_sym_block_repeat1] = STATE(9), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(421), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(430), + [sym_float] = ACTIONS(433), + [sym_string] = ACTIONS(433), + [anon_sym_true] = ACTIONS(436), + [anon_sym_false] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_RBRACK] = ACTIONS(419), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(444), + [anon_sym_elseif] = ACTIONS(419), + [anon_sym_else] = ACTIONS(442), + [anon_sym_match] = ACTIONS(447), + [anon_sym_EQ_GT] = ACTIONS(450), + [anon_sym_while] = ACTIONS(453), + [anon_sym_for] = ACTIONS(456), + [anon_sym_asyncfor] = ACTIONS(459), + [anon_sym_transform] = ACTIONS(462), + [anon_sym_filter] = ACTIONS(465), + [anon_sym_find] = ACTIONS(468), + [anon_sym_remove] = ACTIONS(471), + [anon_sym_reduce] = ACTIONS(474), + [anon_sym_select] = ACTIONS(477), + [anon_sym_insert] = ACTIONS(480), + [anon_sym_async] = ACTIONS(483), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(489), + [anon_sym_assert] = ACTIONS(492), + [anon_sym_assert_equal] = ACTIONS(492), + [anon_sym_download] = ACTIONS(492), + [anon_sym_help] = ACTIONS(492), + [anon_sym_length] = ACTIONS(492), + [anon_sym_output] = ACTIONS(492), + [anon_sym_output_error] = ACTIONS(492), + [anon_sym_type] = ACTIONS(492), + [anon_sym_append] = ACTIONS(492), + [anon_sym_metadata] = ACTIONS(492), + [anon_sym_move] = ACTIONS(492), + [anon_sym_read] = ACTIONS(492), + [anon_sym_workdir] = ACTIONS(492), + [anon_sym_write] = ACTIONS(492), + [anon_sym_from_json] = ACTIONS(492), + [anon_sym_to_json] = ACTIONS(492), + [anon_sym_to_string] = ACTIONS(492), + [anon_sym_to_float] = ACTIONS(492), + [anon_sym_bash] = ACTIONS(492), + [anon_sym_fish] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_sh] = ACTIONS(492), + [anon_sym_zsh] = ACTIONS(492), + [anon_sym_random] = ACTIONS(492), + [anon_sym_random_boolean] = ACTIONS(492), + [anon_sym_random_float] = ACTIONS(492), + [anon_sym_random_integer] = ACTIONS(492), + [anon_sym_columns] = ACTIONS(492), + [anon_sym_rows] = ACTIONS(492), + [anon_sym_reverse] = ACTIONS(492), }, [11] = { - [sym_block] = STATE(463), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(733), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(734), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [ts_builtin_sym_end] = ACTIONS(51), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(51), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(51), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(51), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [sym_block] = STATE(735), + [sym_statement] = STATE(35), + [sym_expression] = STATE(701), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1455), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1453), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(582), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1866), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(320), + [aux_sym_block_repeat1] = STATE(35), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(53), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_EQ] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(53), + [anon_sym_DASH_EQ] = ACTIONS(53), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(497), + [anon_sym_EQ_GT] = ACTIONS(499), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_asyncfor] = ACTIONS(505), + [anon_sym_transform] = ACTIONS(507), + [anon_sym_filter] = ACTIONS(509), + [anon_sym_find] = ACTIONS(511), + [anon_sym_remove] = ACTIONS(513), + [anon_sym_reduce] = ACTIONS(515), + [anon_sym_select] = ACTIONS(517), + [anon_sym_insert] = ACTIONS(519), + [anon_sym_async] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(525), + [anon_sym_assert_equal] = ACTIONS(525), + [anon_sym_download] = ACTIONS(525), + [anon_sym_help] = ACTIONS(525), + [anon_sym_length] = ACTIONS(525), + [anon_sym_output] = ACTIONS(525), + [anon_sym_output_error] = ACTIONS(525), + [anon_sym_type] = ACTIONS(525), + [anon_sym_append] = ACTIONS(525), + [anon_sym_metadata] = ACTIONS(525), + [anon_sym_move] = ACTIONS(525), + [anon_sym_read] = ACTIONS(525), + [anon_sym_workdir] = ACTIONS(525), + [anon_sym_write] = ACTIONS(525), + [anon_sym_from_json] = ACTIONS(525), + [anon_sym_to_json] = ACTIONS(525), + [anon_sym_to_string] = ACTIONS(525), + [anon_sym_to_float] = ACTIONS(525), + [anon_sym_bash] = ACTIONS(525), + [anon_sym_fish] = ACTIONS(525), + [anon_sym_raw] = ACTIONS(525), + [anon_sym_sh] = ACTIONS(525), + [anon_sym_zsh] = ACTIONS(525), + [anon_sym_random] = ACTIONS(525), + [anon_sym_random_boolean] = ACTIONS(525), + [anon_sym_random_float] = ACTIONS(525), + [anon_sym_random_integer] = ACTIONS(525), + [anon_sym_columns] = ACTIONS(525), + [anon_sym_rows] = ACTIONS(525), + [anon_sym_reverse] = ACTIONS(525), }, [12] = { - [sym_block] = STATE(576), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(773), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(774), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [ts_builtin_sym_end] = ACTIONS(51), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_RBRACE] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(51), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_elseif] = ACTIONS(51), - [anon_sym_else] = ACTIONS(79), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_statement] = STATE(13), + [sym_expression] = STATE(583), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(567), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [aux_sym_block_repeat1] = STATE(13), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(421), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(430), + [sym_float] = ACTIONS(433), + [sym_string] = ACTIONS(433), + [anon_sym_true] = ACTIONS(436), + [anon_sym_false] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_RBRACK] = ACTIONS(419), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(527), + [anon_sym_elseif] = ACTIONS(419), + [anon_sym_else] = ACTIONS(442), + [anon_sym_match] = ACTIONS(530), + [anon_sym_EQ_GT] = ACTIONS(533), + [anon_sym_while] = ACTIONS(536), + [anon_sym_for] = ACTIONS(539), + [anon_sym_asyncfor] = ACTIONS(542), + [anon_sym_transform] = ACTIONS(545), + [anon_sym_filter] = ACTIONS(548), + [anon_sym_find] = ACTIONS(551), + [anon_sym_remove] = ACTIONS(554), + [anon_sym_reduce] = ACTIONS(557), + [anon_sym_select] = ACTIONS(560), + [anon_sym_insert] = ACTIONS(563), + [anon_sym_async] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(569), + [anon_sym_assert] = ACTIONS(572), + [anon_sym_assert_equal] = ACTIONS(572), + [anon_sym_download] = ACTIONS(572), + [anon_sym_help] = ACTIONS(572), + [anon_sym_length] = ACTIONS(572), + [anon_sym_output] = ACTIONS(572), + [anon_sym_output_error] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_append] = ACTIONS(572), + [anon_sym_metadata] = ACTIONS(572), + [anon_sym_move] = ACTIONS(572), + [anon_sym_read] = ACTIONS(572), + [anon_sym_workdir] = ACTIONS(572), + [anon_sym_write] = ACTIONS(572), + [anon_sym_from_json] = ACTIONS(572), + [anon_sym_to_json] = ACTIONS(572), + [anon_sym_to_string] = ACTIONS(572), + [anon_sym_to_float] = ACTIONS(572), + [anon_sym_bash] = ACTIONS(572), + [anon_sym_fish] = ACTIONS(572), + [anon_sym_raw] = ACTIONS(572), + [anon_sym_sh] = ACTIONS(572), + [anon_sym_zsh] = ACTIONS(572), + [anon_sym_random] = ACTIONS(572), + [anon_sym_random_boolean] = ACTIONS(572), + [anon_sym_random_float] = ACTIONS(572), + [anon_sym_random_integer] = ACTIONS(572), + [anon_sym_columns] = ACTIONS(572), + [anon_sym_rows] = ACTIONS(572), + [anon_sym_reverse] = ACTIONS(572), }, [13] = { [sym_statement] = STATE(13), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), + [sym_expression] = STATE(583), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(567), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), [aux_sym_block_repeat1] = STATE(13), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(221), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(213), - [sym_integer] = ACTIONS(224), - [sym_float] = ACTIONS(227), - [sym_string] = ACTIONS(227), - [anon_sym_true] = ACTIONS(230), - [anon_sym_false] = ACTIONS(230), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_AMP_AMP] = ACTIONS(213), - [anon_sym_PIPE_PIPE] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_if] = ACTIONS(508), - [anon_sym_elseif] = ACTIONS(213), - [anon_sym_else] = ACTIONS(236), - [anon_sym_match] = ACTIONS(511), - [anon_sym_EQ_GT] = ACTIONS(514), - [anon_sym_while] = ACTIONS(517), - [anon_sym_for] = ACTIONS(520), - [anon_sym_transform] = ACTIONS(523), - [anon_sym_filter] = ACTIONS(526), - [anon_sym_find] = ACTIONS(529), - [anon_sym_remove] = ACTIONS(532), - [anon_sym_reduce] = ACTIONS(535), - [anon_sym_select] = ACTIONS(538), - [anon_sym_insert] = ACTIONS(541), - [anon_sym_async] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_table] = ACTIONS(547), - [anon_sym_assert] = ACTIONS(550), - [anon_sym_assert_equal] = ACTIONS(550), - [anon_sym_download] = ACTIONS(550), - [anon_sym_help] = ACTIONS(550), - [anon_sym_length] = ACTIONS(550), - [anon_sym_output] = ACTIONS(550), - [anon_sym_output_error] = ACTIONS(550), - [anon_sym_type] = ACTIONS(550), - [anon_sym_append] = ACTIONS(550), - [anon_sym_metadata] = ACTIONS(550), - [anon_sym_move] = ACTIONS(550), - [anon_sym_read] = ACTIONS(550), - [anon_sym_workdir] = ACTIONS(550), - [anon_sym_write] = ACTIONS(550), - [anon_sym_from_json] = ACTIONS(550), - [anon_sym_to_json] = ACTIONS(550), - [anon_sym_to_string] = ACTIONS(550), - [anon_sym_to_float] = ACTIONS(550), - [anon_sym_bash] = ACTIONS(550), - [anon_sym_fish] = ACTIONS(550), - [anon_sym_raw] = ACTIONS(550), - [anon_sym_sh] = ACTIONS(550), - [anon_sym_zsh] = ACTIONS(550), - [anon_sym_random] = ACTIONS(550), - [anon_sym_random_boolean] = ACTIONS(550), - [anon_sym_random_float] = ACTIONS(550), - [anon_sym_random_integer] = ACTIONS(550), - [anon_sym_columns] = ACTIONS(550), - [anon_sym_rows] = ACTIONS(550), - [anon_sym_reverse] = ACTIONS(550), + [ts_builtin_sym_end] = ACTIONS(343), + [sym_identifier] = ACTIONS(345), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(343), + [sym_integer] = ACTIONS(354), + [sym_float] = ACTIONS(357), + [sym_string] = ACTIONS(357), + [anon_sym_true] = ACTIONS(360), + [anon_sym_false] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_RBRACK] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(366), + [anon_sym_COLON] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(366), + [anon_sym_DASH] = ACTIONS(366), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PERCENT] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(366), + [anon_sym_GT_EQ] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_PLUS_EQ] = ACTIONS(343), + [anon_sym_DASH_EQ] = ACTIONS(343), + [anon_sym_if] = ACTIONS(575), + [anon_sym_elseif] = ACTIONS(343), + [anon_sym_else] = ACTIONS(366), + [anon_sym_match] = ACTIONS(578), + [anon_sym_EQ_GT] = ACTIONS(581), + [anon_sym_while] = ACTIONS(584), + [anon_sym_for] = ACTIONS(587), + [anon_sym_asyncfor] = ACTIONS(590), + [anon_sym_transform] = ACTIONS(593), + [anon_sym_filter] = ACTIONS(596), + [anon_sym_find] = ACTIONS(599), + [anon_sym_remove] = ACTIONS(602), + [anon_sym_reduce] = ACTIONS(605), + [anon_sym_select] = ACTIONS(608), + [anon_sym_insert] = ACTIONS(611), + [anon_sym_async] = ACTIONS(614), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_table] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(620), + [anon_sym_assert_equal] = ACTIONS(620), + [anon_sym_download] = ACTIONS(620), + [anon_sym_help] = ACTIONS(620), + [anon_sym_length] = ACTIONS(620), + [anon_sym_output] = ACTIONS(620), + [anon_sym_output_error] = ACTIONS(620), + [anon_sym_type] = ACTIONS(620), + [anon_sym_append] = ACTIONS(620), + [anon_sym_metadata] = ACTIONS(620), + [anon_sym_move] = ACTIONS(620), + [anon_sym_read] = ACTIONS(620), + [anon_sym_workdir] = ACTIONS(620), + [anon_sym_write] = ACTIONS(620), + [anon_sym_from_json] = ACTIONS(620), + [anon_sym_to_json] = ACTIONS(620), + [anon_sym_to_string] = ACTIONS(620), + [anon_sym_to_float] = ACTIONS(620), + [anon_sym_bash] = ACTIONS(620), + [anon_sym_fish] = ACTIONS(620), + [anon_sym_raw] = ACTIONS(620), + [anon_sym_sh] = ACTIONS(620), + [anon_sym_zsh] = ACTIONS(620), + [anon_sym_random] = ACTIONS(620), + [anon_sym_random_boolean] = ACTIONS(620), + [anon_sym_random_float] = ACTIONS(620), + [anon_sym_random_integer] = ACTIONS(620), + [anon_sym_columns] = ACTIONS(620), + [anon_sym_rows] = ACTIONS(620), + [anon_sym_reverse] = ACTIONS(620), }, [14] = { - [sym_statement] = STATE(13), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(13), - [ts_builtin_sym_end] = ACTIONS(318), - [sym_identifier] = ACTIONS(553), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(323), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(318), - [sym_integer] = ACTIONS(329), - [sym_float] = ACTIONS(332), - [sym_string] = ACTIONS(332), - [anon_sym_true] = ACTIONS(335), - [anon_sym_false] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_RBRACK] = ACTIONS(318), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(556), - [anon_sym_elseif] = ACTIONS(318), - [anon_sym_else] = ACTIONS(341), - [anon_sym_match] = ACTIONS(559), - [anon_sym_EQ_GT] = ACTIONS(562), - [anon_sym_while] = ACTIONS(565), - [anon_sym_for] = ACTIONS(568), - [anon_sym_transform] = ACTIONS(571), - [anon_sym_filter] = ACTIONS(574), - [anon_sym_find] = ACTIONS(577), - [anon_sym_remove] = ACTIONS(580), - [anon_sym_reduce] = ACTIONS(583), - [anon_sym_select] = ACTIONS(586), - [anon_sym_insert] = ACTIONS(589), - [anon_sym_async] = ACTIONS(592), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(595), - [anon_sym_assert] = ACTIONS(598), - [anon_sym_assert_equal] = ACTIONS(598), - [anon_sym_download] = ACTIONS(598), - [anon_sym_help] = ACTIONS(598), - [anon_sym_length] = ACTIONS(598), - [anon_sym_output] = ACTIONS(598), - [anon_sym_output_error] = ACTIONS(598), - [anon_sym_type] = ACTIONS(598), - [anon_sym_append] = ACTIONS(598), - [anon_sym_metadata] = ACTIONS(598), - [anon_sym_move] = ACTIONS(598), - [anon_sym_read] = ACTIONS(598), - [anon_sym_workdir] = ACTIONS(598), - [anon_sym_write] = ACTIONS(598), - [anon_sym_from_json] = ACTIONS(598), - [anon_sym_to_json] = ACTIONS(598), - [anon_sym_to_string] = ACTIONS(598), - [anon_sym_to_float] = ACTIONS(598), - [anon_sym_bash] = ACTIONS(598), - [anon_sym_fish] = ACTIONS(598), - [anon_sym_raw] = ACTIONS(598), - [anon_sym_sh] = ACTIONS(598), - [anon_sym_zsh] = ACTIONS(598), - [anon_sym_random] = ACTIONS(598), - [anon_sym_random_boolean] = ACTIONS(598), - [anon_sym_random_float] = ACTIONS(598), - [anon_sym_random_integer] = ACTIONS(598), - [anon_sym_columns] = ACTIONS(598), - [anon_sym_rows] = ACTIONS(598), - [anon_sym_reverse] = ACTIONS(598), + [sym_block] = STATE(811), + [sym_statement] = STATE(33), + [sym_expression] = STATE(732), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(620), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1322), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1321), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(654), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(33), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(623), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(233), + [anon_sym_RPAREN] = ACTIONS(53), + [anon_sym_COMMA] = ACTIONS(53), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_RBRACK] = ACTIONS(53), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(627), + [anon_sym_elseif] = ACTIONS(53), + [anon_sym_else] = ACTIONS(69), + [anon_sym_match] = ACTIONS(629), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_asyncfor] = ACTIONS(637), + [anon_sym_transform] = ACTIONS(639), + [anon_sym_filter] = ACTIONS(641), + [anon_sym_find] = ACTIONS(643), + [anon_sym_remove] = ACTIONS(645), + [anon_sym_reduce] = ACTIONS(647), + [anon_sym_select] = ACTIONS(649), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [15] = { - [sym_statement] = STATE(17), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(17), - [ts_builtin_sym_end] = ACTIONS(318), - [sym_identifier] = ACTIONS(601), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(323), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(318), - [sym_integer] = ACTIONS(329), - [sym_float] = ACTIONS(332), - [sym_string] = ACTIONS(332), - [anon_sym_true] = ACTIONS(335), - [anon_sym_false] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(604), - [anon_sym_elseif] = ACTIONS(318), - [anon_sym_else] = ACTIONS(341), - [anon_sym_match] = ACTIONS(607), - [anon_sym_EQ_GT] = ACTIONS(610), - [anon_sym_while] = ACTIONS(613), - [anon_sym_for] = ACTIONS(616), - [anon_sym_transform] = ACTIONS(619), - [anon_sym_filter] = ACTIONS(622), - [anon_sym_find] = ACTIONS(625), - [anon_sym_remove] = ACTIONS(628), - [anon_sym_reduce] = ACTIONS(631), - [anon_sym_select] = ACTIONS(634), - [anon_sym_insert] = ACTIONS(637), - [anon_sym_async] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(643), - [anon_sym_assert] = ACTIONS(646), - [anon_sym_assert_equal] = ACTIONS(646), - [anon_sym_download] = ACTIONS(646), - [anon_sym_help] = ACTIONS(646), - [anon_sym_length] = ACTIONS(646), - [anon_sym_output] = ACTIONS(646), - [anon_sym_output_error] = ACTIONS(646), - [anon_sym_type] = ACTIONS(646), - [anon_sym_append] = ACTIONS(646), - [anon_sym_metadata] = ACTIONS(646), - [anon_sym_move] = ACTIONS(646), - [anon_sym_read] = ACTIONS(646), - [anon_sym_workdir] = ACTIONS(646), - [anon_sym_write] = ACTIONS(646), - [anon_sym_from_json] = ACTIONS(646), - [anon_sym_to_json] = ACTIONS(646), - [anon_sym_to_string] = ACTIONS(646), - [anon_sym_to_float] = ACTIONS(646), - [anon_sym_bash] = ACTIONS(646), - [anon_sym_fish] = ACTIONS(646), - [anon_sym_raw] = ACTIONS(646), - [anon_sym_sh] = ACTIONS(646), - [anon_sym_zsh] = ACTIONS(646), - [anon_sym_random] = ACTIONS(646), - [anon_sym_random_boolean] = ACTIONS(646), - [anon_sym_random_float] = ACTIONS(646), - [anon_sym_random_integer] = ACTIONS(646), - [anon_sym_columns] = ACTIONS(646), - [anon_sym_rows] = ACTIONS(646), - [anon_sym_reverse] = ACTIONS(646), + [sym_statement] = STATE(15), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(15), + [ts_builtin_sym_end] = ACTIONS(343), + [sym_identifier] = ACTIONS(659), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(662), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(343), + [sym_integer] = ACTIONS(668), + [sym_float] = ACTIONS(671), + [sym_string] = ACTIONS(671), + [anon_sym_true] = ACTIONS(674), + [anon_sym_false] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(677), + [anon_sym_RBRACK] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(366), + [anon_sym_COLON] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(366), + [anon_sym_DASH] = ACTIONS(366), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PERCENT] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(366), + [anon_sym_GT_EQ] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_PLUS_EQ] = ACTIONS(343), + [anon_sym_DASH_EQ] = ACTIONS(343), + [anon_sym_if] = ACTIONS(368), + [anon_sym_match] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(683), + [anon_sym_while] = ACTIONS(686), + [anon_sym_for] = ACTIONS(689), + [anon_sym_asyncfor] = ACTIONS(692), + [anon_sym_transform] = ACTIONS(695), + [anon_sym_filter] = ACTIONS(698), + [anon_sym_find] = ACTIONS(701), + [anon_sym_remove] = ACTIONS(704), + [anon_sym_reduce] = ACTIONS(707), + [anon_sym_select] = ACTIONS(710), + [anon_sym_insert] = ACTIONS(713), + [anon_sym_async] = ACTIONS(716), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_table] = ACTIONS(719), + [anon_sym_assert] = ACTIONS(722), + [anon_sym_assert_equal] = ACTIONS(722), + [anon_sym_download] = ACTIONS(722), + [anon_sym_help] = ACTIONS(722), + [anon_sym_length] = ACTIONS(722), + [anon_sym_output] = ACTIONS(722), + [anon_sym_output_error] = ACTIONS(722), + [anon_sym_type] = ACTIONS(722), + [anon_sym_append] = ACTIONS(722), + [anon_sym_metadata] = ACTIONS(722), + [anon_sym_move] = ACTIONS(722), + [anon_sym_read] = ACTIONS(722), + [anon_sym_workdir] = ACTIONS(722), + [anon_sym_write] = ACTIONS(722), + [anon_sym_from_json] = ACTIONS(722), + [anon_sym_to_json] = ACTIONS(722), + [anon_sym_to_string] = ACTIONS(722), + [anon_sym_to_float] = ACTIONS(722), + [anon_sym_bash] = ACTIONS(722), + [anon_sym_fish] = ACTIONS(722), + [anon_sym_raw] = ACTIONS(722), + [anon_sym_sh] = ACTIONS(722), + [anon_sym_zsh] = ACTIONS(722), + [anon_sym_random] = ACTIONS(722), + [anon_sym_random_boolean] = ACTIONS(722), + [anon_sym_random_float] = ACTIONS(722), + [anon_sym_random_integer] = ACTIONS(722), + [anon_sym_columns] = ACTIONS(722), + [anon_sym_rows] = ACTIONS(722), + [anon_sym_reverse] = ACTIONS(722), }, [16] = { - [sym_statement] = STATE(18), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(18), - [ts_builtin_sym_end] = ACTIONS(318), - [sym_identifier] = ACTIONS(649), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_RPAREN] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(318), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_RBRACK] = ACTIONS(318), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(343), - [anon_sym_match] = ACTIONS(670), - [anon_sym_EQ_GT] = ACTIONS(673), - [anon_sym_while] = ACTIONS(676), - [anon_sym_for] = ACTIONS(679), - [anon_sym_transform] = ACTIONS(682), - [anon_sym_filter] = ACTIONS(685), - [anon_sym_find] = ACTIONS(688), - [anon_sym_remove] = ACTIONS(691), - [anon_sym_reduce] = ACTIONS(694), - [anon_sym_select] = ACTIONS(697), - [anon_sym_insert] = ACTIONS(700), - [anon_sym_async] = ACTIONS(703), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(706), - [anon_sym_assert] = ACTIONS(709), - [anon_sym_assert_equal] = ACTIONS(709), - [anon_sym_download] = ACTIONS(709), - [anon_sym_help] = ACTIONS(709), - [anon_sym_length] = ACTIONS(709), - [anon_sym_output] = ACTIONS(709), - [anon_sym_output_error] = ACTIONS(709), - [anon_sym_type] = ACTIONS(709), - [anon_sym_append] = ACTIONS(709), - [anon_sym_metadata] = ACTIONS(709), - [anon_sym_move] = ACTIONS(709), - [anon_sym_read] = ACTIONS(709), - [anon_sym_workdir] = ACTIONS(709), - [anon_sym_write] = ACTIONS(709), - [anon_sym_from_json] = ACTIONS(709), - [anon_sym_to_json] = ACTIONS(709), - [anon_sym_to_string] = ACTIONS(709), - [anon_sym_to_float] = ACTIONS(709), - [anon_sym_bash] = ACTIONS(709), - [anon_sym_fish] = ACTIONS(709), - [anon_sym_raw] = ACTIONS(709), - [anon_sym_sh] = ACTIONS(709), - [anon_sym_zsh] = ACTIONS(709), - [anon_sym_random] = ACTIONS(709), - [anon_sym_random_boolean] = ACTIONS(709), - [anon_sym_random_float] = ACTIONS(709), - [anon_sym_random_integer] = ACTIONS(709), - [anon_sym_columns] = ACTIONS(709), - [anon_sym_rows] = ACTIONS(709), - [anon_sym_reverse] = ACTIONS(709), + [sym_statement] = STATE(16), + [sym_expression] = STATE(593), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(584), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1776), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(286), + [aux_sym_block_repeat1] = STATE(16), + [ts_builtin_sym_end] = ACTIONS(343), + [sym_identifier] = ACTIONS(345), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(343), + [sym_integer] = ACTIONS(354), + [sym_float] = ACTIONS(357), + [sym_string] = ACTIONS(357), + [anon_sym_true] = ACTIONS(360), + [anon_sym_false] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_EQ] = ACTIONS(366), + [anon_sym_COLON] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(366), + [anon_sym_DASH] = ACTIONS(366), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PERCENT] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(366), + [anon_sym_GT_EQ] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_PLUS_EQ] = ACTIONS(343), + [anon_sym_DASH_EQ] = ACTIONS(343), + [anon_sym_if] = ACTIONS(725), + [anon_sym_elseif] = ACTIONS(343), + [anon_sym_else] = ACTIONS(366), + [anon_sym_match] = ACTIONS(728), + [anon_sym_EQ_GT] = ACTIONS(731), + [anon_sym_while] = ACTIONS(734), + [anon_sym_for] = ACTIONS(737), + [anon_sym_asyncfor] = ACTIONS(740), + [anon_sym_transform] = ACTIONS(743), + [anon_sym_filter] = ACTIONS(746), + [anon_sym_find] = ACTIONS(749), + [anon_sym_remove] = ACTIONS(752), + [anon_sym_reduce] = ACTIONS(755), + [anon_sym_select] = ACTIONS(758), + [anon_sym_insert] = ACTIONS(761), + [anon_sym_async] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_table] = ACTIONS(767), + [anon_sym_assert] = ACTIONS(770), + [anon_sym_assert_equal] = ACTIONS(770), + [anon_sym_download] = ACTIONS(770), + [anon_sym_help] = ACTIONS(770), + [anon_sym_length] = ACTIONS(770), + [anon_sym_output] = ACTIONS(770), + [anon_sym_output_error] = ACTIONS(770), + [anon_sym_type] = ACTIONS(770), + [anon_sym_append] = ACTIONS(770), + [anon_sym_metadata] = ACTIONS(770), + [anon_sym_move] = ACTIONS(770), + [anon_sym_read] = ACTIONS(770), + [anon_sym_workdir] = ACTIONS(770), + [anon_sym_write] = ACTIONS(770), + [anon_sym_from_json] = ACTIONS(770), + [anon_sym_to_json] = ACTIONS(770), + [anon_sym_to_string] = ACTIONS(770), + [anon_sym_to_float] = ACTIONS(770), + [anon_sym_bash] = ACTIONS(770), + [anon_sym_fish] = ACTIONS(770), + [anon_sym_raw] = ACTIONS(770), + [anon_sym_sh] = ACTIONS(770), + [anon_sym_zsh] = ACTIONS(770), + [anon_sym_random] = ACTIONS(770), + [anon_sym_random_boolean] = ACTIONS(770), + [anon_sym_random_float] = ACTIONS(770), + [anon_sym_random_integer] = ACTIONS(770), + [anon_sym_columns] = ACTIONS(770), + [anon_sym_rows] = ACTIONS(770), + [anon_sym_reverse] = ACTIONS(770), }, [17] = { - [sym_statement] = STATE(17), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(17), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(712), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(221), - [anon_sym_RPAREN] = ACTIONS(213), - [sym_integer] = ACTIONS(224), - [sym_float] = ACTIONS(227), - [sym_string] = ACTIONS(227), - [anon_sym_true] = ACTIONS(230), - [anon_sym_false] = ACTIONS(230), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(213), - [anon_sym_DOT_DOT] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_AMP_AMP] = ACTIONS(213), - [anon_sym_PIPE_PIPE] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_if] = ACTIONS(715), - [anon_sym_elseif] = ACTIONS(213), - [anon_sym_else] = ACTIONS(236), - [anon_sym_match] = ACTIONS(718), - [anon_sym_EQ_GT] = ACTIONS(721), - [anon_sym_while] = ACTIONS(724), - [anon_sym_for] = ACTIONS(727), - [anon_sym_transform] = ACTIONS(730), - [anon_sym_filter] = ACTIONS(733), - [anon_sym_find] = ACTIONS(736), - [anon_sym_remove] = ACTIONS(739), - [anon_sym_reduce] = ACTIONS(742), - [anon_sym_select] = ACTIONS(745), - [anon_sym_insert] = ACTIONS(748), - [anon_sym_async] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_table] = ACTIONS(754), - [anon_sym_assert] = ACTIONS(757), - [anon_sym_assert_equal] = ACTIONS(757), - [anon_sym_download] = ACTIONS(757), - [anon_sym_help] = ACTIONS(757), - [anon_sym_length] = ACTIONS(757), - [anon_sym_output] = ACTIONS(757), - [anon_sym_output_error] = ACTIONS(757), - [anon_sym_type] = ACTIONS(757), - [anon_sym_append] = ACTIONS(757), - [anon_sym_metadata] = ACTIONS(757), - [anon_sym_move] = ACTIONS(757), - [anon_sym_read] = ACTIONS(757), - [anon_sym_workdir] = ACTIONS(757), - [anon_sym_write] = ACTIONS(757), - [anon_sym_from_json] = ACTIONS(757), - [anon_sym_to_json] = ACTIONS(757), - [anon_sym_to_string] = ACTIONS(757), - [anon_sym_to_float] = ACTIONS(757), - [anon_sym_bash] = ACTIONS(757), - [anon_sym_fish] = ACTIONS(757), - [anon_sym_raw] = ACTIONS(757), - [anon_sym_sh] = ACTIONS(757), - [anon_sym_zsh] = ACTIONS(757), - [anon_sym_random] = ACTIONS(757), - [anon_sym_random_boolean] = ACTIONS(757), - [anon_sym_random_float] = ACTIONS(757), - [anon_sym_random_integer] = ACTIONS(757), - [anon_sym_columns] = ACTIONS(757), - [anon_sym_rows] = ACTIONS(757), - [anon_sym_reverse] = ACTIONS(757), + [sym_statement] = STATE(15), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(15), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(773), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(782), + [sym_float] = ACTIONS(785), + [sym_string] = ACTIONS(785), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_RBRACK] = ACTIONS(419), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(444), + [anon_sym_match] = ACTIONS(794), + [anon_sym_EQ_GT] = ACTIONS(797), + [anon_sym_while] = ACTIONS(800), + [anon_sym_for] = ACTIONS(803), + [anon_sym_asyncfor] = ACTIONS(806), + [anon_sym_transform] = ACTIONS(809), + [anon_sym_filter] = ACTIONS(812), + [anon_sym_find] = ACTIONS(815), + [anon_sym_remove] = ACTIONS(818), + [anon_sym_reduce] = ACTIONS(821), + [anon_sym_select] = ACTIONS(824), + [anon_sym_insert] = ACTIONS(827), + [anon_sym_async] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(833), + [anon_sym_assert] = ACTIONS(836), + [anon_sym_assert_equal] = ACTIONS(836), + [anon_sym_download] = ACTIONS(836), + [anon_sym_help] = ACTIONS(836), + [anon_sym_length] = ACTIONS(836), + [anon_sym_output] = ACTIONS(836), + [anon_sym_output_error] = ACTIONS(836), + [anon_sym_type] = ACTIONS(836), + [anon_sym_append] = ACTIONS(836), + [anon_sym_metadata] = ACTIONS(836), + [anon_sym_move] = ACTIONS(836), + [anon_sym_read] = ACTIONS(836), + [anon_sym_workdir] = ACTIONS(836), + [anon_sym_write] = ACTIONS(836), + [anon_sym_from_json] = ACTIONS(836), + [anon_sym_to_json] = ACTIONS(836), + [anon_sym_to_string] = ACTIONS(836), + [anon_sym_to_float] = ACTIONS(836), + [anon_sym_bash] = ACTIONS(836), + [anon_sym_fish] = ACTIONS(836), + [anon_sym_raw] = ACTIONS(836), + [anon_sym_sh] = ACTIONS(836), + [anon_sym_zsh] = ACTIONS(836), + [anon_sym_random] = ACTIONS(836), + [anon_sym_random_boolean] = ACTIONS(836), + [anon_sym_random_float] = ACTIONS(836), + [anon_sym_random_integer] = ACTIONS(836), + [anon_sym_columns] = ACTIONS(836), + [anon_sym_rows] = ACTIONS(836), + [anon_sym_reverse] = ACTIONS(836), }, [18] = { - [sym_statement] = STATE(18), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(18), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(760), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(213), - [sym_integer] = ACTIONS(769), - [sym_float] = ACTIONS(772), - [sym_string] = ACTIONS(772), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(213), - [anon_sym_DOT_DOT] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_AMP_AMP] = ACTIONS(213), - [anon_sym_PIPE_PIPE] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_if] = ACTIONS(238), - [anon_sym_match] = ACTIONS(781), - [anon_sym_EQ_GT] = ACTIONS(784), - [anon_sym_while] = ACTIONS(787), - [anon_sym_for] = ACTIONS(790), - [anon_sym_transform] = ACTIONS(793), - [anon_sym_filter] = ACTIONS(796), - [anon_sym_find] = ACTIONS(799), - [anon_sym_remove] = ACTIONS(802), - [anon_sym_reduce] = ACTIONS(805), - [anon_sym_select] = ACTIONS(808), - [anon_sym_insert] = ACTIONS(811), - [anon_sym_async] = ACTIONS(814), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_table] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(820), - [anon_sym_assert_equal] = ACTIONS(820), - [anon_sym_download] = ACTIONS(820), - [anon_sym_help] = ACTIONS(820), - [anon_sym_length] = ACTIONS(820), - [anon_sym_output] = ACTIONS(820), - [anon_sym_output_error] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_append] = ACTIONS(820), - [anon_sym_metadata] = ACTIONS(820), - [anon_sym_move] = ACTIONS(820), - [anon_sym_read] = ACTIONS(820), - [anon_sym_workdir] = ACTIONS(820), - [anon_sym_write] = ACTIONS(820), - [anon_sym_from_json] = ACTIONS(820), - [anon_sym_to_json] = ACTIONS(820), - [anon_sym_to_string] = ACTIONS(820), - [anon_sym_to_float] = ACTIONS(820), - [anon_sym_bash] = ACTIONS(820), - [anon_sym_fish] = ACTIONS(820), - [anon_sym_raw] = ACTIONS(820), - [anon_sym_sh] = ACTIONS(820), - [anon_sym_zsh] = ACTIONS(820), - [anon_sym_random] = ACTIONS(820), - [anon_sym_random_boolean] = ACTIONS(820), - [anon_sym_random_float] = ACTIONS(820), - [anon_sym_random_integer] = ACTIONS(820), - [anon_sym_columns] = ACTIONS(820), - [anon_sym_rows] = ACTIONS(820), - [anon_sym_reverse] = ACTIONS(820), - }, - [19] = { - [sym_block] = STATE(463), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [ts_builtin_sym_end] = ACTIONS(51), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(51), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(51), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [20] = { - [sym_block] = STATE(689), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [ts_builtin_sym_end] = ACTIONS(51), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(51), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [21] = { - [sym_statement] = STATE(18), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(18), - [sym_identifier] = ACTIONS(649), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_RPAREN] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(318), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_RBRACK] = ACTIONS(318), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(673), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(706), - [anon_sym_assert] = ACTIONS(709), - [anon_sym_assert_equal] = ACTIONS(709), - [anon_sym_download] = ACTIONS(709), - [anon_sym_help] = ACTIONS(709), - [anon_sym_length] = ACTIONS(709), - [anon_sym_output] = ACTIONS(709), - [anon_sym_output_error] = ACTIONS(709), - [anon_sym_type] = ACTIONS(709), - [anon_sym_append] = ACTIONS(709), - [anon_sym_metadata] = ACTIONS(709), - [anon_sym_move] = ACTIONS(709), - [anon_sym_read] = ACTIONS(709), - [anon_sym_workdir] = ACTIONS(709), - [anon_sym_write] = ACTIONS(709), - [anon_sym_from_json] = ACTIONS(709), - [anon_sym_to_json] = ACTIONS(709), - [anon_sym_to_string] = ACTIONS(709), - [anon_sym_to_float] = ACTIONS(709), - [anon_sym_bash] = ACTIONS(709), - [anon_sym_fish] = ACTIONS(709), - [anon_sym_raw] = ACTIONS(709), - [anon_sym_sh] = ACTIONS(709), - [anon_sym_zsh] = ACTIONS(709), - [anon_sym_random] = ACTIONS(709), - [anon_sym_random_boolean] = ACTIONS(709), - [anon_sym_random_float] = ACTIONS(709), - [anon_sym_random_integer] = ACTIONS(709), - [anon_sym_columns] = ACTIONS(709), - [anon_sym_rows] = ACTIONS(709), - [anon_sym_reverse] = ACTIONS(709), - }, - [22] = { - [sym_block] = STATE(689), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(623), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(664), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(51), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(51), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), + [sym_block] = STATE(811), + [sym_statement] = STATE(38), + [sym_expression] = STATE(779), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(655), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1242), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1243), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(724), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1860), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(341), + [aux_sym_block_repeat1] = STATE(38), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(839), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(233), + [anon_sym_RPAREN] = ACTIONS(53), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(841), + [anon_sym_DOT_DOT] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(843), + [anon_sym_elseif] = ACTIONS(53), + [anon_sym_else] = ACTIONS(69), + [anon_sym_match] = ACTIONS(845), + [anon_sym_EQ_GT] = ACTIONS(847), + [anon_sym_while] = ACTIONS(849), + [anon_sym_for] = ACTIONS(851), + [anon_sym_asyncfor] = ACTIONS(853), [anon_sym_transform] = ACTIONS(855), [anon_sym_filter] = ACTIONS(857), [anon_sym_find] = ACTIONS(859), [anon_sym_remove] = ACTIONS(861), [anon_sym_reduce] = ACTIONS(863), [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_insert] = ACTIONS(867), + [anon_sym_async] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(871), + [anon_sym_assert] = ACTIONS(873), + [anon_sym_assert_equal] = ACTIONS(873), + [anon_sym_download] = ACTIONS(873), + [anon_sym_help] = ACTIONS(873), + [anon_sym_length] = ACTIONS(873), + [anon_sym_output] = ACTIONS(873), + [anon_sym_output_error] = ACTIONS(873), + [anon_sym_type] = ACTIONS(873), + [anon_sym_append] = ACTIONS(873), + [anon_sym_metadata] = ACTIONS(873), + [anon_sym_move] = ACTIONS(873), + [anon_sym_read] = ACTIONS(873), + [anon_sym_workdir] = ACTIONS(873), + [anon_sym_write] = ACTIONS(873), + [anon_sym_from_json] = ACTIONS(873), + [anon_sym_to_json] = ACTIONS(873), + [anon_sym_to_string] = ACTIONS(873), + [anon_sym_to_float] = ACTIONS(873), + [anon_sym_bash] = ACTIONS(873), + [anon_sym_fish] = ACTIONS(873), + [anon_sym_raw] = ACTIONS(873), + [anon_sym_sh] = ACTIONS(873), + [anon_sym_zsh] = ACTIONS(873), + [anon_sym_random] = ACTIONS(873), + [anon_sym_random_boolean] = ACTIONS(873), + [anon_sym_random_float] = ACTIONS(873), + [anon_sym_random_integer] = ACTIONS(873), + [anon_sym_columns] = ACTIONS(873), + [anon_sym_rows] = ACTIONS(873), + [anon_sym_reverse] = ACTIONS(873), + }, + [19] = { + [sym_block] = STATE(839), + [sym_statement] = STATE(39), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1305), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1306), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(39), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(875), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(53), + [anon_sym_COMMA] = ACTIONS(53), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(53), + [anon_sym_COLON] = ACTIONS(879), + [anon_sym_DOT_DOT] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), + }, + [20] = { + [sym_block] = STATE(735), + [sym_statement] = STATE(45), + [sym_expression] = STATE(795), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1270), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1260), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(611), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(2015), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(325), + [aux_sym_block_repeat1] = STATE(45), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(53), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_EQ] = ACTIONS(69), + [anon_sym_COLON] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(53), + [anon_sym_DASH_EQ] = ACTIONS(53), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(913), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_while] = ACTIONS(917), + [anon_sym_for] = ACTIONS(919), + [anon_sym_asyncfor] = ACTIONS(921), + [anon_sym_transform] = ACTIONS(923), + [anon_sym_filter] = ACTIONS(925), + [anon_sym_find] = ACTIONS(927), + [anon_sym_remove] = ACTIONS(929), + [anon_sym_reduce] = ACTIONS(931), + [anon_sym_select] = ACTIONS(933), + [anon_sym_insert] = ACTIONS(935), + [anon_sym_async] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(939), + [anon_sym_assert] = ACTIONS(941), + [anon_sym_assert_equal] = ACTIONS(941), + [anon_sym_download] = ACTIONS(941), + [anon_sym_help] = ACTIONS(941), + [anon_sym_length] = ACTIONS(941), + [anon_sym_output] = ACTIONS(941), + [anon_sym_output_error] = ACTIONS(941), + [anon_sym_type] = ACTIONS(941), + [anon_sym_append] = ACTIONS(941), + [anon_sym_metadata] = ACTIONS(941), + [anon_sym_move] = ACTIONS(941), + [anon_sym_read] = ACTIONS(941), + [anon_sym_workdir] = ACTIONS(941), + [anon_sym_write] = ACTIONS(941), + [anon_sym_from_json] = ACTIONS(941), + [anon_sym_to_json] = ACTIONS(941), + [anon_sym_to_string] = ACTIONS(941), + [anon_sym_to_float] = ACTIONS(941), + [anon_sym_bash] = ACTIONS(941), + [anon_sym_fish] = ACTIONS(941), + [anon_sym_raw] = ACTIONS(941), + [anon_sym_sh] = ACTIONS(941), + [anon_sym_zsh] = ACTIONS(941), + [anon_sym_random] = ACTIONS(941), + [anon_sym_random_boolean] = ACTIONS(941), + [anon_sym_random_float] = ACTIONS(941), + [anon_sym_random_integer] = ACTIONS(941), + [anon_sym_columns] = ACTIONS(941), + [anon_sym_rows] = ACTIONS(941), + [anon_sym_reverse] = ACTIONS(941), + }, + [21] = { + [sym_statement] = STATE(16), + [sym_expression] = STATE(593), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(584), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1776), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(286), + [aux_sym_block_repeat1] = STATE(16), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(421), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(419), + [sym_integer] = ACTIONS(430), + [sym_float] = ACTIONS(433), + [sym_string] = ACTIONS(433), + [anon_sym_true] = ACTIONS(436), + [anon_sym_false] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(943), + [anon_sym_elseif] = ACTIONS(419), + [anon_sym_else] = ACTIONS(442), + [anon_sym_match] = ACTIONS(946), + [anon_sym_EQ_GT] = ACTIONS(949), + [anon_sym_while] = ACTIONS(952), + [anon_sym_for] = ACTIONS(955), + [anon_sym_asyncfor] = ACTIONS(958), + [anon_sym_transform] = ACTIONS(961), + [anon_sym_filter] = ACTIONS(964), + [anon_sym_find] = ACTIONS(967), + [anon_sym_remove] = ACTIONS(970), + [anon_sym_reduce] = ACTIONS(973), + [anon_sym_select] = ACTIONS(976), + [anon_sym_insert] = ACTIONS(979), + [anon_sym_async] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(985), + [anon_sym_assert] = ACTIONS(988), + [anon_sym_assert_equal] = ACTIONS(988), + [anon_sym_download] = ACTIONS(988), + [anon_sym_help] = ACTIONS(988), + [anon_sym_length] = ACTIONS(988), + [anon_sym_output] = ACTIONS(988), + [anon_sym_output_error] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_append] = ACTIONS(988), + [anon_sym_metadata] = ACTIONS(988), + [anon_sym_move] = ACTIONS(988), + [anon_sym_read] = ACTIONS(988), + [anon_sym_workdir] = ACTIONS(988), + [anon_sym_write] = ACTIONS(988), + [anon_sym_from_json] = ACTIONS(988), + [anon_sym_to_json] = ACTIONS(988), + [anon_sym_to_string] = ACTIONS(988), + [anon_sym_to_float] = ACTIONS(988), + [anon_sym_bash] = ACTIONS(988), + [anon_sym_fish] = ACTIONS(988), + [anon_sym_raw] = ACTIONS(988), + [anon_sym_sh] = ACTIONS(988), + [anon_sym_zsh] = ACTIONS(988), + [anon_sym_random] = ACTIONS(988), + [anon_sym_random_boolean] = ACTIONS(988), + [anon_sym_random_float] = ACTIONS(988), + [anon_sym_random_integer] = ACTIONS(988), + [anon_sym_columns] = ACTIONS(988), + [anon_sym_rows] = ACTIONS(988), + [anon_sym_reverse] = ACTIONS(988), + }, + [22] = { + [sym_statement] = STATE(29), + [sym_expression] = STATE(685), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(576), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(647), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [aux_sym_block_repeat1] = STATE(29), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(991), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(997), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(1000), + [sym_float] = ACTIONS(1003), + [sym_string] = ACTIONS(1003), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1009), + [anon_sym_RBRACK] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_elseif] = ACTIONS(419), + [anon_sym_else] = ACTIONS(442), + [anon_sym_match] = ACTIONS(1015), + [anon_sym_EQ_GT] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_asyncfor] = ACTIONS(1027), + [anon_sym_transform] = ACTIONS(1030), + [anon_sym_filter] = ACTIONS(1033), + [anon_sym_find] = ACTIONS(1036), + [anon_sym_remove] = ACTIONS(1039), + [anon_sym_reduce] = ACTIONS(1042), + [anon_sym_select] = ACTIONS(1045), + [anon_sym_insert] = ACTIONS(1048), + [anon_sym_async] = ACTIONS(1051), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(1054), + [anon_sym_assert] = ACTIONS(1057), + [anon_sym_assert_equal] = ACTIONS(1057), + [anon_sym_download] = ACTIONS(1057), + [anon_sym_help] = ACTIONS(1057), + [anon_sym_length] = ACTIONS(1057), + [anon_sym_output] = ACTIONS(1057), + [anon_sym_output_error] = ACTIONS(1057), + [anon_sym_type] = ACTIONS(1057), + [anon_sym_append] = ACTIONS(1057), + [anon_sym_metadata] = ACTIONS(1057), + [anon_sym_move] = ACTIONS(1057), + [anon_sym_read] = ACTIONS(1057), + [anon_sym_workdir] = ACTIONS(1057), + [anon_sym_write] = ACTIONS(1057), + [anon_sym_from_json] = ACTIONS(1057), + [anon_sym_to_json] = ACTIONS(1057), + [anon_sym_to_string] = ACTIONS(1057), + [anon_sym_to_float] = ACTIONS(1057), + [anon_sym_bash] = ACTIONS(1057), + [anon_sym_fish] = ACTIONS(1057), + [anon_sym_raw] = ACTIONS(1057), + [anon_sym_sh] = ACTIONS(1057), + [anon_sym_zsh] = ACTIONS(1057), + [anon_sym_random] = ACTIONS(1057), + [anon_sym_random_boolean] = ACTIONS(1057), + [anon_sym_random_float] = ACTIONS(1057), + [anon_sym_random_integer] = ACTIONS(1057), + [anon_sym_columns] = ACTIONS(1057), + [anon_sym_rows] = ACTIONS(1057), + [anon_sym_reverse] = ACTIONS(1057), }, [23] = { [sym_statement] = STATE(23), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), + [sym_expression] = STATE(663), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(637), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1998), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(296), [aux_sym_block_repeat1] = STATE(23), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(869), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(221), - [anon_sym_RPAREN] = ACTIONS(213), - [sym_integer] = ACTIONS(224), - [sym_float] = ACTIONS(227), - [sym_string] = ACTIONS(227), - [anon_sym_true] = ACTIONS(230), - [anon_sym_false] = ACTIONS(230), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_AMP_AMP] = ACTIONS(213), - [anon_sym_PIPE_PIPE] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_if] = ACTIONS(872), - [anon_sym_elseif] = ACTIONS(213), - [anon_sym_else] = ACTIONS(236), - [anon_sym_match] = ACTIONS(875), - [anon_sym_EQ_GT] = ACTIONS(878), - [anon_sym_while] = ACTIONS(881), - [anon_sym_for] = ACTIONS(884), - [anon_sym_transform] = ACTIONS(887), - [anon_sym_filter] = ACTIONS(890), - [anon_sym_find] = ACTIONS(893), - [anon_sym_remove] = ACTIONS(896), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(902), - [anon_sym_insert] = ACTIONS(905), - [anon_sym_async] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_table] = ACTIONS(911), - [anon_sym_assert] = ACTIONS(914), - [anon_sym_assert_equal] = ACTIONS(914), - [anon_sym_download] = ACTIONS(914), - [anon_sym_help] = ACTIONS(914), - [anon_sym_length] = ACTIONS(914), - [anon_sym_output] = ACTIONS(914), - [anon_sym_output_error] = ACTIONS(914), - [anon_sym_type] = ACTIONS(914), - [anon_sym_append] = ACTIONS(914), - [anon_sym_metadata] = ACTIONS(914), - [anon_sym_move] = ACTIONS(914), - [anon_sym_read] = ACTIONS(914), - [anon_sym_workdir] = ACTIONS(914), - [anon_sym_write] = ACTIONS(914), - [anon_sym_from_json] = ACTIONS(914), - [anon_sym_to_json] = ACTIONS(914), - [anon_sym_to_string] = ACTIONS(914), - [anon_sym_to_float] = ACTIONS(914), - [anon_sym_bash] = ACTIONS(914), - [anon_sym_fish] = ACTIONS(914), - [anon_sym_raw] = ACTIONS(914), - [anon_sym_sh] = ACTIONS(914), - [anon_sym_zsh] = ACTIONS(914), - [anon_sym_random] = ACTIONS(914), - [anon_sym_random_boolean] = ACTIONS(914), - [anon_sym_random_float] = ACTIONS(914), - [anon_sym_random_integer] = ACTIONS(914), - [anon_sym_columns] = ACTIONS(914), - [anon_sym_rows] = ACTIONS(914), - [anon_sym_reverse] = ACTIONS(914), + [ts_builtin_sym_end] = ACTIONS(343), + [sym_identifier] = ACTIONS(345), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(343), + [sym_integer] = ACTIONS(354), + [sym_float] = ACTIONS(357), + [sym_string] = ACTIONS(357), + [anon_sym_true] = ACTIONS(360), + [anon_sym_false] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_EQ] = ACTIONS(366), + [anon_sym_COLON] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(366), + [anon_sym_DASH] = ACTIONS(366), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PERCENT] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(366), + [anon_sym_GT_EQ] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_PLUS_EQ] = ACTIONS(343), + [anon_sym_DASH_EQ] = ACTIONS(343), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_elseif] = ACTIONS(343), + [anon_sym_else] = ACTIONS(366), + [anon_sym_match] = ACTIONS(1063), + [anon_sym_EQ_GT] = ACTIONS(1066), + [anon_sym_while] = ACTIONS(1069), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_asyncfor] = ACTIONS(1075), + [anon_sym_transform] = ACTIONS(1078), + [anon_sym_filter] = ACTIONS(1081), + [anon_sym_find] = ACTIONS(1084), + [anon_sym_remove] = ACTIONS(1087), + [anon_sym_reduce] = ACTIONS(1090), + [anon_sym_select] = ACTIONS(1093), + [anon_sym_insert] = ACTIONS(1096), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_table] = ACTIONS(1102), + [anon_sym_assert] = ACTIONS(1105), + [anon_sym_assert_equal] = ACTIONS(1105), + [anon_sym_download] = ACTIONS(1105), + [anon_sym_help] = ACTIONS(1105), + [anon_sym_length] = ACTIONS(1105), + [anon_sym_output] = ACTIONS(1105), + [anon_sym_output_error] = ACTIONS(1105), + [anon_sym_type] = ACTIONS(1105), + [anon_sym_append] = ACTIONS(1105), + [anon_sym_metadata] = ACTIONS(1105), + [anon_sym_move] = ACTIONS(1105), + [anon_sym_read] = ACTIONS(1105), + [anon_sym_workdir] = ACTIONS(1105), + [anon_sym_write] = ACTIONS(1105), + [anon_sym_from_json] = ACTIONS(1105), + [anon_sym_to_json] = ACTIONS(1105), + [anon_sym_to_string] = ACTIONS(1105), + [anon_sym_to_float] = ACTIONS(1105), + [anon_sym_bash] = ACTIONS(1105), + [anon_sym_fish] = ACTIONS(1105), + [anon_sym_raw] = ACTIONS(1105), + [anon_sym_sh] = ACTIONS(1105), + [anon_sym_zsh] = ACTIONS(1105), + [anon_sym_random] = ACTIONS(1105), + [anon_sym_random_boolean] = ACTIONS(1105), + [anon_sym_random_float] = ACTIONS(1105), + [anon_sym_random_integer] = ACTIONS(1105), + [anon_sym_columns] = ACTIONS(1105), + [anon_sym_rows] = ACTIONS(1105), + [anon_sym_reverse] = ACTIONS(1105), }, [24] = { - [sym_statement] = STATE(23), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(23), - [ts_builtin_sym_end] = ACTIONS(318), - [sym_identifier] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(323), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(318), - [sym_integer] = ACTIONS(329), - [sym_float] = ACTIONS(332), - [sym_string] = ACTIONS(332), - [anon_sym_true] = ACTIONS(335), - [anon_sym_false] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(920), - [anon_sym_elseif] = ACTIONS(318), - [anon_sym_else] = ACTIONS(341), - [anon_sym_match] = ACTIONS(923), - [anon_sym_EQ_GT] = ACTIONS(926), - [anon_sym_while] = ACTIONS(929), - [anon_sym_for] = ACTIONS(932), - [anon_sym_transform] = ACTIONS(935), - [anon_sym_filter] = ACTIONS(938), - [anon_sym_find] = ACTIONS(941), - [anon_sym_remove] = ACTIONS(944), - [anon_sym_reduce] = ACTIONS(947), - [anon_sym_select] = ACTIONS(950), - [anon_sym_insert] = ACTIONS(953), - [anon_sym_async] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(959), - [anon_sym_assert] = ACTIONS(962), - [anon_sym_assert_equal] = ACTIONS(962), - [anon_sym_download] = ACTIONS(962), - [anon_sym_help] = ACTIONS(962), - [anon_sym_length] = ACTIONS(962), - [anon_sym_output] = ACTIONS(962), - [anon_sym_output_error] = ACTIONS(962), - [anon_sym_type] = ACTIONS(962), - [anon_sym_append] = ACTIONS(962), - [anon_sym_metadata] = ACTIONS(962), - [anon_sym_move] = ACTIONS(962), - [anon_sym_read] = ACTIONS(962), - [anon_sym_workdir] = ACTIONS(962), - [anon_sym_write] = ACTIONS(962), - [anon_sym_from_json] = ACTIONS(962), - [anon_sym_to_json] = ACTIONS(962), - [anon_sym_to_string] = ACTIONS(962), - [anon_sym_to_float] = ACTIONS(962), - [anon_sym_bash] = ACTIONS(962), - [anon_sym_fish] = ACTIONS(962), - [anon_sym_raw] = ACTIONS(962), - [anon_sym_sh] = ACTIONS(962), - [anon_sym_zsh] = ACTIONS(962), - [anon_sym_random] = ACTIONS(962), - [anon_sym_random_boolean] = ACTIONS(962), - [anon_sym_random_float] = ACTIONS(962), - [anon_sym_random_integer] = ACTIONS(962), - [anon_sym_columns] = ACTIONS(962), - [anon_sym_rows] = ACTIONS(962), - [anon_sym_reverse] = ACTIONS(962), + [sym_statement] = STATE(25), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(25), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(773), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(782), + [sym_float] = ACTIONS(785), + [sym_string] = ACTIONS(785), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_RBRACK] = ACTIONS(419), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(527), + [anon_sym_match] = ACTIONS(1108), + [anon_sym_EQ_GT] = ACTIONS(1111), + [anon_sym_while] = ACTIONS(1114), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_asyncfor] = ACTIONS(1120), + [anon_sym_transform] = ACTIONS(1123), + [anon_sym_filter] = ACTIONS(1126), + [anon_sym_find] = ACTIONS(1129), + [anon_sym_remove] = ACTIONS(1132), + [anon_sym_reduce] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(1138), + [anon_sym_insert] = ACTIONS(1141), + [anon_sym_async] = ACTIONS(1144), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(1147), + [anon_sym_assert] = ACTIONS(1150), + [anon_sym_assert_equal] = ACTIONS(1150), + [anon_sym_download] = ACTIONS(1150), + [anon_sym_help] = ACTIONS(1150), + [anon_sym_length] = ACTIONS(1150), + [anon_sym_output] = ACTIONS(1150), + [anon_sym_output_error] = ACTIONS(1150), + [anon_sym_type] = ACTIONS(1150), + [anon_sym_append] = ACTIONS(1150), + [anon_sym_metadata] = ACTIONS(1150), + [anon_sym_move] = ACTIONS(1150), + [anon_sym_read] = ACTIONS(1150), + [anon_sym_workdir] = ACTIONS(1150), + [anon_sym_write] = ACTIONS(1150), + [anon_sym_from_json] = ACTIONS(1150), + [anon_sym_to_json] = ACTIONS(1150), + [anon_sym_to_string] = ACTIONS(1150), + [anon_sym_to_float] = ACTIONS(1150), + [anon_sym_bash] = ACTIONS(1150), + [anon_sym_fish] = ACTIONS(1150), + [anon_sym_raw] = ACTIONS(1150), + [anon_sym_sh] = ACTIONS(1150), + [anon_sym_zsh] = ACTIONS(1150), + [anon_sym_random] = ACTIONS(1150), + [anon_sym_random_boolean] = ACTIONS(1150), + [anon_sym_random_float] = ACTIONS(1150), + [anon_sym_random_integer] = ACTIONS(1150), + [anon_sym_columns] = ACTIONS(1150), + [anon_sym_rows] = ACTIONS(1150), + [anon_sym_reverse] = ACTIONS(1150), }, [25] = { [sym_statement] = STATE(25), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), [aux_sym_block_repeat1] = STATE(25), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(965), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(213), - [sym_integer] = ACTIONS(769), - [sym_float] = ACTIONS(772), - [sym_string] = ACTIONS(772), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_AMP_AMP] = ACTIONS(213), - [anon_sym_PIPE_PIPE] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_if] = ACTIONS(508), - [anon_sym_match] = ACTIONS(968), - [anon_sym_EQ_GT] = ACTIONS(971), - [anon_sym_while] = ACTIONS(974), - [anon_sym_for] = ACTIONS(977), - [anon_sym_transform] = ACTIONS(980), - [anon_sym_filter] = ACTIONS(983), - [anon_sym_find] = ACTIONS(986), - [anon_sym_remove] = ACTIONS(989), - [anon_sym_reduce] = ACTIONS(992), - [anon_sym_select] = ACTIONS(995), - [anon_sym_insert] = ACTIONS(998), - [anon_sym_async] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_table] = ACTIONS(1004), - [anon_sym_assert] = ACTIONS(1007), - [anon_sym_assert_equal] = ACTIONS(1007), - [anon_sym_download] = ACTIONS(1007), - [anon_sym_help] = ACTIONS(1007), - [anon_sym_length] = ACTIONS(1007), - [anon_sym_output] = ACTIONS(1007), - [anon_sym_output_error] = ACTIONS(1007), - [anon_sym_type] = ACTIONS(1007), - [anon_sym_append] = ACTIONS(1007), - [anon_sym_metadata] = ACTIONS(1007), - [anon_sym_move] = ACTIONS(1007), - [anon_sym_read] = ACTIONS(1007), - [anon_sym_workdir] = ACTIONS(1007), - [anon_sym_write] = ACTIONS(1007), - [anon_sym_from_json] = ACTIONS(1007), - [anon_sym_to_json] = ACTIONS(1007), - [anon_sym_to_string] = ACTIONS(1007), - [anon_sym_to_float] = ACTIONS(1007), - [anon_sym_bash] = ACTIONS(1007), - [anon_sym_fish] = ACTIONS(1007), - [anon_sym_raw] = ACTIONS(1007), - [anon_sym_sh] = ACTIONS(1007), - [anon_sym_zsh] = ACTIONS(1007), - [anon_sym_random] = ACTIONS(1007), - [anon_sym_random_boolean] = ACTIONS(1007), - [anon_sym_random_float] = ACTIONS(1007), - [anon_sym_random_integer] = ACTIONS(1007), - [anon_sym_columns] = ACTIONS(1007), - [anon_sym_rows] = ACTIONS(1007), - [anon_sym_reverse] = ACTIONS(1007), + [ts_builtin_sym_end] = ACTIONS(343), + [sym_identifier] = ACTIONS(659), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(662), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(343), + [sym_integer] = ACTIONS(668), + [sym_float] = ACTIONS(671), + [sym_string] = ACTIONS(671), + [anon_sym_true] = ACTIONS(674), + [anon_sym_false] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(677), + [anon_sym_RBRACK] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(366), + [anon_sym_COLON] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(366), + [anon_sym_DASH] = ACTIONS(366), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PERCENT] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(366), + [anon_sym_GT_EQ] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_PLUS_EQ] = ACTIONS(343), + [anon_sym_DASH_EQ] = ACTIONS(343), + [anon_sym_if] = ACTIONS(575), + [anon_sym_match] = ACTIONS(1153), + [anon_sym_EQ_GT] = ACTIONS(1156), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_asyncfor] = ACTIONS(1165), + [anon_sym_transform] = ACTIONS(1168), + [anon_sym_filter] = ACTIONS(1171), + [anon_sym_find] = ACTIONS(1174), + [anon_sym_remove] = ACTIONS(1177), + [anon_sym_reduce] = ACTIONS(1180), + [anon_sym_select] = ACTIONS(1183), + [anon_sym_insert] = ACTIONS(1186), + [anon_sym_async] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_table] = ACTIONS(1192), + [anon_sym_assert] = ACTIONS(1195), + [anon_sym_assert_equal] = ACTIONS(1195), + [anon_sym_download] = ACTIONS(1195), + [anon_sym_help] = ACTIONS(1195), + [anon_sym_length] = ACTIONS(1195), + [anon_sym_output] = ACTIONS(1195), + [anon_sym_output_error] = ACTIONS(1195), + [anon_sym_type] = ACTIONS(1195), + [anon_sym_append] = ACTIONS(1195), + [anon_sym_metadata] = ACTIONS(1195), + [anon_sym_move] = ACTIONS(1195), + [anon_sym_read] = ACTIONS(1195), + [anon_sym_workdir] = ACTIONS(1195), + [anon_sym_write] = ACTIONS(1195), + [anon_sym_from_json] = ACTIONS(1195), + [anon_sym_to_json] = ACTIONS(1195), + [anon_sym_to_string] = ACTIONS(1195), + [anon_sym_to_float] = ACTIONS(1195), + [anon_sym_bash] = ACTIONS(1195), + [anon_sym_fish] = ACTIONS(1195), + [anon_sym_raw] = ACTIONS(1195), + [anon_sym_sh] = ACTIONS(1195), + [anon_sym_zsh] = ACTIONS(1195), + [anon_sym_random] = ACTIONS(1195), + [anon_sym_random_boolean] = ACTIONS(1195), + [anon_sym_random_float] = ACTIONS(1195), + [anon_sym_random_integer] = ACTIONS(1195), + [anon_sym_columns] = ACTIONS(1195), + [anon_sym_rows] = ACTIONS(1195), + [anon_sym_reverse] = ACTIONS(1195), }, [26] = { - [sym_block] = STATE(689), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(623), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(664), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(51), + [sym_block] = STATE(839), + [sym_statement] = STATE(46), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1381), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1380), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(1198), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(51), + [anon_sym_RPAREN] = ACTIONS(53), + [anon_sym_COMMA] = ACTIONS(53), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), [sym_string] = ACTIONS(13), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(53), + [anon_sym_COLON] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [27] = { - [sym_statement] = STATE(25), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(25), - [ts_builtin_sym_end] = ACTIONS(318), - [sym_identifier] = ACTIONS(1010), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_RPAREN] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(318), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_RBRACK] = ACTIONS(318), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(556), - [anon_sym_match] = ACTIONS(1013), - [anon_sym_EQ_GT] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1019), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_transform] = ACTIONS(1025), - [anon_sym_filter] = ACTIONS(1028), - [anon_sym_find] = ACTIONS(1031), - [anon_sym_remove] = ACTIONS(1034), - [anon_sym_reduce] = ACTIONS(1037), - [anon_sym_select] = ACTIONS(1040), - [anon_sym_insert] = ACTIONS(1043), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(1049), - [anon_sym_assert] = ACTIONS(1052), - [anon_sym_assert_equal] = ACTIONS(1052), - [anon_sym_download] = ACTIONS(1052), - [anon_sym_help] = ACTIONS(1052), - [anon_sym_length] = ACTIONS(1052), - [anon_sym_output] = ACTIONS(1052), - [anon_sym_output_error] = ACTIONS(1052), - [anon_sym_type] = ACTIONS(1052), - [anon_sym_append] = ACTIONS(1052), - [anon_sym_metadata] = ACTIONS(1052), - [anon_sym_move] = ACTIONS(1052), - [anon_sym_read] = ACTIONS(1052), - [anon_sym_workdir] = ACTIONS(1052), - [anon_sym_write] = ACTIONS(1052), - [anon_sym_from_json] = ACTIONS(1052), - [anon_sym_to_json] = ACTIONS(1052), - [anon_sym_to_string] = ACTIONS(1052), - [anon_sym_to_float] = ACTIONS(1052), - [anon_sym_bash] = ACTIONS(1052), - [anon_sym_fish] = ACTIONS(1052), - [anon_sym_raw] = ACTIONS(1052), - [anon_sym_sh] = ACTIONS(1052), - [anon_sym_zsh] = ACTIONS(1052), - [anon_sym_random] = ACTIONS(1052), - [anon_sym_random_boolean] = ACTIONS(1052), - [anon_sym_random_float] = ACTIONS(1052), - [anon_sym_random_integer] = ACTIONS(1052), - [anon_sym_columns] = ACTIONS(1052), - [anon_sym_rows] = ACTIONS(1052), - [anon_sym_reverse] = ACTIONS(1052), + [sym_statement] = STATE(23), + [sym_expression] = STATE(663), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(637), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1998), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(296), + [aux_sym_block_repeat1] = STATE(23), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(421), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(419), + [sym_integer] = ACTIONS(430), + [sym_float] = ACTIONS(433), + [sym_string] = ACTIONS(433), + [anon_sym_true] = ACTIONS(436), + [anon_sym_false] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_elseif] = ACTIONS(419), + [anon_sym_else] = ACTIONS(442), + [anon_sym_match] = ACTIONS(1235), + [anon_sym_EQ_GT] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1244), + [anon_sym_asyncfor] = ACTIONS(1247), + [anon_sym_transform] = ACTIONS(1250), + [anon_sym_filter] = ACTIONS(1253), + [anon_sym_find] = ACTIONS(1256), + [anon_sym_remove] = ACTIONS(1259), + [anon_sym_reduce] = ACTIONS(1262), + [anon_sym_select] = ACTIONS(1265), + [anon_sym_insert] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(1274), + [anon_sym_assert] = ACTIONS(1277), + [anon_sym_assert_equal] = ACTIONS(1277), + [anon_sym_download] = ACTIONS(1277), + [anon_sym_help] = ACTIONS(1277), + [anon_sym_length] = ACTIONS(1277), + [anon_sym_output] = ACTIONS(1277), + [anon_sym_output_error] = ACTIONS(1277), + [anon_sym_type] = ACTIONS(1277), + [anon_sym_append] = ACTIONS(1277), + [anon_sym_metadata] = ACTIONS(1277), + [anon_sym_move] = ACTIONS(1277), + [anon_sym_read] = ACTIONS(1277), + [anon_sym_workdir] = ACTIONS(1277), + [anon_sym_write] = ACTIONS(1277), + [anon_sym_from_json] = ACTIONS(1277), + [anon_sym_to_json] = ACTIONS(1277), + [anon_sym_to_string] = ACTIONS(1277), + [anon_sym_to_float] = ACTIONS(1277), + [anon_sym_bash] = ACTIONS(1277), + [anon_sym_fish] = ACTIONS(1277), + [anon_sym_raw] = ACTIONS(1277), + [anon_sym_sh] = ACTIONS(1277), + [anon_sym_zsh] = ACTIONS(1277), + [anon_sym_random] = ACTIONS(1277), + [anon_sym_random_boolean] = ACTIONS(1277), + [anon_sym_random_float] = ACTIONS(1277), + [anon_sym_random_integer] = ACTIONS(1277), + [anon_sym_columns] = ACTIONS(1277), + [anon_sym_rows] = ACTIONS(1277), + [anon_sym_reverse] = ACTIONS(1277), }, [28] = { - [sym_statement] = STATE(30), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(30), - [ts_builtin_sym_end] = ACTIONS(318), - [sym_identifier] = ACTIONS(1055), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_RPAREN] = ACTIONS(318), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(604), - [anon_sym_match] = ACTIONS(1058), - [anon_sym_EQ_GT] = ACTIONS(1061), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1067), - [anon_sym_transform] = ACTIONS(1070), - [anon_sym_filter] = ACTIONS(1073), - [anon_sym_find] = ACTIONS(1076), - [anon_sym_remove] = ACTIONS(1079), - [anon_sym_reduce] = ACTIONS(1082), - [anon_sym_select] = ACTIONS(1085), - [anon_sym_insert] = ACTIONS(1088), - [anon_sym_async] = ACTIONS(1091), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(1094), - [anon_sym_assert] = ACTIONS(1097), - [anon_sym_assert_equal] = ACTIONS(1097), - [anon_sym_download] = ACTIONS(1097), - [anon_sym_help] = ACTIONS(1097), - [anon_sym_length] = ACTIONS(1097), - [anon_sym_output] = ACTIONS(1097), - [anon_sym_output_error] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_append] = ACTIONS(1097), - [anon_sym_metadata] = ACTIONS(1097), - [anon_sym_move] = ACTIONS(1097), - [anon_sym_read] = ACTIONS(1097), - [anon_sym_workdir] = ACTIONS(1097), - [anon_sym_write] = ACTIONS(1097), - [anon_sym_from_json] = ACTIONS(1097), - [anon_sym_to_json] = ACTIONS(1097), - [anon_sym_to_string] = ACTIONS(1097), - [anon_sym_to_float] = ACTIONS(1097), - [anon_sym_bash] = ACTIONS(1097), - [anon_sym_fish] = ACTIONS(1097), - [anon_sym_raw] = ACTIONS(1097), - [anon_sym_sh] = ACTIONS(1097), - [anon_sym_zsh] = ACTIONS(1097), - [anon_sym_random] = ACTIONS(1097), - [anon_sym_random_boolean] = ACTIONS(1097), - [anon_sym_random_float] = ACTIONS(1097), - [anon_sym_random_integer] = ACTIONS(1097), - [anon_sym_columns] = ACTIONS(1097), - [anon_sym_rows] = ACTIONS(1097), - [anon_sym_reverse] = ACTIONS(1097), + [sym_block] = STATE(811), + [sym_statement] = STATE(51), + [sym_expression] = STATE(817), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(748), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1472), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1480), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(760), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(51), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(1280), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(233), + [anon_sym_RPAREN] = ACTIONS(53), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_elseif] = ACTIONS(53), + [anon_sym_else] = ACTIONS(69), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_asyncfor] = ACTIONS(1294), + [anon_sym_transform] = ACTIONS(1296), + [anon_sym_filter] = ACTIONS(1298), + [anon_sym_find] = ACTIONS(1300), + [anon_sym_remove] = ACTIONS(1302), + [anon_sym_reduce] = ACTIONS(1304), + [anon_sym_select] = ACTIONS(1306), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [29] = { - [sym_statement] = STATE(25), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(25), - [sym_identifier] = ACTIONS(1010), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_RPAREN] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(318), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_RBRACK] = ACTIONS(318), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(1049), - [anon_sym_assert] = ACTIONS(1052), - [anon_sym_assert_equal] = ACTIONS(1052), - [anon_sym_download] = ACTIONS(1052), - [anon_sym_help] = ACTIONS(1052), - [anon_sym_length] = ACTIONS(1052), - [anon_sym_output] = ACTIONS(1052), - [anon_sym_output_error] = ACTIONS(1052), - [anon_sym_type] = ACTIONS(1052), - [anon_sym_append] = ACTIONS(1052), - [anon_sym_metadata] = ACTIONS(1052), - [anon_sym_move] = ACTIONS(1052), - [anon_sym_read] = ACTIONS(1052), - [anon_sym_workdir] = ACTIONS(1052), - [anon_sym_write] = ACTIONS(1052), - [anon_sym_from_json] = ACTIONS(1052), - [anon_sym_to_json] = ACTIONS(1052), - [anon_sym_to_string] = ACTIONS(1052), - [anon_sym_to_float] = ACTIONS(1052), - [anon_sym_bash] = ACTIONS(1052), - [anon_sym_fish] = ACTIONS(1052), - [anon_sym_raw] = ACTIONS(1052), - [anon_sym_sh] = ACTIONS(1052), - [anon_sym_zsh] = ACTIONS(1052), - [anon_sym_random] = ACTIONS(1052), - [anon_sym_random_boolean] = ACTIONS(1052), - [anon_sym_random_float] = ACTIONS(1052), - [anon_sym_random_integer] = ACTIONS(1052), - [anon_sym_columns] = ACTIONS(1052), - [anon_sym_rows] = ACTIONS(1052), - [anon_sym_reverse] = ACTIONS(1052), + [sym_statement] = STATE(29), + [sym_expression] = STATE(685), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(576), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(647), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [aux_sym_block_repeat1] = STATE(29), + [ts_builtin_sym_end] = ACTIONS(343), + [sym_identifier] = ACTIONS(1316), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(1322), + [anon_sym_RPAREN] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(343), + [sym_integer] = ACTIONS(1325), + [sym_float] = ACTIONS(1328), + [sym_string] = ACTIONS(1328), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_RBRACK] = ACTIONS(343), + [anon_sym_COLON] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_DASH] = ACTIONS(366), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PERCENT] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(366), + [anon_sym_GT_EQ] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_elseif] = ACTIONS(343), + [anon_sym_else] = ACTIONS(366), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_EQ_GT] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_asyncfor] = ACTIONS(1352), + [anon_sym_transform] = ACTIONS(1355), + [anon_sym_filter] = ACTIONS(1358), + [anon_sym_find] = ACTIONS(1361), + [anon_sym_remove] = ACTIONS(1364), + [anon_sym_reduce] = ACTIONS(1367), + [anon_sym_select] = ACTIONS(1370), + [anon_sym_insert] = ACTIONS(1373), + [anon_sym_async] = ACTIONS(1376), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_table] = ACTIONS(1379), + [anon_sym_assert] = ACTIONS(1382), + [anon_sym_assert_equal] = ACTIONS(1382), + [anon_sym_download] = ACTIONS(1382), + [anon_sym_help] = ACTIONS(1382), + [anon_sym_length] = ACTIONS(1382), + [anon_sym_output] = ACTIONS(1382), + [anon_sym_output_error] = ACTIONS(1382), + [anon_sym_type] = ACTIONS(1382), + [anon_sym_append] = ACTIONS(1382), + [anon_sym_metadata] = ACTIONS(1382), + [anon_sym_move] = ACTIONS(1382), + [anon_sym_read] = ACTIONS(1382), + [anon_sym_workdir] = ACTIONS(1382), + [anon_sym_write] = ACTIONS(1382), + [anon_sym_from_json] = ACTIONS(1382), + [anon_sym_to_json] = ACTIONS(1382), + [anon_sym_to_string] = ACTIONS(1382), + [anon_sym_to_float] = ACTIONS(1382), + [anon_sym_bash] = ACTIONS(1382), + [anon_sym_fish] = ACTIONS(1382), + [anon_sym_raw] = ACTIONS(1382), + [anon_sym_sh] = ACTIONS(1382), + [anon_sym_zsh] = ACTIONS(1382), + [anon_sym_random] = ACTIONS(1382), + [anon_sym_random_boolean] = ACTIONS(1382), + [anon_sym_random_float] = ACTIONS(1382), + [anon_sym_random_integer] = ACTIONS(1382), + [anon_sym_columns] = ACTIONS(1382), + [anon_sym_rows] = ACTIONS(1382), + [anon_sym_reverse] = ACTIONS(1382), }, [30] = { [sym_statement] = STATE(30), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), + [sym_expression] = STATE(732), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(620), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(654), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), [aux_sym_block_repeat1] = STATE(30), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(1100), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(213), - [sym_integer] = ACTIONS(769), - [sym_float] = ACTIONS(772), - [sym_string] = ACTIONS(772), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_COLON] = ACTIONS(213), - [anon_sym_DOT_DOT] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_AMP_AMP] = ACTIONS(213), - [anon_sym_PIPE_PIPE] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_if] = ACTIONS(715), - [anon_sym_match] = ACTIONS(1103), - [anon_sym_EQ_GT] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_transform] = ACTIONS(1115), - [anon_sym_filter] = ACTIONS(1118), - [anon_sym_find] = ACTIONS(1121), - [anon_sym_remove] = ACTIONS(1124), - [anon_sym_reduce] = ACTIONS(1127), - [anon_sym_select] = ACTIONS(1130), - [anon_sym_insert] = ACTIONS(1133), - [anon_sym_async] = ACTIONS(1136), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_table] = ACTIONS(1139), - [anon_sym_assert] = ACTIONS(1142), - [anon_sym_assert_equal] = ACTIONS(1142), - [anon_sym_download] = ACTIONS(1142), - [anon_sym_help] = ACTIONS(1142), - [anon_sym_length] = ACTIONS(1142), - [anon_sym_output] = ACTIONS(1142), - [anon_sym_output_error] = ACTIONS(1142), - [anon_sym_type] = ACTIONS(1142), - [anon_sym_append] = ACTIONS(1142), - [anon_sym_metadata] = ACTIONS(1142), - [anon_sym_move] = ACTIONS(1142), - [anon_sym_read] = ACTIONS(1142), - [anon_sym_workdir] = ACTIONS(1142), - [anon_sym_write] = ACTIONS(1142), - [anon_sym_from_json] = ACTIONS(1142), - [anon_sym_to_json] = ACTIONS(1142), - [anon_sym_to_string] = ACTIONS(1142), - [anon_sym_to_float] = ACTIONS(1142), - [anon_sym_bash] = ACTIONS(1142), - [anon_sym_fish] = ACTIONS(1142), - [anon_sym_raw] = ACTIONS(1142), - [anon_sym_sh] = ACTIONS(1142), - [anon_sym_zsh] = ACTIONS(1142), - [anon_sym_random] = ACTIONS(1142), - [anon_sym_random_boolean] = ACTIONS(1142), - [anon_sym_random_float] = ACTIONS(1142), - [anon_sym_random_integer] = ACTIONS(1142), - [anon_sym_columns] = ACTIONS(1142), - [anon_sym_rows] = ACTIONS(1142), - [anon_sym_reverse] = ACTIONS(1142), + [ts_builtin_sym_end] = ACTIONS(343), + [sym_identifier] = ACTIONS(1385), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(1322), + [anon_sym_RPAREN] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(343), + [sym_integer] = ACTIONS(1325), + [sym_float] = ACTIONS(1328), + [sym_string] = ACTIONS(1328), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_RBRACK] = ACTIONS(343), + [anon_sym_COLON] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_DASH] = ACTIONS(366), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PERCENT] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(366), + [anon_sym_GT_EQ] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_elseif] = ACTIONS(343), + [anon_sym_else] = ACTIONS(366), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_EQ_GT] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_asyncfor] = ACTIONS(1403), + [anon_sym_transform] = ACTIONS(1406), + [anon_sym_filter] = ACTIONS(1409), + [anon_sym_find] = ACTIONS(1412), + [anon_sym_remove] = ACTIONS(1415), + [anon_sym_reduce] = ACTIONS(1418), + [anon_sym_select] = ACTIONS(1421), + [anon_sym_insert] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_table] = ACTIONS(1430), + [anon_sym_assert] = ACTIONS(1433), + [anon_sym_assert_equal] = ACTIONS(1433), + [anon_sym_download] = ACTIONS(1433), + [anon_sym_help] = ACTIONS(1433), + [anon_sym_length] = ACTIONS(1433), + [anon_sym_output] = ACTIONS(1433), + [anon_sym_output_error] = ACTIONS(1433), + [anon_sym_type] = ACTIONS(1433), + [anon_sym_append] = ACTIONS(1433), + [anon_sym_metadata] = ACTIONS(1433), + [anon_sym_move] = ACTIONS(1433), + [anon_sym_read] = ACTIONS(1433), + [anon_sym_workdir] = ACTIONS(1433), + [anon_sym_write] = ACTIONS(1433), + [anon_sym_from_json] = ACTIONS(1433), + [anon_sym_to_json] = ACTIONS(1433), + [anon_sym_to_string] = ACTIONS(1433), + [anon_sym_to_float] = ACTIONS(1433), + [anon_sym_bash] = ACTIONS(1433), + [anon_sym_fish] = ACTIONS(1433), + [anon_sym_raw] = ACTIONS(1433), + [anon_sym_sh] = ACTIONS(1433), + [anon_sym_zsh] = ACTIONS(1433), + [anon_sym_random] = ACTIONS(1433), + [anon_sym_random_boolean] = ACTIONS(1433), + [anon_sym_random_float] = ACTIONS(1433), + [anon_sym_random_integer] = ACTIONS(1433), + [anon_sym_columns] = ACTIONS(1433), + [anon_sym_rows] = ACTIONS(1433), + [anon_sym_reverse] = ACTIONS(1433), }, [31] = { - [sym_statement] = STATE(18), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(18), - [sym_identifier] = ACTIONS(649), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), + [sym_block] = STATE(839), + [sym_statement] = STATE(57), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1142), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1143), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(57), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(318), + [anon_sym_RPAREN] = ACTIONS(53), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), [sym_string] = ACTIONS(13), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_COLON] = ACTIONS(1438), + [anon_sym_DOT_DOT] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [32] = { - [sym_statement] = STATE(33), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(33), - [ts_builtin_sym_end] = ACTIONS(318), - [sym_identifier] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_RPAREN] = ACTIONS(318), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(920), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_EQ_GT] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1156), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_transform] = ACTIONS(1162), - [anon_sym_filter] = ACTIONS(1165), - [anon_sym_find] = ACTIONS(1168), - [anon_sym_remove] = ACTIONS(1171), - [anon_sym_reduce] = ACTIONS(1174), - [anon_sym_select] = ACTIONS(1177), - [anon_sym_insert] = ACTIONS(1180), - [anon_sym_async] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1189), - [anon_sym_assert_equal] = ACTIONS(1189), - [anon_sym_download] = ACTIONS(1189), - [anon_sym_help] = ACTIONS(1189), - [anon_sym_length] = ACTIONS(1189), - [anon_sym_output] = ACTIONS(1189), - [anon_sym_output_error] = ACTIONS(1189), - [anon_sym_type] = ACTIONS(1189), - [anon_sym_append] = ACTIONS(1189), - [anon_sym_metadata] = ACTIONS(1189), - [anon_sym_move] = ACTIONS(1189), - [anon_sym_read] = ACTIONS(1189), - [anon_sym_workdir] = ACTIONS(1189), - [anon_sym_write] = ACTIONS(1189), - [anon_sym_from_json] = ACTIONS(1189), - [anon_sym_to_json] = ACTIONS(1189), - [anon_sym_to_string] = ACTIONS(1189), - [anon_sym_to_float] = ACTIONS(1189), - [anon_sym_bash] = ACTIONS(1189), - [anon_sym_fish] = ACTIONS(1189), - [anon_sym_raw] = ACTIONS(1189), - [anon_sym_sh] = ACTIONS(1189), - [anon_sym_zsh] = ACTIONS(1189), - [anon_sym_random] = ACTIONS(1189), - [anon_sym_random_boolean] = ACTIONS(1189), - [anon_sym_random_float] = ACTIONS(1189), - [anon_sym_random_integer] = ACTIONS(1189), - [anon_sym_columns] = ACTIONS(1189), - [anon_sym_rows] = ACTIONS(1189), - [anon_sym_reverse] = ACTIONS(1189), + [sym_statement] = STATE(32), + [sym_expression] = STATE(701), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(582), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1866), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(320), + [aux_sym_block_repeat1] = STATE(32), + [ts_builtin_sym_end] = ACTIONS(343), + [sym_identifier] = ACTIONS(659), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(662), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(343), + [sym_integer] = ACTIONS(668), + [sym_float] = ACTIONS(671), + [sym_string] = ACTIONS(671), + [anon_sym_true] = ACTIONS(674), + [anon_sym_false] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(677), + [anon_sym_EQ] = ACTIONS(366), + [anon_sym_COLON] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(366), + [anon_sym_DASH] = ACTIONS(366), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PERCENT] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(366), + [anon_sym_GT_EQ] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_PLUS_EQ] = ACTIONS(343), + [anon_sym_DASH_EQ] = ACTIONS(343), + [anon_sym_if] = ACTIONS(725), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_EQ_GT] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_asyncfor] = ACTIONS(1482), + [anon_sym_transform] = ACTIONS(1485), + [anon_sym_filter] = ACTIONS(1488), + [anon_sym_find] = ACTIONS(1491), + [anon_sym_remove] = ACTIONS(1494), + [anon_sym_reduce] = ACTIONS(1497), + [anon_sym_select] = ACTIONS(1500), + [anon_sym_insert] = ACTIONS(1503), + [anon_sym_async] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_table] = ACTIONS(1509), + [anon_sym_assert] = ACTIONS(1512), + [anon_sym_assert_equal] = ACTIONS(1512), + [anon_sym_download] = ACTIONS(1512), + [anon_sym_help] = ACTIONS(1512), + [anon_sym_length] = ACTIONS(1512), + [anon_sym_output] = ACTIONS(1512), + [anon_sym_output_error] = ACTIONS(1512), + [anon_sym_type] = ACTIONS(1512), + [anon_sym_append] = ACTIONS(1512), + [anon_sym_metadata] = ACTIONS(1512), + [anon_sym_move] = ACTIONS(1512), + [anon_sym_read] = ACTIONS(1512), + [anon_sym_workdir] = ACTIONS(1512), + [anon_sym_write] = ACTIONS(1512), + [anon_sym_from_json] = ACTIONS(1512), + [anon_sym_to_json] = ACTIONS(1512), + [anon_sym_to_string] = ACTIONS(1512), + [anon_sym_to_float] = ACTIONS(1512), + [anon_sym_bash] = ACTIONS(1512), + [anon_sym_fish] = ACTIONS(1512), + [anon_sym_raw] = ACTIONS(1512), + [anon_sym_sh] = ACTIONS(1512), + [anon_sym_zsh] = ACTIONS(1512), + [anon_sym_random] = ACTIONS(1512), + [anon_sym_random_boolean] = ACTIONS(1512), + [anon_sym_random_float] = ACTIONS(1512), + [anon_sym_random_integer] = ACTIONS(1512), + [anon_sym_columns] = ACTIONS(1512), + [anon_sym_rows] = ACTIONS(1512), + [anon_sym_reverse] = ACTIONS(1512), }, [33] = { - [sym_statement] = STATE(33), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(33), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(1192), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(213), - [sym_integer] = ACTIONS(769), - [sym_float] = ACTIONS(772), - [sym_string] = ACTIONS(772), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_COLON] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_AMP_AMP] = ACTIONS(213), - [anon_sym_PIPE_PIPE] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_if] = ACTIONS(872), - [anon_sym_match] = ACTIONS(1195), - [anon_sym_EQ_GT] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1201), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_transform] = ACTIONS(1207), - [anon_sym_filter] = ACTIONS(1210), - [anon_sym_find] = ACTIONS(1213), - [anon_sym_remove] = ACTIONS(1216), - [anon_sym_reduce] = ACTIONS(1219), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1225), - [anon_sym_async] = ACTIONS(1228), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_table] = ACTIONS(1231), - [anon_sym_assert] = ACTIONS(1234), - [anon_sym_assert_equal] = ACTIONS(1234), - [anon_sym_download] = ACTIONS(1234), - [anon_sym_help] = ACTIONS(1234), - [anon_sym_length] = ACTIONS(1234), - [anon_sym_output] = ACTIONS(1234), - [anon_sym_output_error] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_append] = ACTIONS(1234), - [anon_sym_metadata] = ACTIONS(1234), - [anon_sym_move] = ACTIONS(1234), - [anon_sym_read] = ACTIONS(1234), - [anon_sym_workdir] = ACTIONS(1234), - [anon_sym_write] = ACTIONS(1234), - [anon_sym_from_json] = ACTIONS(1234), - [anon_sym_to_json] = ACTIONS(1234), - [anon_sym_to_string] = ACTIONS(1234), - [anon_sym_to_float] = ACTIONS(1234), - [anon_sym_bash] = ACTIONS(1234), - [anon_sym_fish] = ACTIONS(1234), - [anon_sym_raw] = ACTIONS(1234), - [anon_sym_sh] = ACTIONS(1234), - [anon_sym_zsh] = ACTIONS(1234), - [anon_sym_random] = ACTIONS(1234), - [anon_sym_random_boolean] = ACTIONS(1234), - [anon_sym_random_float] = ACTIONS(1234), - [anon_sym_random_integer] = ACTIONS(1234), - [anon_sym_columns] = ACTIONS(1234), - [anon_sym_rows] = ACTIONS(1234), - [anon_sym_reverse] = ACTIONS(1234), + [sym_statement] = STATE(30), + [sym_expression] = STATE(732), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(620), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(654), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(30), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(1515), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(997), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(1000), + [sym_float] = ACTIONS(1003), + [sym_string] = ACTIONS(1003), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1009), + [anon_sym_RBRACK] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_elseif] = ACTIONS(419), + [anon_sym_else] = ACTIONS(442), + [anon_sym_match] = ACTIONS(1521), + [anon_sym_EQ_GT] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1527), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_asyncfor] = ACTIONS(1533), + [anon_sym_transform] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1539), + [anon_sym_find] = ACTIONS(1542), + [anon_sym_remove] = ACTIONS(1545), + [anon_sym_reduce] = ACTIONS(1548), + [anon_sym_select] = ACTIONS(1551), + [anon_sym_insert] = ACTIONS(1554), + [anon_sym_async] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(1560), + [anon_sym_assert] = ACTIONS(1563), + [anon_sym_assert_equal] = ACTIONS(1563), + [anon_sym_download] = ACTIONS(1563), + [anon_sym_help] = ACTIONS(1563), + [anon_sym_length] = ACTIONS(1563), + [anon_sym_output] = ACTIONS(1563), + [anon_sym_output_error] = ACTIONS(1563), + [anon_sym_type] = ACTIONS(1563), + [anon_sym_append] = ACTIONS(1563), + [anon_sym_metadata] = ACTIONS(1563), + [anon_sym_move] = ACTIONS(1563), + [anon_sym_read] = ACTIONS(1563), + [anon_sym_workdir] = ACTIONS(1563), + [anon_sym_write] = ACTIONS(1563), + [anon_sym_from_json] = ACTIONS(1563), + [anon_sym_to_json] = ACTIONS(1563), + [anon_sym_to_string] = ACTIONS(1563), + [anon_sym_to_float] = ACTIONS(1563), + [anon_sym_bash] = ACTIONS(1563), + [anon_sym_fish] = ACTIONS(1563), + [anon_sym_raw] = ACTIONS(1563), + [anon_sym_sh] = ACTIONS(1563), + [anon_sym_zsh] = ACTIONS(1563), + [anon_sym_random] = ACTIONS(1563), + [anon_sym_random_boolean] = ACTIONS(1563), + [anon_sym_random_float] = ACTIONS(1563), + [anon_sym_random_integer] = ACTIONS(1563), + [anon_sym_columns] = ACTIONS(1563), + [anon_sym_rows] = ACTIONS(1563), + [anon_sym_reverse] = ACTIONS(1563), }, [34] = { - [sym_block] = STATE(697), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_block] = STATE(1022), + [sym_statement] = STATE(358), + [sym_expression] = STATE(859), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(754), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1322), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1321), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(985), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1566), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(233), + [anon_sym_COMMA] = ACTIONS(53), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_elseif] = ACTIONS(53), + [anon_sym_else] = ACTIONS(69), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_asyncfor] = ACTIONS(1578), + [anon_sym_transform] = ACTIONS(1580), + [anon_sym_filter] = ACTIONS(1582), + [anon_sym_find] = ACTIONS(1584), + [anon_sym_remove] = ACTIONS(1586), + [anon_sym_reduce] = ACTIONS(1588), + [anon_sym_select] = ACTIONS(1590), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [35] = { - [sym_block] = STATE(579), - [sym_statement] = STATE(205), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_statement] = STATE(32), + [sym_expression] = STATE(701), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(582), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1866), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(320), + [aux_sym_block_repeat1] = STATE(32), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(773), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(419), + [sym_integer] = ACTIONS(782), + [sym_float] = ACTIONS(785), + [sym_string] = ACTIONS(785), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(943), + [anon_sym_match] = ACTIONS(1594), + [anon_sym_EQ_GT] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1600), + [anon_sym_for] = ACTIONS(1603), + [anon_sym_asyncfor] = ACTIONS(1606), + [anon_sym_transform] = ACTIONS(1609), + [anon_sym_filter] = ACTIONS(1612), + [anon_sym_find] = ACTIONS(1615), + [anon_sym_remove] = ACTIONS(1618), + [anon_sym_reduce] = ACTIONS(1621), + [anon_sym_select] = ACTIONS(1624), + [anon_sym_insert] = ACTIONS(1627), + [anon_sym_async] = ACTIONS(1630), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1636), + [anon_sym_assert_equal] = ACTIONS(1636), + [anon_sym_download] = ACTIONS(1636), + [anon_sym_help] = ACTIONS(1636), + [anon_sym_length] = ACTIONS(1636), + [anon_sym_output] = ACTIONS(1636), + [anon_sym_output_error] = ACTIONS(1636), + [anon_sym_type] = ACTIONS(1636), + [anon_sym_append] = ACTIONS(1636), + [anon_sym_metadata] = ACTIONS(1636), + [anon_sym_move] = ACTIONS(1636), + [anon_sym_read] = ACTIONS(1636), + [anon_sym_workdir] = ACTIONS(1636), + [anon_sym_write] = ACTIONS(1636), + [anon_sym_from_json] = ACTIONS(1636), + [anon_sym_to_json] = ACTIONS(1636), + [anon_sym_to_string] = ACTIONS(1636), + [anon_sym_to_float] = ACTIONS(1636), + [anon_sym_bash] = ACTIONS(1636), + [anon_sym_fish] = ACTIONS(1636), + [anon_sym_raw] = ACTIONS(1636), + [anon_sym_sh] = ACTIONS(1636), + [anon_sym_zsh] = ACTIONS(1636), + [anon_sym_random] = ACTIONS(1636), + [anon_sym_random_boolean] = ACTIONS(1636), + [anon_sym_random_float] = ACTIONS(1636), + [anon_sym_random_integer] = ACTIONS(1636), + [anon_sym_columns] = ACTIONS(1636), + [anon_sym_rows] = ACTIONS(1636), + [anon_sym_reverse] = ACTIONS(1636), }, [36] = { - [sym_block] = STATE(465), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_block] = STATE(1022), + [sym_statement] = STATE(352), + [sym_expression] = STATE(877), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(782), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1472), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1480), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(978), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(352), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(1639), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(19), + [anon_sym_elseif] = ACTIONS(53), + [anon_sym_else] = ACTIONS(69), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_asyncfor] = ACTIONS(1647), + [anon_sym_transform] = ACTIONS(1649), + [anon_sym_filter] = ACTIONS(1651), + [anon_sym_find] = ACTIONS(1653), + [anon_sym_remove] = ACTIONS(1655), + [anon_sym_reduce] = ACTIONS(1657), + [anon_sym_select] = ACTIONS(1659), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [37] = { - [sym_block] = STATE(597), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_statement] = STATE(37), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(37), + [ts_builtin_sym_end] = ACTIONS(343), + [sym_identifier] = ACTIONS(1663), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_RPAREN] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(343), + [sym_integer] = ACTIONS(1672), + [sym_float] = ACTIONS(1675), + [sym_string] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1678), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1681), + [anon_sym_RBRACK] = ACTIONS(343), + [anon_sym_COLON] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_DASH] = ACTIONS(366), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PERCENT] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(366), + [anon_sym_GT_EQ] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_match] = ACTIONS(1684), + [anon_sym_EQ_GT] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_asyncfor] = ACTIONS(1696), + [anon_sym_transform] = ACTIONS(1699), + [anon_sym_filter] = ACTIONS(1702), + [anon_sym_find] = ACTIONS(1705), + [anon_sym_remove] = ACTIONS(1708), + [anon_sym_reduce] = ACTIONS(1711), + [anon_sym_select] = ACTIONS(1714), + [anon_sym_insert] = ACTIONS(1717), + [anon_sym_async] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_table] = ACTIONS(1723), + [anon_sym_assert] = ACTIONS(1726), + [anon_sym_assert_equal] = ACTIONS(1726), + [anon_sym_download] = ACTIONS(1726), + [anon_sym_help] = ACTIONS(1726), + [anon_sym_length] = ACTIONS(1726), + [anon_sym_output] = ACTIONS(1726), + [anon_sym_output_error] = ACTIONS(1726), + [anon_sym_type] = ACTIONS(1726), + [anon_sym_append] = ACTIONS(1726), + [anon_sym_metadata] = ACTIONS(1726), + [anon_sym_move] = ACTIONS(1726), + [anon_sym_read] = ACTIONS(1726), + [anon_sym_workdir] = ACTIONS(1726), + [anon_sym_write] = ACTIONS(1726), + [anon_sym_from_json] = ACTIONS(1726), + [anon_sym_to_json] = ACTIONS(1726), + [anon_sym_to_string] = ACTIONS(1726), + [anon_sym_to_float] = ACTIONS(1726), + [anon_sym_bash] = ACTIONS(1726), + [anon_sym_fish] = ACTIONS(1726), + [anon_sym_raw] = ACTIONS(1726), + [anon_sym_sh] = ACTIONS(1726), + [anon_sym_zsh] = ACTIONS(1726), + [anon_sym_random] = ACTIONS(1726), + [anon_sym_random_boolean] = ACTIONS(1726), + [anon_sym_random_float] = ACTIONS(1726), + [anon_sym_random_integer] = ACTIONS(1726), + [anon_sym_columns] = ACTIONS(1726), + [anon_sym_rows] = ACTIONS(1726), + [anon_sym_reverse] = ACTIONS(1726), }, [38] = { - [sym_block] = STATE(595), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_statement] = STATE(41), + [sym_expression] = STATE(779), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(655), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(724), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1860), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(341), + [aux_sym_block_repeat1] = STATE(41), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(1729), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(997), + [anon_sym_RPAREN] = ACTIONS(419), + [sym_integer] = ACTIONS(1000), + [sym_float] = ACTIONS(1003), + [sym_string] = ACTIONS(1003), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1009), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_elseif] = ACTIONS(419), + [anon_sym_else] = ACTIONS(442), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_EQ_GT] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1741), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_asyncfor] = ACTIONS(1747), + [anon_sym_transform] = ACTIONS(1750), + [anon_sym_filter] = ACTIONS(1753), + [anon_sym_find] = ACTIONS(1756), + [anon_sym_remove] = ACTIONS(1759), + [anon_sym_reduce] = ACTIONS(1762), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_insert] = ACTIONS(1768), + [anon_sym_async] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(1774), + [anon_sym_assert] = ACTIONS(1777), + [anon_sym_assert_equal] = ACTIONS(1777), + [anon_sym_download] = ACTIONS(1777), + [anon_sym_help] = ACTIONS(1777), + [anon_sym_length] = ACTIONS(1777), + [anon_sym_output] = ACTIONS(1777), + [anon_sym_output_error] = ACTIONS(1777), + [anon_sym_type] = ACTIONS(1777), + [anon_sym_append] = ACTIONS(1777), + [anon_sym_metadata] = ACTIONS(1777), + [anon_sym_move] = ACTIONS(1777), + [anon_sym_read] = ACTIONS(1777), + [anon_sym_workdir] = ACTIONS(1777), + [anon_sym_write] = ACTIONS(1777), + [anon_sym_from_json] = ACTIONS(1777), + [anon_sym_to_json] = ACTIONS(1777), + [anon_sym_to_string] = ACTIONS(1777), + [anon_sym_to_float] = ACTIONS(1777), + [anon_sym_bash] = ACTIONS(1777), + [anon_sym_fish] = ACTIONS(1777), + [anon_sym_raw] = ACTIONS(1777), + [anon_sym_sh] = ACTIONS(1777), + [anon_sym_zsh] = ACTIONS(1777), + [anon_sym_random] = ACTIONS(1777), + [anon_sym_random_boolean] = ACTIONS(1777), + [anon_sym_random_float] = ACTIONS(1777), + [anon_sym_random_integer] = ACTIONS(1777), + [anon_sym_columns] = ACTIONS(1777), + [anon_sym_rows] = ACTIONS(1777), + [anon_sym_reverse] = ACTIONS(1777), }, [39] = { - [sym_block] = STATE(575), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_statement] = STATE(37), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(37), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(1780), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(1789), + [sym_float] = ACTIONS(1792), + [sym_string] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1795), + [anon_sym_false] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_match] = ACTIONS(1801), + [anon_sym_EQ_GT] = ACTIONS(1804), + [anon_sym_while] = ACTIONS(1807), + [anon_sym_for] = ACTIONS(1810), + [anon_sym_asyncfor] = ACTIONS(1813), + [anon_sym_transform] = ACTIONS(1816), + [anon_sym_filter] = ACTIONS(1819), + [anon_sym_find] = ACTIONS(1822), + [anon_sym_remove] = ACTIONS(1825), + [anon_sym_reduce] = ACTIONS(1828), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_insert] = ACTIONS(1834), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(1840), + [anon_sym_assert] = ACTIONS(1843), + [anon_sym_assert_equal] = ACTIONS(1843), + [anon_sym_download] = ACTIONS(1843), + [anon_sym_help] = ACTIONS(1843), + [anon_sym_length] = ACTIONS(1843), + [anon_sym_output] = ACTIONS(1843), + [anon_sym_output_error] = ACTIONS(1843), + [anon_sym_type] = ACTIONS(1843), + [anon_sym_append] = ACTIONS(1843), + [anon_sym_metadata] = ACTIONS(1843), + [anon_sym_move] = ACTIONS(1843), + [anon_sym_read] = ACTIONS(1843), + [anon_sym_workdir] = ACTIONS(1843), + [anon_sym_write] = ACTIONS(1843), + [anon_sym_from_json] = ACTIONS(1843), + [anon_sym_to_json] = ACTIONS(1843), + [anon_sym_to_string] = ACTIONS(1843), + [anon_sym_to_float] = ACTIONS(1843), + [anon_sym_bash] = ACTIONS(1843), + [anon_sym_fish] = ACTIONS(1843), + [anon_sym_raw] = ACTIONS(1843), + [anon_sym_sh] = ACTIONS(1843), + [anon_sym_zsh] = ACTIONS(1843), + [anon_sym_random] = ACTIONS(1843), + [anon_sym_random_boolean] = ACTIONS(1843), + [anon_sym_random_float] = ACTIONS(1843), + [anon_sym_random_integer] = ACTIONS(1843), + [anon_sym_columns] = ACTIONS(1843), + [anon_sym_rows] = ACTIONS(1843), + [anon_sym_reverse] = ACTIONS(1843), }, [40] = { - [sym_block] = STATE(472), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [sym_block] = STATE(839), + [sym_statement] = STATE(61), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(61), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(53), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), [sym_string] = ACTIONS(13), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [41] = { - [sym_block] = STATE(578), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_statement] = STATE(41), + [sym_expression] = STATE(779), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(655), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(724), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1860), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(341), + [aux_sym_block_repeat1] = STATE(41), + [ts_builtin_sym_end] = ACTIONS(343), + [sym_identifier] = ACTIONS(1872), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(1322), + [anon_sym_RPAREN] = ACTIONS(343), + [sym_integer] = ACTIONS(1325), + [sym_float] = ACTIONS(1328), + [sym_string] = ACTIONS(1328), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_COLON] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_DASH] = ACTIONS(366), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PERCENT] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(366), + [anon_sym_GT_EQ] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_elseif] = ACTIONS(343), + [anon_sym_else] = ACTIONS(366), + [anon_sym_match] = ACTIONS(1878), + [anon_sym_EQ_GT] = ACTIONS(1881), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_asyncfor] = ACTIONS(1890), + [anon_sym_transform] = ACTIONS(1893), + [anon_sym_filter] = ACTIONS(1896), + [anon_sym_find] = ACTIONS(1899), + [anon_sym_remove] = ACTIONS(1902), + [anon_sym_reduce] = ACTIONS(1905), + [anon_sym_select] = ACTIONS(1908), + [anon_sym_insert] = ACTIONS(1911), + [anon_sym_async] = ACTIONS(1914), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_table] = ACTIONS(1917), + [anon_sym_assert] = ACTIONS(1920), + [anon_sym_assert_equal] = ACTIONS(1920), + [anon_sym_download] = ACTIONS(1920), + [anon_sym_help] = ACTIONS(1920), + [anon_sym_length] = ACTIONS(1920), + [anon_sym_output] = ACTIONS(1920), + [anon_sym_output_error] = ACTIONS(1920), + [anon_sym_type] = ACTIONS(1920), + [anon_sym_append] = ACTIONS(1920), + [anon_sym_metadata] = ACTIONS(1920), + [anon_sym_move] = ACTIONS(1920), + [anon_sym_read] = ACTIONS(1920), + [anon_sym_workdir] = ACTIONS(1920), + [anon_sym_write] = ACTIONS(1920), + [anon_sym_from_json] = ACTIONS(1920), + [anon_sym_to_json] = ACTIONS(1920), + [anon_sym_to_string] = ACTIONS(1920), + [anon_sym_to_float] = ACTIONS(1920), + [anon_sym_bash] = ACTIONS(1920), + [anon_sym_fish] = ACTIONS(1920), + [anon_sym_raw] = ACTIONS(1920), + [anon_sym_sh] = ACTIONS(1920), + [anon_sym_zsh] = ACTIONS(1920), + [anon_sym_random] = ACTIONS(1920), + [anon_sym_random_boolean] = ACTIONS(1920), + [anon_sym_random_float] = ACTIONS(1920), + [anon_sym_random_integer] = ACTIONS(1920), + [anon_sym_columns] = ACTIONS(1920), + [anon_sym_rows] = ACTIONS(1920), + [anon_sym_reverse] = ACTIONS(1920), }, [42] = { - [sym_block] = STATE(598), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_statement] = STATE(15), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(773), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(782), + [sym_float] = ACTIONS(785), + [sym_string] = ACTIONS(785), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(797), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(833), + [anon_sym_assert] = ACTIONS(836), + [anon_sym_assert_equal] = ACTIONS(836), + [anon_sym_download] = ACTIONS(836), + [anon_sym_help] = ACTIONS(836), + [anon_sym_length] = ACTIONS(836), + [anon_sym_output] = ACTIONS(836), + [anon_sym_output_error] = ACTIONS(836), + [anon_sym_type] = ACTIONS(836), + [anon_sym_append] = ACTIONS(836), + [anon_sym_metadata] = ACTIONS(836), + [anon_sym_move] = ACTIONS(836), + [anon_sym_read] = ACTIONS(836), + [anon_sym_workdir] = ACTIONS(836), + [anon_sym_write] = ACTIONS(836), + [anon_sym_from_json] = ACTIONS(836), + [anon_sym_to_json] = ACTIONS(836), + [anon_sym_to_string] = ACTIONS(836), + [anon_sym_to_float] = ACTIONS(836), + [anon_sym_bash] = ACTIONS(836), + [anon_sym_fish] = ACTIONS(836), + [anon_sym_raw] = ACTIONS(836), + [anon_sym_sh] = ACTIONS(836), + [anon_sym_zsh] = ACTIONS(836), + [anon_sym_random] = ACTIONS(836), + [anon_sym_random_boolean] = ACTIONS(836), + [anon_sym_random_float] = ACTIONS(836), + [anon_sym_random_integer] = ACTIONS(836), + [anon_sym_columns] = ACTIONS(836), + [anon_sym_rows] = ACTIONS(836), + [anon_sym_reverse] = ACTIONS(836), }, [43] = { - [sym_block] = STATE(588), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_statement] = STATE(15), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(773), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [44] = { - [sym_block] = STATE(406), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_statement] = STATE(44), + [sym_expression] = STATE(795), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(611), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(2015), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(325), + [aux_sym_block_repeat1] = STATE(44), + [ts_builtin_sym_end] = ACTIONS(343), + [sym_identifier] = ACTIONS(659), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(662), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(343), + [sym_integer] = ACTIONS(668), + [sym_float] = ACTIONS(671), + [sym_string] = ACTIONS(671), + [anon_sym_true] = ACTIONS(674), + [anon_sym_false] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(677), + [anon_sym_EQ] = ACTIONS(366), + [anon_sym_COLON] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(366), + [anon_sym_DASH] = ACTIONS(366), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PERCENT] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(366), + [anon_sym_GT_EQ] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_PLUS_EQ] = ACTIONS(343), + [anon_sym_DASH_EQ] = ACTIONS(343), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_match] = ACTIONS(1925), + [anon_sym_EQ_GT] = ACTIONS(1928), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1934), + [anon_sym_asyncfor] = ACTIONS(1937), + [anon_sym_transform] = ACTIONS(1940), + [anon_sym_filter] = ACTIONS(1943), + [anon_sym_find] = ACTIONS(1946), + [anon_sym_remove] = ACTIONS(1949), + [anon_sym_reduce] = ACTIONS(1952), + [anon_sym_select] = ACTIONS(1955), + [anon_sym_insert] = ACTIONS(1958), + [anon_sym_async] = ACTIONS(1961), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_table] = ACTIONS(1964), + [anon_sym_assert] = ACTIONS(1967), + [anon_sym_assert_equal] = ACTIONS(1967), + [anon_sym_download] = ACTIONS(1967), + [anon_sym_help] = ACTIONS(1967), + [anon_sym_length] = ACTIONS(1967), + [anon_sym_output] = ACTIONS(1967), + [anon_sym_output_error] = ACTIONS(1967), + [anon_sym_type] = ACTIONS(1967), + [anon_sym_append] = ACTIONS(1967), + [anon_sym_metadata] = ACTIONS(1967), + [anon_sym_move] = ACTIONS(1967), + [anon_sym_read] = ACTIONS(1967), + [anon_sym_workdir] = ACTIONS(1967), + [anon_sym_write] = ACTIONS(1967), + [anon_sym_from_json] = ACTIONS(1967), + [anon_sym_to_json] = ACTIONS(1967), + [anon_sym_to_string] = ACTIONS(1967), + [anon_sym_to_float] = ACTIONS(1967), + [anon_sym_bash] = ACTIONS(1967), + [anon_sym_fish] = ACTIONS(1967), + [anon_sym_raw] = ACTIONS(1967), + [anon_sym_sh] = ACTIONS(1967), + [anon_sym_zsh] = ACTIONS(1967), + [anon_sym_random] = ACTIONS(1967), + [anon_sym_random_boolean] = ACTIONS(1967), + [anon_sym_random_float] = ACTIONS(1967), + [anon_sym_random_integer] = ACTIONS(1967), + [anon_sym_columns] = ACTIONS(1967), + [anon_sym_rows] = ACTIONS(1967), + [anon_sym_reverse] = ACTIONS(1967), }, [45] = { - [sym_block] = STATE(403), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_statement] = STATE(44), + [sym_expression] = STATE(795), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(611), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(2015), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(325), + [aux_sym_block_repeat1] = STATE(44), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(773), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(419), + [sym_integer] = ACTIONS(782), + [sym_float] = ACTIONS(785), + [sym_string] = ACTIONS(785), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_match] = ACTIONS(1970), + [anon_sym_EQ_GT] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1979), + [anon_sym_asyncfor] = ACTIONS(1982), + [anon_sym_transform] = ACTIONS(1985), + [anon_sym_filter] = ACTIONS(1988), + [anon_sym_find] = ACTIONS(1991), + [anon_sym_remove] = ACTIONS(1994), + [anon_sym_reduce] = ACTIONS(1997), + [anon_sym_select] = ACTIONS(2000), + [anon_sym_insert] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2006), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(2009), + [anon_sym_assert] = ACTIONS(2012), + [anon_sym_assert_equal] = ACTIONS(2012), + [anon_sym_download] = ACTIONS(2012), + [anon_sym_help] = ACTIONS(2012), + [anon_sym_length] = ACTIONS(2012), + [anon_sym_output] = ACTIONS(2012), + [anon_sym_output_error] = ACTIONS(2012), + [anon_sym_type] = ACTIONS(2012), + [anon_sym_append] = ACTIONS(2012), + [anon_sym_metadata] = ACTIONS(2012), + [anon_sym_move] = ACTIONS(2012), + [anon_sym_read] = ACTIONS(2012), + [anon_sym_workdir] = ACTIONS(2012), + [anon_sym_write] = ACTIONS(2012), + [anon_sym_from_json] = ACTIONS(2012), + [anon_sym_to_json] = ACTIONS(2012), + [anon_sym_to_string] = ACTIONS(2012), + [anon_sym_to_float] = ACTIONS(2012), + [anon_sym_bash] = ACTIONS(2012), + [anon_sym_fish] = ACTIONS(2012), + [anon_sym_raw] = ACTIONS(2012), + [anon_sym_sh] = ACTIONS(2012), + [anon_sym_zsh] = ACTIONS(2012), + [anon_sym_random] = ACTIONS(2012), + [anon_sym_random_boolean] = ACTIONS(2012), + [anon_sym_random_float] = ACTIONS(2012), + [anon_sym_random_integer] = ACTIONS(2012), + [anon_sym_columns] = ACTIONS(2012), + [anon_sym_rows] = ACTIONS(2012), + [anon_sym_reverse] = ACTIONS(2012), }, [46] = { - [sym_block] = STATE(457), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [sym_statement] = STATE(50), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(2015), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(1789), + [sym_float] = ACTIONS(1792), + [sym_string] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1795), + [anon_sym_false] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_EQ_GT] = ACTIONS(2021), + [anon_sym_while] = ACTIONS(2024), + [anon_sym_for] = ACTIONS(2027), + [anon_sym_asyncfor] = ACTIONS(2030), + [anon_sym_transform] = ACTIONS(2033), + [anon_sym_filter] = ACTIONS(2036), + [anon_sym_find] = ACTIONS(2039), + [anon_sym_remove] = ACTIONS(2042), + [anon_sym_reduce] = ACTIONS(2045), + [anon_sym_select] = ACTIONS(2048), + [anon_sym_insert] = ACTIONS(2051), + [anon_sym_async] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(2057), + [anon_sym_assert] = ACTIONS(2060), + [anon_sym_assert_equal] = ACTIONS(2060), + [anon_sym_download] = ACTIONS(2060), + [anon_sym_help] = ACTIONS(2060), + [anon_sym_length] = ACTIONS(2060), + [anon_sym_output] = ACTIONS(2060), + [anon_sym_output_error] = ACTIONS(2060), + [anon_sym_type] = ACTIONS(2060), + [anon_sym_append] = ACTIONS(2060), + [anon_sym_metadata] = ACTIONS(2060), + [anon_sym_move] = ACTIONS(2060), + [anon_sym_read] = ACTIONS(2060), + [anon_sym_workdir] = ACTIONS(2060), + [anon_sym_write] = ACTIONS(2060), + [anon_sym_from_json] = ACTIONS(2060), + [anon_sym_to_json] = ACTIONS(2060), + [anon_sym_to_string] = ACTIONS(2060), + [anon_sym_to_float] = ACTIONS(2060), + [anon_sym_bash] = ACTIONS(2060), + [anon_sym_fish] = ACTIONS(2060), + [anon_sym_raw] = ACTIONS(2060), + [anon_sym_sh] = ACTIONS(2060), + [anon_sym_zsh] = ACTIONS(2060), + [anon_sym_random] = ACTIONS(2060), + [anon_sym_random_boolean] = ACTIONS(2060), + [anon_sym_random_float] = ACTIONS(2060), + [anon_sym_random_integer] = ACTIONS(2060), + [anon_sym_columns] = ACTIONS(2060), + [anon_sym_rows] = ACTIONS(2060), + [anon_sym_reverse] = ACTIONS(2060), }, [47] = { - [sym_block] = STATE(458), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [sym_block] = STATE(1066), + [sym_statement] = STATE(381), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(381), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -9816,4345 +11921,4419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [48] = { - [sym_block] = STATE(459), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [sym_statement] = STATE(25), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(25), + [sym_identifier] = ACTIONS(773), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [49] = { - [sym_block] = STATE(460), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [sym_statement] = STATE(25), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(25), + [sym_identifier] = ACTIONS(773), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(782), + [sym_float] = ACTIONS(785), + [sym_string] = ACTIONS(785), + [anon_sym_true] = ACTIONS(788), + [anon_sym_false] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(1111), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(1147), + [anon_sym_assert] = ACTIONS(1150), + [anon_sym_assert_equal] = ACTIONS(1150), + [anon_sym_download] = ACTIONS(1150), + [anon_sym_help] = ACTIONS(1150), + [anon_sym_length] = ACTIONS(1150), + [anon_sym_output] = ACTIONS(1150), + [anon_sym_output_error] = ACTIONS(1150), + [anon_sym_type] = ACTIONS(1150), + [anon_sym_append] = ACTIONS(1150), + [anon_sym_metadata] = ACTIONS(1150), + [anon_sym_move] = ACTIONS(1150), + [anon_sym_read] = ACTIONS(1150), + [anon_sym_workdir] = ACTIONS(1150), + [anon_sym_write] = ACTIONS(1150), + [anon_sym_from_json] = ACTIONS(1150), + [anon_sym_to_json] = ACTIONS(1150), + [anon_sym_to_string] = ACTIONS(1150), + [anon_sym_to_float] = ACTIONS(1150), + [anon_sym_bash] = ACTIONS(1150), + [anon_sym_fish] = ACTIONS(1150), + [anon_sym_raw] = ACTIONS(1150), + [anon_sym_sh] = ACTIONS(1150), + [anon_sym_zsh] = ACTIONS(1150), + [anon_sym_random] = ACTIONS(1150), + [anon_sym_random_boolean] = ACTIONS(1150), + [anon_sym_random_float] = ACTIONS(1150), + [anon_sym_random_integer] = ACTIONS(1150), + [anon_sym_columns] = ACTIONS(1150), + [anon_sym_rows] = ACTIONS(1150), + [anon_sym_reverse] = ACTIONS(1150), }, [50] = { - [sym_block] = STATE(461), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [sym_statement] = STATE(50), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(343), + [sym_identifier] = ACTIONS(2063), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_RPAREN] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(343), + [sym_integer] = ACTIONS(1672), + [sym_float] = ACTIONS(1675), + [sym_string] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1678), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1681), + [anon_sym_RBRACK] = ACTIONS(343), + [anon_sym_COLON] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_DASH] = ACTIONS(366), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PERCENT] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(366), + [anon_sym_GT_EQ] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_EQ_GT] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2075), + [anon_sym_asyncfor] = ACTIONS(2078), + [anon_sym_transform] = ACTIONS(2081), + [anon_sym_filter] = ACTIONS(2084), + [anon_sym_find] = ACTIONS(2087), + [anon_sym_remove] = ACTIONS(2090), + [anon_sym_reduce] = ACTIONS(2093), + [anon_sym_select] = ACTIONS(2096), + [anon_sym_insert] = ACTIONS(2099), + [anon_sym_async] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_table] = ACTIONS(2105), + [anon_sym_assert] = ACTIONS(2108), + [anon_sym_assert_equal] = ACTIONS(2108), + [anon_sym_download] = ACTIONS(2108), + [anon_sym_help] = ACTIONS(2108), + [anon_sym_length] = ACTIONS(2108), + [anon_sym_output] = ACTIONS(2108), + [anon_sym_output_error] = ACTIONS(2108), + [anon_sym_type] = ACTIONS(2108), + [anon_sym_append] = ACTIONS(2108), + [anon_sym_metadata] = ACTIONS(2108), + [anon_sym_move] = ACTIONS(2108), + [anon_sym_read] = ACTIONS(2108), + [anon_sym_workdir] = ACTIONS(2108), + [anon_sym_write] = ACTIONS(2108), + [anon_sym_from_json] = ACTIONS(2108), + [anon_sym_to_json] = ACTIONS(2108), + [anon_sym_to_string] = ACTIONS(2108), + [anon_sym_to_float] = ACTIONS(2108), + [anon_sym_bash] = ACTIONS(2108), + [anon_sym_fish] = ACTIONS(2108), + [anon_sym_raw] = ACTIONS(2108), + [anon_sym_sh] = ACTIONS(2108), + [anon_sym_zsh] = ACTIONS(2108), + [anon_sym_random] = ACTIONS(2108), + [anon_sym_random_boolean] = ACTIONS(2108), + [anon_sym_random_float] = ACTIONS(2108), + [anon_sym_random_integer] = ACTIONS(2108), + [anon_sym_columns] = ACTIONS(2108), + [anon_sym_rows] = ACTIONS(2108), + [anon_sym_reverse] = ACTIONS(2108), }, [51] = { - [sym_block] = STATE(465), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [sym_statement] = STATE(55), + [sym_expression] = STATE(817), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(748), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(760), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(55), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(2111), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(997), + [anon_sym_RPAREN] = ACTIONS(419), + [sym_integer] = ACTIONS(1000), + [sym_float] = ACTIONS(1003), + [sym_string] = ACTIONS(1003), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1009), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(2114), + [anon_sym_elseif] = ACTIONS(419), + [anon_sym_else] = ACTIONS(442), + [anon_sym_match] = ACTIONS(2117), + [anon_sym_EQ_GT] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2123), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_asyncfor] = ACTIONS(2129), + [anon_sym_transform] = ACTIONS(2132), + [anon_sym_filter] = ACTIONS(2135), + [anon_sym_find] = ACTIONS(2138), + [anon_sym_remove] = ACTIONS(2141), + [anon_sym_reduce] = ACTIONS(2144), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_insert] = ACTIONS(2150), + [anon_sym_async] = ACTIONS(2153), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(2156), + [anon_sym_assert] = ACTIONS(2159), + [anon_sym_assert_equal] = ACTIONS(2159), + [anon_sym_download] = ACTIONS(2159), + [anon_sym_help] = ACTIONS(2159), + [anon_sym_length] = ACTIONS(2159), + [anon_sym_output] = ACTIONS(2159), + [anon_sym_output_error] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_append] = ACTIONS(2159), + [anon_sym_metadata] = ACTIONS(2159), + [anon_sym_move] = ACTIONS(2159), + [anon_sym_read] = ACTIONS(2159), + [anon_sym_workdir] = ACTIONS(2159), + [anon_sym_write] = ACTIONS(2159), + [anon_sym_from_json] = ACTIONS(2159), + [anon_sym_to_json] = ACTIONS(2159), + [anon_sym_to_string] = ACTIONS(2159), + [anon_sym_to_float] = ACTIONS(2159), + [anon_sym_bash] = ACTIONS(2159), + [anon_sym_fish] = ACTIONS(2159), + [anon_sym_raw] = ACTIONS(2159), + [anon_sym_sh] = ACTIONS(2159), + [anon_sym_zsh] = ACTIONS(2159), + [anon_sym_random] = ACTIONS(2159), + [anon_sym_random_boolean] = ACTIONS(2159), + [anon_sym_random_float] = ACTIONS(2159), + [anon_sym_random_integer] = ACTIONS(2159), + [anon_sym_columns] = ACTIONS(2159), + [anon_sym_rows] = ACTIONS(2159), + [anon_sym_reverse] = ACTIONS(2159), }, [52] = { - [sym_block] = STATE(591), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(371), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1381), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1380), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(53), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [53] = { - [sym_block] = STATE(467), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [sym_block] = STATE(1066), + [sym_statement] = STATE(382), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1381), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1380), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(382), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(53), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), [sym_string] = ACTIONS(13), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [anon_sym_COLON] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [54] = { - [sym_block] = STATE(405), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_statement] = STATE(37), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(37), + [sym_identifier] = ACTIONS(1780), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(1789), + [sym_float] = ACTIONS(1792), + [sym_string] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1795), + [anon_sym_false] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(1804), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(1840), + [anon_sym_assert] = ACTIONS(1843), + [anon_sym_assert_equal] = ACTIONS(1843), + [anon_sym_download] = ACTIONS(1843), + [anon_sym_help] = ACTIONS(1843), + [anon_sym_length] = ACTIONS(1843), + [anon_sym_output] = ACTIONS(1843), + [anon_sym_output_error] = ACTIONS(1843), + [anon_sym_type] = ACTIONS(1843), + [anon_sym_append] = ACTIONS(1843), + [anon_sym_metadata] = ACTIONS(1843), + [anon_sym_move] = ACTIONS(1843), + [anon_sym_read] = ACTIONS(1843), + [anon_sym_workdir] = ACTIONS(1843), + [anon_sym_write] = ACTIONS(1843), + [anon_sym_from_json] = ACTIONS(1843), + [anon_sym_to_json] = ACTIONS(1843), + [anon_sym_to_string] = ACTIONS(1843), + [anon_sym_to_float] = ACTIONS(1843), + [anon_sym_bash] = ACTIONS(1843), + [anon_sym_fish] = ACTIONS(1843), + [anon_sym_raw] = ACTIONS(1843), + [anon_sym_sh] = ACTIONS(1843), + [anon_sym_zsh] = ACTIONS(1843), + [anon_sym_random] = ACTIONS(1843), + [anon_sym_random_boolean] = ACTIONS(1843), + [anon_sym_random_float] = ACTIONS(1843), + [anon_sym_random_integer] = ACTIONS(1843), + [anon_sym_columns] = ACTIONS(1843), + [anon_sym_rows] = ACTIONS(1843), + [anon_sym_reverse] = ACTIONS(1843), }, [55] = { - [sym_block] = STATE(598), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_statement] = STATE(55), + [sym_expression] = STATE(817), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(748), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(760), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(55), + [ts_builtin_sym_end] = ACTIONS(343), + [sym_identifier] = ACTIONS(2188), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(1322), + [anon_sym_RPAREN] = ACTIONS(343), + [sym_integer] = ACTIONS(1325), + [sym_float] = ACTIONS(1328), + [sym_string] = ACTIONS(1328), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_COLON] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_DASH] = ACTIONS(366), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PERCENT] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(366), + [anon_sym_GT_EQ] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_elseif] = ACTIONS(343), + [anon_sym_else] = ACTIONS(366), + [anon_sym_match] = ACTIONS(2194), + [anon_sym_EQ_GT] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2203), + [anon_sym_asyncfor] = ACTIONS(2206), + [anon_sym_transform] = ACTIONS(2209), + [anon_sym_filter] = ACTIONS(2212), + [anon_sym_find] = ACTIONS(2215), + [anon_sym_remove] = ACTIONS(2218), + [anon_sym_reduce] = ACTIONS(2221), + [anon_sym_select] = ACTIONS(2224), + [anon_sym_insert] = ACTIONS(2227), + [anon_sym_async] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_table] = ACTIONS(2233), + [anon_sym_assert] = ACTIONS(2236), + [anon_sym_assert_equal] = ACTIONS(2236), + [anon_sym_download] = ACTIONS(2236), + [anon_sym_help] = ACTIONS(2236), + [anon_sym_length] = ACTIONS(2236), + [anon_sym_output] = ACTIONS(2236), + [anon_sym_output_error] = ACTIONS(2236), + [anon_sym_type] = ACTIONS(2236), + [anon_sym_append] = ACTIONS(2236), + [anon_sym_metadata] = ACTIONS(2236), + [anon_sym_move] = ACTIONS(2236), + [anon_sym_read] = ACTIONS(2236), + [anon_sym_workdir] = ACTIONS(2236), + [anon_sym_write] = ACTIONS(2236), + [anon_sym_from_json] = ACTIONS(2236), + [anon_sym_to_json] = ACTIONS(2236), + [anon_sym_to_string] = ACTIONS(2236), + [anon_sym_to_float] = ACTIONS(2236), + [anon_sym_bash] = ACTIONS(2236), + [anon_sym_fish] = ACTIONS(2236), + [anon_sym_raw] = ACTIONS(2236), + [anon_sym_sh] = ACTIONS(2236), + [anon_sym_zsh] = ACTIONS(2236), + [anon_sym_random] = ACTIONS(2236), + [anon_sym_random_boolean] = ACTIONS(2236), + [anon_sym_random_float] = ACTIONS(2236), + [anon_sym_random_integer] = ACTIONS(2236), + [anon_sym_columns] = ACTIONS(2236), + [anon_sym_rows] = ACTIONS(2236), + [anon_sym_reverse] = ACTIONS(2236), }, [56] = { - [sym_block] = STATE(686), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_statement] = STATE(56), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(56), + [ts_builtin_sym_end] = ACTIONS(343), + [sym_identifier] = ACTIONS(2239), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_RPAREN] = ACTIONS(343), + [sym_integer] = ACTIONS(1672), + [sym_float] = ACTIONS(1675), + [sym_string] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1678), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1681), + [anon_sym_COLON] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_DASH] = ACTIONS(366), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PERCENT] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(366), + [anon_sym_GT_EQ] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(2242), + [anon_sym_EQ_GT] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2248), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_asyncfor] = ACTIONS(2254), + [anon_sym_transform] = ACTIONS(2257), + [anon_sym_filter] = ACTIONS(2260), + [anon_sym_find] = ACTIONS(2263), + [anon_sym_remove] = ACTIONS(2266), + [anon_sym_reduce] = ACTIONS(2269), + [anon_sym_select] = ACTIONS(2272), + [anon_sym_insert] = ACTIONS(2275), + [anon_sym_async] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_table] = ACTIONS(2281), + [anon_sym_assert] = ACTIONS(2284), + [anon_sym_assert_equal] = ACTIONS(2284), + [anon_sym_download] = ACTIONS(2284), + [anon_sym_help] = ACTIONS(2284), + [anon_sym_length] = ACTIONS(2284), + [anon_sym_output] = ACTIONS(2284), + [anon_sym_output_error] = ACTIONS(2284), + [anon_sym_type] = ACTIONS(2284), + [anon_sym_append] = ACTIONS(2284), + [anon_sym_metadata] = ACTIONS(2284), + [anon_sym_move] = ACTIONS(2284), + [anon_sym_read] = ACTIONS(2284), + [anon_sym_workdir] = ACTIONS(2284), + [anon_sym_write] = ACTIONS(2284), + [anon_sym_from_json] = ACTIONS(2284), + [anon_sym_to_json] = ACTIONS(2284), + [anon_sym_to_string] = ACTIONS(2284), + [anon_sym_to_float] = ACTIONS(2284), + [anon_sym_bash] = ACTIONS(2284), + [anon_sym_fish] = ACTIONS(2284), + [anon_sym_raw] = ACTIONS(2284), + [anon_sym_sh] = ACTIONS(2284), + [anon_sym_zsh] = ACTIONS(2284), + [anon_sym_random] = ACTIONS(2284), + [anon_sym_random_boolean] = ACTIONS(2284), + [anon_sym_random_float] = ACTIONS(2284), + [anon_sym_random_integer] = ACTIONS(2284), + [anon_sym_columns] = ACTIONS(2284), + [anon_sym_rows] = ACTIONS(2284), + [anon_sym_reverse] = ACTIONS(2284), }, [57] = { - [sym_block] = STATE(405), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), + [sym_statement] = STATE(56), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(56), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(2287), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_RPAREN] = ACTIONS(419), + [sym_integer] = ACTIONS(1789), + [sym_float] = ACTIONS(1792), + [sym_string] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1795), + [anon_sym_false] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_match] = ACTIONS(2290), + [anon_sym_EQ_GT] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_asyncfor] = ACTIONS(2302), + [anon_sym_transform] = ACTIONS(2305), + [anon_sym_filter] = ACTIONS(2308), + [anon_sym_find] = ACTIONS(2311), + [anon_sym_remove] = ACTIONS(2314), + [anon_sym_reduce] = ACTIONS(2317), + [anon_sym_select] = ACTIONS(2320), + [anon_sym_insert] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2326), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(2329), + [anon_sym_assert] = ACTIONS(2332), + [anon_sym_assert_equal] = ACTIONS(2332), + [anon_sym_download] = ACTIONS(2332), + [anon_sym_help] = ACTIONS(2332), + [anon_sym_length] = ACTIONS(2332), + [anon_sym_output] = ACTIONS(2332), + [anon_sym_output_error] = ACTIONS(2332), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_append] = ACTIONS(2332), + [anon_sym_metadata] = ACTIONS(2332), + [anon_sym_move] = ACTIONS(2332), + [anon_sym_read] = ACTIONS(2332), + [anon_sym_workdir] = ACTIONS(2332), + [anon_sym_write] = ACTIONS(2332), + [anon_sym_from_json] = ACTIONS(2332), + [anon_sym_to_json] = ACTIONS(2332), + [anon_sym_to_string] = ACTIONS(2332), + [anon_sym_to_float] = ACTIONS(2332), + [anon_sym_bash] = ACTIONS(2332), + [anon_sym_fish] = ACTIONS(2332), + [anon_sym_raw] = ACTIONS(2332), + [anon_sym_sh] = ACTIONS(2332), + [anon_sym_zsh] = ACTIONS(2332), + [anon_sym_random] = ACTIONS(2332), + [anon_sym_random_boolean] = ACTIONS(2332), + [anon_sym_random_float] = ACTIONS(2332), + [anon_sym_random_integer] = ACTIONS(2332), + [anon_sym_columns] = ACTIONS(2332), + [anon_sym_rows] = ACTIONS(2332), + [anon_sym_reverse] = ACTIONS(2332), }, [58] = { - [sym_block] = STATE(687), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_statement] = STATE(50), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(50), + [sym_identifier] = ACTIONS(2015), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(1789), + [sym_float] = ACTIONS(1792), + [sym_string] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1795), + [anon_sym_false] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(2021), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(2057), + [anon_sym_assert] = ACTIONS(2060), + [anon_sym_assert_equal] = ACTIONS(2060), + [anon_sym_download] = ACTIONS(2060), + [anon_sym_help] = ACTIONS(2060), + [anon_sym_length] = ACTIONS(2060), + [anon_sym_output] = ACTIONS(2060), + [anon_sym_output_error] = ACTIONS(2060), + [anon_sym_type] = ACTIONS(2060), + [anon_sym_append] = ACTIONS(2060), + [anon_sym_metadata] = ACTIONS(2060), + [anon_sym_move] = ACTIONS(2060), + [anon_sym_read] = ACTIONS(2060), + [anon_sym_workdir] = ACTIONS(2060), + [anon_sym_write] = ACTIONS(2060), + [anon_sym_from_json] = ACTIONS(2060), + [anon_sym_to_json] = ACTIONS(2060), + [anon_sym_to_string] = ACTIONS(2060), + [anon_sym_to_float] = ACTIONS(2060), + [anon_sym_bash] = ACTIONS(2060), + [anon_sym_fish] = ACTIONS(2060), + [anon_sym_raw] = ACTIONS(2060), + [anon_sym_sh] = ACTIONS(2060), + [anon_sym_zsh] = ACTIONS(2060), + [anon_sym_random] = ACTIONS(2060), + [anon_sym_random_boolean] = ACTIONS(2060), + [anon_sym_random_float] = ACTIONS(2060), + [anon_sym_random_integer] = ACTIONS(2060), + [anon_sym_columns] = ACTIONS(2060), + [anon_sym_rows] = ACTIONS(2060), + [anon_sym_reverse] = ACTIONS(2060), }, [59] = { - [sym_block] = STATE(593), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_statement] = STATE(59), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(59), + [ts_builtin_sym_end] = ACTIONS(343), + [sym_identifier] = ACTIONS(2335), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_RPAREN] = ACTIONS(343), + [sym_integer] = ACTIONS(1672), + [sym_float] = ACTIONS(1675), + [sym_string] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1678), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1681), + [anon_sym_COLON] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_DASH] = ACTIONS(366), + [anon_sym_STAR] = ACTIONS(343), + [anon_sym_SLASH] = ACTIONS(343), + [anon_sym_PERCENT] = ACTIONS(343), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_AMP_AMP] = ACTIONS(343), + [anon_sym_PIPE_PIPE] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(366), + [anon_sym_LT] = ACTIONS(366), + [anon_sym_GT_EQ] = ACTIONS(343), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_match] = ACTIONS(2338), + [anon_sym_EQ_GT] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2344), + [anon_sym_for] = ACTIONS(2347), + [anon_sym_asyncfor] = ACTIONS(2350), + [anon_sym_transform] = ACTIONS(2353), + [anon_sym_filter] = ACTIONS(2356), + [anon_sym_find] = ACTIONS(2359), + [anon_sym_remove] = ACTIONS(2362), + [anon_sym_reduce] = ACTIONS(2365), + [anon_sym_select] = ACTIONS(2368), + [anon_sym_insert] = ACTIONS(2371), + [anon_sym_async] = ACTIONS(2374), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_table] = ACTIONS(2377), + [anon_sym_assert] = ACTIONS(2380), + [anon_sym_assert_equal] = ACTIONS(2380), + [anon_sym_download] = ACTIONS(2380), + [anon_sym_help] = ACTIONS(2380), + [anon_sym_length] = ACTIONS(2380), + [anon_sym_output] = ACTIONS(2380), + [anon_sym_output_error] = ACTIONS(2380), + [anon_sym_type] = ACTIONS(2380), + [anon_sym_append] = ACTIONS(2380), + [anon_sym_metadata] = ACTIONS(2380), + [anon_sym_move] = ACTIONS(2380), + [anon_sym_read] = ACTIONS(2380), + [anon_sym_workdir] = ACTIONS(2380), + [anon_sym_write] = ACTIONS(2380), + [anon_sym_from_json] = ACTIONS(2380), + [anon_sym_to_json] = ACTIONS(2380), + [anon_sym_to_string] = ACTIONS(2380), + [anon_sym_to_float] = ACTIONS(2380), + [anon_sym_bash] = ACTIONS(2380), + [anon_sym_fish] = ACTIONS(2380), + [anon_sym_raw] = ACTIONS(2380), + [anon_sym_sh] = ACTIONS(2380), + [anon_sym_zsh] = ACTIONS(2380), + [anon_sym_random] = ACTIONS(2380), + [anon_sym_random_boolean] = ACTIONS(2380), + [anon_sym_random_float] = ACTIONS(2380), + [anon_sym_random_integer] = ACTIONS(2380), + [anon_sym_columns] = ACTIONS(2380), + [anon_sym_rows] = ACTIONS(2380), + [anon_sym_reverse] = ACTIONS(2380), }, [60] = { - [sym_block] = STATE(578), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_statement] = STATE(37), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(37), + [sym_identifier] = ACTIONS(1780), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), }, [61] = { - [sym_block] = STATE(386), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), + [sym_statement] = STATE(59), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(59), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(2385), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_RPAREN] = ACTIONS(419), + [sym_integer] = ACTIONS(1789), + [sym_float] = ACTIONS(1792), + [sym_string] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1795), + [anon_sym_false] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(2114), + [anon_sym_match] = ACTIONS(2388), + [anon_sym_EQ_GT] = ACTIONS(2391), + [anon_sym_while] = ACTIONS(2394), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_asyncfor] = ACTIONS(2400), + [anon_sym_transform] = ACTIONS(2403), + [anon_sym_filter] = ACTIONS(2406), + [anon_sym_find] = ACTIONS(2409), + [anon_sym_remove] = ACTIONS(2412), + [anon_sym_reduce] = ACTIONS(2415), + [anon_sym_select] = ACTIONS(2418), + [anon_sym_insert] = ACTIONS(2421), + [anon_sym_async] = ACTIONS(2424), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(2427), + [anon_sym_assert] = ACTIONS(2430), + [anon_sym_assert_equal] = ACTIONS(2430), + [anon_sym_download] = ACTIONS(2430), + [anon_sym_help] = ACTIONS(2430), + [anon_sym_length] = ACTIONS(2430), + [anon_sym_output] = ACTIONS(2430), + [anon_sym_output_error] = ACTIONS(2430), + [anon_sym_type] = ACTIONS(2430), + [anon_sym_append] = ACTIONS(2430), + [anon_sym_metadata] = ACTIONS(2430), + [anon_sym_move] = ACTIONS(2430), + [anon_sym_read] = ACTIONS(2430), + [anon_sym_workdir] = ACTIONS(2430), + [anon_sym_write] = ACTIONS(2430), + [anon_sym_from_json] = ACTIONS(2430), + [anon_sym_to_json] = ACTIONS(2430), + [anon_sym_to_string] = ACTIONS(2430), + [anon_sym_to_float] = ACTIONS(2430), + [anon_sym_bash] = ACTIONS(2430), + [anon_sym_fish] = ACTIONS(2430), + [anon_sym_raw] = ACTIONS(2430), + [anon_sym_sh] = ACTIONS(2430), + [anon_sym_zsh] = ACTIONS(2430), + [anon_sym_random] = ACTIONS(2430), + [anon_sym_random_boolean] = ACTIONS(2430), + [anon_sym_random_float] = ACTIONS(2430), + [anon_sym_random_integer] = ACTIONS(2430), + [anon_sym_columns] = ACTIONS(2430), + [anon_sym_rows] = ACTIONS(2430), + [anon_sym_reverse] = ACTIONS(2430), }, [62] = { - [sym_block] = STATE(767), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_block] = STATE(624), + [sym_statement] = STATE(27), + [sym_expression] = STATE(663), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(637), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1998), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(296), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(313), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_asyncfor] = ACTIONS(321), + [anon_sym_transform] = ACTIONS(323), + [anon_sym_filter] = ACTIONS(325), + [anon_sym_find] = ACTIONS(327), + [anon_sym_remove] = ACTIONS(329), + [anon_sym_reduce] = ACTIONS(331), + [anon_sym_select] = ACTIONS(333), + [anon_sym_insert] = ACTIONS(335), + [anon_sym_async] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(341), + [anon_sym_assert_equal] = ACTIONS(341), + [anon_sym_download] = ACTIONS(341), + [anon_sym_help] = ACTIONS(341), + [anon_sym_length] = ACTIONS(341), + [anon_sym_output] = ACTIONS(341), + [anon_sym_output_error] = ACTIONS(341), + [anon_sym_type] = ACTIONS(341), + [anon_sym_append] = ACTIONS(341), + [anon_sym_metadata] = ACTIONS(341), + [anon_sym_move] = ACTIONS(341), + [anon_sym_read] = ACTIONS(341), + [anon_sym_workdir] = ACTIONS(341), + [anon_sym_write] = ACTIONS(341), + [anon_sym_from_json] = ACTIONS(341), + [anon_sym_to_json] = ACTIONS(341), + [anon_sym_to_string] = ACTIONS(341), + [anon_sym_to_float] = ACTIONS(341), + [anon_sym_bash] = ACTIONS(341), + [anon_sym_fish] = ACTIONS(341), + [anon_sym_raw] = ACTIONS(341), + [anon_sym_sh] = ACTIONS(341), + [anon_sym_zsh] = ACTIONS(341), + [anon_sym_random] = ACTIONS(341), + [anon_sym_random_boolean] = ACTIONS(341), + [anon_sym_random_float] = ACTIONS(341), + [anon_sym_random_integer] = ACTIONS(341), + [anon_sym_columns] = ACTIONS(341), + [anon_sym_rows] = ACTIONS(341), + [anon_sym_reverse] = ACTIONS(341), }, [63] = { - [sym_block] = STATE(387), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), + [sym_block] = STATE(1016), + [sym_statement] = STATE(358), + [sym_expression] = STATE(859), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(754), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(985), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1566), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_asyncfor] = ACTIONS(1578), + [anon_sym_transform] = ACTIONS(1580), + [anon_sym_filter] = ACTIONS(1582), + [anon_sym_find] = ACTIONS(1584), + [anon_sym_remove] = ACTIONS(1586), + [anon_sym_reduce] = ACTIONS(1588), + [anon_sym_select] = ACTIONS(1590), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [64] = { - [sym_block] = STATE(388), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), + [sym_block] = STATE(1647), + [sym_statement] = STATE(371), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [65] = { - [sym_block] = STATE(406), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), + [sym_block] = STATE(1643), + [sym_statement] = STATE(354), + [sym_expression] = STATE(859), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(754), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(985), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(354), + [sym_identifier] = ACTIONS(1566), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_asyncfor] = ACTIONS(1578), + [anon_sym_transform] = ACTIONS(1580), + [anon_sym_filter] = ACTIONS(1582), + [anon_sym_find] = ACTIONS(1584), + [anon_sym_remove] = ACTIONS(1586), + [anon_sym_reduce] = ACTIONS(1588), + [anon_sym_select] = ACTIONS(1590), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [66] = { - [sym_block] = STATE(389), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), + [sym_block] = STATE(1654), + [sym_statement] = STATE(371), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [67] = { - [sym_block] = STATE(390), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), + [sym_block] = STATE(1641), + [sym_statement] = STATE(354), + [sym_expression] = STATE(859), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(754), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(985), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(354), + [sym_identifier] = ACTIONS(1566), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_asyncfor] = ACTIONS(1578), + [anon_sym_transform] = ACTIONS(1580), + [anon_sym_filter] = ACTIONS(1582), + [anon_sym_find] = ACTIONS(1584), + [anon_sym_remove] = ACTIONS(1586), + [anon_sym_reduce] = ACTIONS(1588), + [anon_sym_select] = ACTIONS(1590), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [68] = { - [sym_block] = STATE(575), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_block] = STATE(729), + [sym_statement] = STATE(35), + [sym_expression] = STATE(701), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(582), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1866), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(320), + [aux_sym_block_repeat1] = STATE(35), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(497), + [anon_sym_EQ_GT] = ACTIONS(499), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_asyncfor] = ACTIONS(505), + [anon_sym_transform] = ACTIONS(507), + [anon_sym_filter] = ACTIONS(509), + [anon_sym_find] = ACTIONS(511), + [anon_sym_remove] = ACTIONS(513), + [anon_sym_reduce] = ACTIONS(515), + [anon_sym_select] = ACTIONS(517), + [anon_sym_insert] = ACTIONS(519), + [anon_sym_async] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(525), + [anon_sym_assert_equal] = ACTIONS(525), + [anon_sym_download] = ACTIONS(525), + [anon_sym_help] = ACTIONS(525), + [anon_sym_length] = ACTIONS(525), + [anon_sym_output] = ACTIONS(525), + [anon_sym_output_error] = ACTIONS(525), + [anon_sym_type] = ACTIONS(525), + [anon_sym_append] = ACTIONS(525), + [anon_sym_metadata] = ACTIONS(525), + [anon_sym_move] = ACTIONS(525), + [anon_sym_read] = ACTIONS(525), + [anon_sym_workdir] = ACTIONS(525), + [anon_sym_write] = ACTIONS(525), + [anon_sym_from_json] = ACTIONS(525), + [anon_sym_to_json] = ACTIONS(525), + [anon_sym_to_string] = ACTIONS(525), + [anon_sym_to_float] = ACTIONS(525), + [anon_sym_bash] = ACTIONS(525), + [anon_sym_fish] = ACTIONS(525), + [anon_sym_raw] = ACTIONS(525), + [anon_sym_sh] = ACTIONS(525), + [anon_sym_zsh] = ACTIONS(525), + [anon_sym_random] = ACTIONS(525), + [anon_sym_random_boolean] = ACTIONS(525), + [anon_sym_random_float] = ACTIONS(525), + [anon_sym_random_integer] = ACTIONS(525), + [anon_sym_columns] = ACTIONS(525), + [anon_sym_rows] = ACTIONS(525), + [anon_sym_reverse] = ACTIONS(525), }, [69] = { - [sym_block] = STATE(403), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), + [sym_block] = STATE(1018), + [sym_statement] = STATE(352), + [sym_expression] = STATE(877), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(782), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(978), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1639), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_asyncfor] = ACTIONS(1647), + [anon_sym_transform] = ACTIONS(1649), + [anon_sym_filter] = ACTIONS(1651), + [anon_sym_find] = ACTIONS(1653), + [anon_sym_remove] = ACTIONS(1655), + [anon_sym_reduce] = ACTIONS(1657), + [anon_sym_select] = ACTIONS(1659), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [70] = { - [sym_block] = STATE(386), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_block] = STATE(1061), + [sym_statement] = STATE(381), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [71] = { - [sym_block] = STATE(387), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_block] = STATE(728), + [sym_statement] = STATE(35), + [sym_expression] = STATE(701), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(582), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1866), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(320), + [aux_sym_block_repeat1] = STATE(35), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(497), + [anon_sym_EQ_GT] = ACTIONS(499), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_asyncfor] = ACTIONS(505), + [anon_sym_transform] = ACTIONS(507), + [anon_sym_filter] = ACTIONS(509), + [anon_sym_find] = ACTIONS(511), + [anon_sym_remove] = ACTIONS(513), + [anon_sym_reduce] = ACTIONS(515), + [anon_sym_select] = ACTIONS(517), + [anon_sym_insert] = ACTIONS(519), + [anon_sym_async] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(525), + [anon_sym_assert_equal] = ACTIONS(525), + [anon_sym_download] = ACTIONS(525), + [anon_sym_help] = ACTIONS(525), + [anon_sym_length] = ACTIONS(525), + [anon_sym_output] = ACTIONS(525), + [anon_sym_output_error] = ACTIONS(525), + [anon_sym_type] = ACTIONS(525), + [anon_sym_append] = ACTIONS(525), + [anon_sym_metadata] = ACTIONS(525), + [anon_sym_move] = ACTIONS(525), + [anon_sym_read] = ACTIONS(525), + [anon_sym_workdir] = ACTIONS(525), + [anon_sym_write] = ACTIONS(525), + [anon_sym_from_json] = ACTIONS(525), + [anon_sym_to_json] = ACTIONS(525), + [anon_sym_to_string] = ACTIONS(525), + [anon_sym_to_float] = ACTIONS(525), + [anon_sym_bash] = ACTIONS(525), + [anon_sym_fish] = ACTIONS(525), + [anon_sym_raw] = ACTIONS(525), + [anon_sym_sh] = ACTIONS(525), + [anon_sym_zsh] = ACTIONS(525), + [anon_sym_random] = ACTIONS(525), + [anon_sym_random_boolean] = ACTIONS(525), + [anon_sym_random_float] = ACTIONS(525), + [anon_sym_random_integer] = ACTIONS(525), + [anon_sym_columns] = ACTIONS(525), + [anon_sym_rows] = ACTIONS(525), + [anon_sym_reverse] = ACTIONS(525), }, [72] = { - [sym_block] = STATE(595), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_block] = STATE(638), + [sym_statement] = STATE(10), + [sym_expression] = STATE(571), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(558), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [73] = { - [sym_block] = STATE(388), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_block] = STATE(636), + [sym_statement] = STATE(10), + [sym_expression] = STATE(571), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(558), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [74] = { - [sym_block] = STATE(597), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_block] = STATE(624), + [sym_statement] = STATE(10), + [sym_expression] = STATE(571), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(558), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [75] = { - [sym_block] = STATE(389), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_block] = STATE(619), + [sym_statement] = STATE(10), + [sym_expression] = STATE(571), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(558), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [76] = { - [sym_block] = STATE(577), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_block] = STATE(589), + [sym_statement] = STATE(10), + [sym_expression] = STATE(571), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(558), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [77] = { - [sym_block] = STATE(588), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_block] = STATE(610), + [sym_statement] = STATE(10), + [sym_expression] = STATE(571), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(558), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [78] = { - [sym_block] = STATE(692), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_block] = STATE(608), + [sym_statement] = STATE(10), + [sym_expression] = STATE(571), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(558), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [79] = { - [sym_block] = STATE(393), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), + [sym_block] = STATE(598), + [sym_statement] = STATE(10), + [sym_expression] = STATE(571), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(558), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [80] = { - [sym_block] = STATE(396), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), + [sym_block] = STATE(813), + [sym_statement] = STATE(33), + [sym_expression] = STATE(732), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(620), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(654), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(33), + [sym_identifier] = ACTIONS(623), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(629), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_asyncfor] = ACTIONS(637), + [anon_sym_transform] = ACTIONS(639), + [anon_sym_filter] = ACTIONS(641), + [anon_sym_find] = ACTIONS(643), + [anon_sym_remove] = ACTIONS(645), + [anon_sym_reduce] = ACTIONS(647), + [anon_sym_select] = ACTIONS(649), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [81] = { - [sym_block] = STATE(694), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_block] = STATE(812), + [sym_statement] = STATE(33), + [sym_expression] = STATE(732), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(620), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(654), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(33), + [sym_identifier] = ACTIONS(623), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(629), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_asyncfor] = ACTIONS(637), + [anon_sym_transform] = ACTIONS(639), + [anon_sym_filter] = ACTIONS(641), + [anon_sym_find] = ACTIONS(643), + [anon_sym_remove] = ACTIONS(645), + [anon_sym_reduce] = ACTIONS(647), + [anon_sym_select] = ACTIONS(649), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [82] = { - [sym_block] = STATE(472), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_block] = STATE(810), + [sym_statement] = STATE(33), + [sym_expression] = STATE(732), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(620), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(654), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(33), + [sym_identifier] = ACTIONS(623), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(629), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_asyncfor] = ACTIONS(637), + [anon_sym_transform] = ACTIONS(639), + [anon_sym_filter] = ACTIONS(641), + [anon_sym_find] = ACTIONS(643), + [anon_sym_remove] = ACTIONS(645), + [anon_sym_reduce] = ACTIONS(647), + [anon_sym_select] = ACTIONS(649), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [83] = { - [sym_block] = STATE(390), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_block] = STATE(809), + [sym_statement] = STATE(33), + [sym_expression] = STATE(732), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(620), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(654), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(33), + [sym_identifier] = ACTIONS(623), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(629), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_asyncfor] = ACTIONS(637), + [anon_sym_transform] = ACTIONS(639), + [anon_sym_filter] = ACTIONS(641), + [anon_sym_find] = ACTIONS(643), + [anon_sym_remove] = ACTIONS(645), + [anon_sym_reduce] = ACTIONS(647), + [anon_sym_select] = ACTIONS(649), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [84] = { - [sym_block] = STATE(403), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_block] = STATE(808), + [sym_statement] = STATE(33), + [sym_expression] = STATE(732), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(620), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(654), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(33), + [sym_identifier] = ACTIONS(623), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(629), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_asyncfor] = ACTIONS(637), + [anon_sym_transform] = ACTIONS(639), + [anon_sym_filter] = ACTIONS(641), + [anon_sym_find] = ACTIONS(643), + [anon_sym_remove] = ACTIONS(645), + [anon_sym_reduce] = ACTIONS(647), + [anon_sym_select] = ACTIONS(649), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [85] = { - [sym_block] = STATE(695), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_block] = STATE(806), + [sym_statement] = STATE(33), + [sym_expression] = STATE(732), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(620), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(654), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(33), + [sym_identifier] = ACTIONS(623), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(629), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_asyncfor] = ACTIONS(637), + [anon_sym_transform] = ACTIONS(639), + [anon_sym_filter] = ACTIONS(641), + [anon_sym_find] = ACTIONS(643), + [anon_sym_remove] = ACTIONS(645), + [anon_sym_reduce] = ACTIONS(647), + [anon_sym_select] = ACTIONS(649), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [86] = { - [sym_block] = STATE(696), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_block] = STATE(804), + [sym_statement] = STATE(33), + [sym_expression] = STATE(732), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(620), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(654), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(33), + [sym_identifier] = ACTIONS(623), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(629), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_asyncfor] = ACTIONS(637), + [anon_sym_transform] = ACTIONS(639), + [anon_sym_filter] = ACTIONS(641), + [anon_sym_find] = ACTIONS(643), + [anon_sym_remove] = ACTIONS(645), + [anon_sym_reduce] = ACTIONS(647), + [anon_sym_select] = ACTIONS(649), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [87] = { - [sym_block] = STATE(767), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_block] = STATE(816), + [sym_statement] = STATE(33), + [sym_expression] = STATE(732), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(620), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(654), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(33), + [sym_identifier] = ACTIONS(623), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(629), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_asyncfor] = ACTIONS(637), + [anon_sym_transform] = ACTIONS(639), + [anon_sym_filter] = ACTIONS(641), + [anon_sym_find] = ACTIONS(643), + [anon_sym_remove] = ACTIONS(645), + [anon_sym_reduce] = ACTIONS(647), + [anon_sym_select] = ACTIONS(649), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [88] = { - [sym_block] = STATE(697), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), + [sym_block] = STATE(879), + [sym_statement] = STATE(46), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(1198), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -14162,423 +16341,427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [89] = { - [sym_block] = STATE(393), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_block] = STATE(840), + [sym_statement] = STATE(46), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(1198), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [90] = { - [sym_block] = STATE(406), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_block] = STATE(880), + [sym_statement] = STATE(46), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(1198), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [91] = { - [sym_block] = STATE(396), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_block] = STATE(873), + [sym_statement] = STATE(46), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(1198), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [92] = { - [sym_block] = STATE(767), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), + [sym_block] = STATE(846), + [sym_statement] = STATE(39), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(39), + [sym_identifier] = ACTIONS(875), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -14586,105 +16769,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), }, [93] = { - [sym_block] = STATE(697), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), + [sym_block] = STATE(871), + [sym_statement] = STATE(46), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(1198), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -14692,105 +16876,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [94] = { - [sym_block] = STATE(696), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), + [sym_block] = STATE(864), + [sym_statement] = STATE(46), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(1198), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -14798,105 +16983,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [95] = { - [sym_block] = STATE(695), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), + [sym_block] = STATE(863), + [sym_statement] = STATE(46), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(1198), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -14904,2966 +17090,2994 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [96] = { - [sym_block] = STATE(694), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_block] = STATE(762), + [sym_statement] = STATE(33), + [sym_expression] = STATE(732), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(620), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(654), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(33), + [sym_identifier] = ACTIONS(623), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(629), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_asyncfor] = ACTIONS(637), + [anon_sym_transform] = ACTIONS(639), + [anon_sym_filter] = ACTIONS(641), + [anon_sym_find] = ACTIONS(643), + [anon_sym_remove] = ACTIONS(645), + [anon_sym_reduce] = ACTIONS(647), + [anon_sym_select] = ACTIONS(649), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [97] = { - [sym_block] = STATE(692), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), + [sym_block] = STATE(804), + [sym_statement] = STATE(38), + [sym_expression] = STATE(779), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(655), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(724), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1860), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(341), + [aux_sym_block_repeat1] = STATE(38), + [sym_identifier] = ACTIONS(839), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(845), + [anon_sym_EQ_GT] = ACTIONS(847), + [anon_sym_while] = ACTIONS(849), + [anon_sym_for] = ACTIONS(851), + [anon_sym_asyncfor] = ACTIONS(853), [anon_sym_transform] = ACTIONS(855), [anon_sym_filter] = ACTIONS(857), [anon_sym_find] = ACTIONS(859), [anon_sym_remove] = ACTIONS(861), [anon_sym_reduce] = ACTIONS(863), [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_insert] = ACTIONS(867), + [anon_sym_async] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(871), + [anon_sym_assert] = ACTIONS(873), + [anon_sym_assert_equal] = ACTIONS(873), + [anon_sym_download] = ACTIONS(873), + [anon_sym_help] = ACTIONS(873), + [anon_sym_length] = ACTIONS(873), + [anon_sym_output] = ACTIONS(873), + [anon_sym_output_error] = ACTIONS(873), + [anon_sym_type] = ACTIONS(873), + [anon_sym_append] = ACTIONS(873), + [anon_sym_metadata] = ACTIONS(873), + [anon_sym_move] = ACTIONS(873), + [anon_sym_read] = ACTIONS(873), + [anon_sym_workdir] = ACTIONS(873), + [anon_sym_write] = ACTIONS(873), + [anon_sym_from_json] = ACTIONS(873), + [anon_sym_to_json] = ACTIONS(873), + [anon_sym_to_string] = ACTIONS(873), + [anon_sym_to_float] = ACTIONS(873), + [anon_sym_bash] = ACTIONS(873), + [anon_sym_fish] = ACTIONS(873), + [anon_sym_raw] = ACTIONS(873), + [anon_sym_sh] = ACTIONS(873), + [anon_sym_zsh] = ACTIONS(873), + [anon_sym_random] = ACTIONS(873), + [anon_sym_random_boolean] = ACTIONS(873), + [anon_sym_random_float] = ACTIONS(873), + [anon_sym_random_integer] = ACTIONS(873), + [anon_sym_columns] = ACTIONS(873), + [anon_sym_rows] = ACTIONS(873), + [anon_sym_reverse] = ACTIONS(873), }, [98] = { - [sym_block] = STATE(461), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_block] = STATE(806), + [sym_statement] = STATE(38), + [sym_expression] = STATE(779), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(655), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(724), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1860), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(341), + [aux_sym_block_repeat1] = STATE(38), + [sym_identifier] = ACTIONS(839), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(845), + [anon_sym_EQ_GT] = ACTIONS(847), + [anon_sym_while] = ACTIONS(849), + [anon_sym_for] = ACTIONS(851), + [anon_sym_asyncfor] = ACTIONS(853), + [anon_sym_transform] = ACTIONS(855), + [anon_sym_filter] = ACTIONS(857), + [anon_sym_find] = ACTIONS(859), + [anon_sym_remove] = ACTIONS(861), + [anon_sym_reduce] = ACTIONS(863), + [anon_sym_select] = ACTIONS(865), + [anon_sym_insert] = ACTIONS(867), + [anon_sym_async] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(871), + [anon_sym_assert] = ACTIONS(873), + [anon_sym_assert_equal] = ACTIONS(873), + [anon_sym_download] = ACTIONS(873), + [anon_sym_help] = ACTIONS(873), + [anon_sym_length] = ACTIONS(873), + [anon_sym_output] = ACTIONS(873), + [anon_sym_output_error] = ACTIONS(873), + [anon_sym_type] = ACTIONS(873), + [anon_sym_append] = ACTIONS(873), + [anon_sym_metadata] = ACTIONS(873), + [anon_sym_move] = ACTIONS(873), + [anon_sym_read] = ACTIONS(873), + [anon_sym_workdir] = ACTIONS(873), + [anon_sym_write] = ACTIONS(873), + [anon_sym_from_json] = ACTIONS(873), + [anon_sym_to_json] = ACTIONS(873), + [anon_sym_to_string] = ACTIONS(873), + [anon_sym_to_float] = ACTIONS(873), + [anon_sym_bash] = ACTIONS(873), + [anon_sym_fish] = ACTIONS(873), + [anon_sym_raw] = ACTIONS(873), + [anon_sym_sh] = ACTIONS(873), + [anon_sym_zsh] = ACTIONS(873), + [anon_sym_random] = ACTIONS(873), + [anon_sym_random_boolean] = ACTIONS(873), + [anon_sym_random_float] = ACTIONS(873), + [anon_sym_random_integer] = ACTIONS(873), + [anon_sym_columns] = ACTIONS(873), + [anon_sym_rows] = ACTIONS(873), + [anon_sym_reverse] = ACTIONS(873), }, [99] = { - [sym_block] = STATE(687), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), + [sym_block] = STATE(808), + [sym_statement] = STATE(38), + [sym_expression] = STATE(779), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(655), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(724), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1860), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(341), + [aux_sym_block_repeat1] = STATE(38), + [sym_identifier] = ACTIONS(839), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(845), + [anon_sym_EQ_GT] = ACTIONS(847), + [anon_sym_while] = ACTIONS(849), + [anon_sym_for] = ACTIONS(851), + [anon_sym_asyncfor] = ACTIONS(853), [anon_sym_transform] = ACTIONS(855), [anon_sym_filter] = ACTIONS(857), [anon_sym_find] = ACTIONS(859), [anon_sym_remove] = ACTIONS(861), [anon_sym_reduce] = ACTIONS(863), [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_insert] = ACTIONS(867), + [anon_sym_async] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(871), + [anon_sym_assert] = ACTIONS(873), + [anon_sym_assert_equal] = ACTIONS(873), + [anon_sym_download] = ACTIONS(873), + [anon_sym_help] = ACTIONS(873), + [anon_sym_length] = ACTIONS(873), + [anon_sym_output] = ACTIONS(873), + [anon_sym_output_error] = ACTIONS(873), + [anon_sym_type] = ACTIONS(873), + [anon_sym_append] = ACTIONS(873), + [anon_sym_metadata] = ACTIONS(873), + [anon_sym_move] = ACTIONS(873), + [anon_sym_read] = ACTIONS(873), + [anon_sym_workdir] = ACTIONS(873), + [anon_sym_write] = ACTIONS(873), + [anon_sym_from_json] = ACTIONS(873), + [anon_sym_to_json] = ACTIONS(873), + [anon_sym_to_string] = ACTIONS(873), + [anon_sym_to_float] = ACTIONS(873), + [anon_sym_bash] = ACTIONS(873), + [anon_sym_fish] = ACTIONS(873), + [anon_sym_raw] = ACTIONS(873), + [anon_sym_sh] = ACTIONS(873), + [anon_sym_zsh] = ACTIONS(873), + [anon_sym_random] = ACTIONS(873), + [anon_sym_random_boolean] = ACTIONS(873), + [anon_sym_random_float] = ACTIONS(873), + [anon_sym_random_integer] = ACTIONS(873), + [anon_sym_columns] = ACTIONS(873), + [anon_sym_rows] = ACTIONS(873), + [anon_sym_reverse] = ACTIONS(873), }, [100] = { - [sym_statement] = STATE(25), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(25), - [sym_identifier] = ACTIONS(1010), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), + [sym_block] = STATE(846), + [sym_statement] = STATE(46), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(1198), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(318), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), [sym_string] = ACTIONS(13), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [101] = { - [sym_block] = STATE(593), - [sym_statement] = STATE(205), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(767), + [sym_statement] = STATE(33), + [sym_expression] = STATE(732), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(620), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(654), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(33), + [sym_identifier] = ACTIONS(623), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(629), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_asyncfor] = ACTIONS(637), + [anon_sym_transform] = ACTIONS(639), + [anon_sym_filter] = ACTIONS(641), + [anon_sym_find] = ACTIONS(643), + [anon_sym_remove] = ACTIONS(645), + [anon_sym_reduce] = ACTIONS(647), + [anon_sym_select] = ACTIONS(649), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [102] = { - [sym_block] = STATE(686), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), + [sym_block] = STATE(809), + [sym_statement] = STATE(38), + [sym_expression] = STATE(779), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(655), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(724), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1860), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(341), + [aux_sym_block_repeat1] = STATE(38), + [sym_identifier] = ACTIONS(839), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(845), + [anon_sym_EQ_GT] = ACTIONS(847), + [anon_sym_while] = ACTIONS(849), + [anon_sym_for] = ACTIONS(851), + [anon_sym_asyncfor] = ACTIONS(853), [anon_sym_transform] = ACTIONS(855), [anon_sym_filter] = ACTIONS(857), [anon_sym_find] = ACTIONS(859), [anon_sym_remove] = ACTIONS(861), [anon_sym_reduce] = ACTIONS(863), [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_insert] = ACTIONS(867), + [anon_sym_async] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(871), + [anon_sym_assert] = ACTIONS(873), + [anon_sym_assert_equal] = ACTIONS(873), + [anon_sym_download] = ACTIONS(873), + [anon_sym_help] = ACTIONS(873), + [anon_sym_length] = ACTIONS(873), + [anon_sym_output] = ACTIONS(873), + [anon_sym_output_error] = ACTIONS(873), + [anon_sym_type] = ACTIONS(873), + [anon_sym_append] = ACTIONS(873), + [anon_sym_metadata] = ACTIONS(873), + [anon_sym_move] = ACTIONS(873), + [anon_sym_read] = ACTIONS(873), + [anon_sym_workdir] = ACTIONS(873), + [anon_sym_write] = ACTIONS(873), + [anon_sym_from_json] = ACTIONS(873), + [anon_sym_to_json] = ACTIONS(873), + [anon_sym_to_string] = ACTIONS(873), + [anon_sym_to_float] = ACTIONS(873), + [anon_sym_bash] = ACTIONS(873), + [anon_sym_fish] = ACTIONS(873), + [anon_sym_raw] = ACTIONS(873), + [anon_sym_sh] = ACTIONS(873), + [anon_sym_zsh] = ACTIONS(873), + [anon_sym_random] = ACTIONS(873), + [anon_sym_random_boolean] = ACTIONS(873), + [anon_sym_random_float] = ACTIONS(873), + [anon_sym_random_integer] = ACTIONS(873), + [anon_sym_columns] = ACTIONS(873), + [anon_sym_rows] = ACTIONS(873), + [anon_sym_reverse] = ACTIONS(873), }, [103] = { - [sym_block] = STATE(460), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_block] = STATE(810), + [sym_statement] = STATE(38), + [sym_expression] = STATE(779), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(655), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(724), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1860), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(341), + [aux_sym_block_repeat1] = STATE(38), + [sym_identifier] = ACTIONS(839), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(845), + [anon_sym_EQ_GT] = ACTIONS(847), + [anon_sym_while] = ACTIONS(849), + [anon_sym_for] = ACTIONS(851), + [anon_sym_asyncfor] = ACTIONS(853), + [anon_sym_transform] = ACTIONS(855), + [anon_sym_filter] = ACTIONS(857), + [anon_sym_find] = ACTIONS(859), + [anon_sym_remove] = ACTIONS(861), + [anon_sym_reduce] = ACTIONS(863), + [anon_sym_select] = ACTIONS(865), + [anon_sym_insert] = ACTIONS(867), + [anon_sym_async] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(871), + [anon_sym_assert] = ACTIONS(873), + [anon_sym_assert_equal] = ACTIONS(873), + [anon_sym_download] = ACTIONS(873), + [anon_sym_help] = ACTIONS(873), + [anon_sym_length] = ACTIONS(873), + [anon_sym_output] = ACTIONS(873), + [anon_sym_output_error] = ACTIONS(873), + [anon_sym_type] = ACTIONS(873), + [anon_sym_append] = ACTIONS(873), + [anon_sym_metadata] = ACTIONS(873), + [anon_sym_move] = ACTIONS(873), + [anon_sym_read] = ACTIONS(873), + [anon_sym_workdir] = ACTIONS(873), + [anon_sym_write] = ACTIONS(873), + [anon_sym_from_json] = ACTIONS(873), + [anon_sym_to_json] = ACTIONS(873), + [anon_sym_to_string] = ACTIONS(873), + [anon_sym_to_float] = ACTIONS(873), + [anon_sym_bash] = ACTIONS(873), + [anon_sym_fish] = ACTIONS(873), + [anon_sym_raw] = ACTIONS(873), + [anon_sym_sh] = ACTIONS(873), + [anon_sym_zsh] = ACTIONS(873), + [anon_sym_random] = ACTIONS(873), + [anon_sym_random_boolean] = ACTIONS(873), + [anon_sym_random_float] = ACTIONS(873), + [anon_sym_random_integer] = ACTIONS(873), + [anon_sym_columns] = ACTIONS(873), + [anon_sym_rows] = ACTIONS(873), + [anon_sym_reverse] = ACTIONS(873), }, [104] = { - [sym_block] = STATE(405), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_block] = STATE(767), + [sym_statement] = STATE(38), + [sym_expression] = STATE(779), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(655), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(724), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1860), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(341), + [aux_sym_block_repeat1] = STATE(38), + [sym_identifier] = ACTIONS(839), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(845), + [anon_sym_EQ_GT] = ACTIONS(847), + [anon_sym_while] = ACTIONS(849), + [anon_sym_for] = ACTIONS(851), + [anon_sym_asyncfor] = ACTIONS(853), + [anon_sym_transform] = ACTIONS(855), + [anon_sym_filter] = ACTIONS(857), + [anon_sym_find] = ACTIONS(859), + [anon_sym_remove] = ACTIONS(861), + [anon_sym_reduce] = ACTIONS(863), + [anon_sym_select] = ACTIONS(865), + [anon_sym_insert] = ACTIONS(867), + [anon_sym_async] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(871), + [anon_sym_assert] = ACTIONS(873), + [anon_sym_assert_equal] = ACTIONS(873), + [anon_sym_download] = ACTIONS(873), + [anon_sym_help] = ACTIONS(873), + [anon_sym_length] = ACTIONS(873), + [anon_sym_output] = ACTIONS(873), + [anon_sym_output_error] = ACTIONS(873), + [anon_sym_type] = ACTIONS(873), + [anon_sym_append] = ACTIONS(873), + [anon_sym_metadata] = ACTIONS(873), + [anon_sym_move] = ACTIONS(873), + [anon_sym_read] = ACTIONS(873), + [anon_sym_workdir] = ACTIONS(873), + [anon_sym_write] = ACTIONS(873), + [anon_sym_from_json] = ACTIONS(873), + [anon_sym_to_json] = ACTIONS(873), + [anon_sym_to_string] = ACTIONS(873), + [anon_sym_to_float] = ACTIONS(873), + [anon_sym_bash] = ACTIONS(873), + [anon_sym_fish] = ACTIONS(873), + [anon_sym_raw] = ACTIONS(873), + [anon_sym_sh] = ACTIONS(873), + [anon_sym_zsh] = ACTIONS(873), + [anon_sym_random] = ACTIONS(873), + [anon_sym_random_boolean] = ACTIONS(873), + [anon_sym_random_float] = ACTIONS(873), + [anon_sym_random_integer] = ACTIONS(873), + [anon_sym_columns] = ACTIONS(873), + [anon_sym_rows] = ACTIONS(873), + [anon_sym_reverse] = ACTIONS(873), }, [105] = { - [sym_block] = STATE(579), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(812), + [sym_statement] = STATE(38), + [sym_expression] = STATE(779), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(655), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(724), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1860), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(341), + [aux_sym_block_repeat1] = STATE(38), + [sym_identifier] = ACTIONS(839), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(845), + [anon_sym_EQ_GT] = ACTIONS(847), + [anon_sym_while] = ACTIONS(849), + [anon_sym_for] = ACTIONS(851), + [anon_sym_asyncfor] = ACTIONS(853), + [anon_sym_transform] = ACTIONS(855), + [anon_sym_filter] = ACTIONS(857), + [anon_sym_find] = ACTIONS(859), + [anon_sym_remove] = ACTIONS(861), + [anon_sym_reduce] = ACTIONS(863), + [anon_sym_select] = ACTIONS(865), + [anon_sym_insert] = ACTIONS(867), + [anon_sym_async] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(871), + [anon_sym_assert] = ACTIONS(873), + [anon_sym_assert_equal] = ACTIONS(873), + [anon_sym_download] = ACTIONS(873), + [anon_sym_help] = ACTIONS(873), + [anon_sym_length] = ACTIONS(873), + [anon_sym_output] = ACTIONS(873), + [anon_sym_output_error] = ACTIONS(873), + [anon_sym_type] = ACTIONS(873), + [anon_sym_append] = ACTIONS(873), + [anon_sym_metadata] = ACTIONS(873), + [anon_sym_move] = ACTIONS(873), + [anon_sym_read] = ACTIONS(873), + [anon_sym_workdir] = ACTIONS(873), + [anon_sym_write] = ACTIONS(873), + [anon_sym_from_json] = ACTIONS(873), + [anon_sym_to_json] = ACTIONS(873), + [anon_sym_to_string] = ACTIONS(873), + [anon_sym_to_float] = ACTIONS(873), + [anon_sym_bash] = ACTIONS(873), + [anon_sym_fish] = ACTIONS(873), + [anon_sym_raw] = ACTIONS(873), + [anon_sym_sh] = ACTIONS(873), + [anon_sym_zsh] = ACTIONS(873), + [anon_sym_random] = ACTIONS(873), + [anon_sym_random_boolean] = ACTIONS(873), + [anon_sym_random_float] = ACTIONS(873), + [anon_sym_random_integer] = ACTIONS(873), + [anon_sym_columns] = ACTIONS(873), + [anon_sym_rows] = ACTIONS(873), + [anon_sym_reverse] = ACTIONS(873), }, [106] = { - [sym_block] = STATE(396), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(762), + [sym_statement] = STATE(38), + [sym_expression] = STATE(779), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(655), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(724), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1860), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(341), + [aux_sym_block_repeat1] = STATE(38), + [sym_identifier] = ACTIONS(839), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(845), + [anon_sym_EQ_GT] = ACTIONS(847), + [anon_sym_while] = ACTIONS(849), + [anon_sym_for] = ACTIONS(851), + [anon_sym_asyncfor] = ACTIONS(853), + [anon_sym_transform] = ACTIONS(855), + [anon_sym_filter] = ACTIONS(857), + [anon_sym_find] = ACTIONS(859), + [anon_sym_remove] = ACTIONS(861), + [anon_sym_reduce] = ACTIONS(863), + [anon_sym_select] = ACTIONS(865), + [anon_sym_insert] = ACTIONS(867), + [anon_sym_async] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(871), + [anon_sym_assert] = ACTIONS(873), + [anon_sym_assert_equal] = ACTIONS(873), + [anon_sym_download] = ACTIONS(873), + [anon_sym_help] = ACTIONS(873), + [anon_sym_length] = ACTIONS(873), + [anon_sym_output] = ACTIONS(873), + [anon_sym_output_error] = ACTIONS(873), + [anon_sym_type] = ACTIONS(873), + [anon_sym_append] = ACTIONS(873), + [anon_sym_metadata] = ACTIONS(873), + [anon_sym_move] = ACTIONS(873), + [anon_sym_read] = ACTIONS(873), + [anon_sym_workdir] = ACTIONS(873), + [anon_sym_write] = ACTIONS(873), + [anon_sym_from_json] = ACTIONS(873), + [anon_sym_to_json] = ACTIONS(873), + [anon_sym_to_string] = ACTIONS(873), + [anon_sym_to_float] = ACTIONS(873), + [anon_sym_bash] = ACTIONS(873), + [anon_sym_fish] = ACTIONS(873), + [anon_sym_raw] = ACTIONS(873), + [anon_sym_sh] = ACTIONS(873), + [anon_sym_zsh] = ACTIONS(873), + [anon_sym_random] = ACTIONS(873), + [anon_sym_random_boolean] = ACTIONS(873), + [anon_sym_random_float] = ACTIONS(873), + [anon_sym_random_integer] = ACTIONS(873), + [anon_sym_columns] = ACTIONS(873), + [anon_sym_rows] = ACTIONS(873), + [anon_sym_reverse] = ACTIONS(873), }, [107] = { - [sym_block] = STATE(393), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_statement] = STATE(50), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(50), + [sym_identifier] = ACTIONS(2015), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [108] = { - [sym_block] = STATE(386), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_block] = STATE(1062), + [sym_statement] = STATE(382), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(382), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [109] = { - [sym_block] = STATE(387), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_block] = STATE(813), + [sym_statement] = STATE(38), + [sym_expression] = STATE(779), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(655), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(724), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1860), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(341), + [aux_sym_block_repeat1] = STATE(38), + [sym_identifier] = ACTIONS(839), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(845), + [anon_sym_EQ_GT] = ACTIONS(847), + [anon_sym_while] = ACTIONS(849), + [anon_sym_for] = ACTIONS(851), + [anon_sym_asyncfor] = ACTIONS(853), + [anon_sym_transform] = ACTIONS(855), + [anon_sym_filter] = ACTIONS(857), + [anon_sym_find] = ACTIONS(859), + [anon_sym_remove] = ACTIONS(861), + [anon_sym_reduce] = ACTIONS(863), + [anon_sym_select] = ACTIONS(865), + [anon_sym_insert] = ACTIONS(867), + [anon_sym_async] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(871), + [anon_sym_assert] = ACTIONS(873), + [anon_sym_assert_equal] = ACTIONS(873), + [anon_sym_download] = ACTIONS(873), + [anon_sym_help] = ACTIONS(873), + [anon_sym_length] = ACTIONS(873), + [anon_sym_output] = ACTIONS(873), + [anon_sym_output_error] = ACTIONS(873), + [anon_sym_type] = ACTIONS(873), + [anon_sym_append] = ACTIONS(873), + [anon_sym_metadata] = ACTIONS(873), + [anon_sym_move] = ACTIONS(873), + [anon_sym_read] = ACTIONS(873), + [anon_sym_workdir] = ACTIONS(873), + [anon_sym_write] = ACTIONS(873), + [anon_sym_from_json] = ACTIONS(873), + [anon_sym_to_json] = ACTIONS(873), + [anon_sym_to_string] = ACTIONS(873), + [anon_sym_to_float] = ACTIONS(873), + [anon_sym_bash] = ACTIONS(873), + [anon_sym_fish] = ACTIONS(873), + [anon_sym_raw] = ACTIONS(873), + [anon_sym_sh] = ACTIONS(873), + [anon_sym_zsh] = ACTIONS(873), + [anon_sym_random] = ACTIONS(873), + [anon_sym_random_boolean] = ACTIONS(873), + [anon_sym_random_float] = ACTIONS(873), + [anon_sym_random_integer] = ACTIONS(873), + [anon_sym_columns] = ACTIONS(873), + [anon_sym_rows] = ACTIONS(873), + [anon_sym_reverse] = ACTIONS(873), }, [110] = { - [sym_block] = STATE(388), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_block] = STATE(598), + [sym_statement] = STATE(27), + [sym_expression] = STATE(663), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(637), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1998), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(296), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(313), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_asyncfor] = ACTIONS(321), + [anon_sym_transform] = ACTIONS(323), + [anon_sym_filter] = ACTIONS(325), + [anon_sym_find] = ACTIONS(327), + [anon_sym_remove] = ACTIONS(329), + [anon_sym_reduce] = ACTIONS(331), + [anon_sym_select] = ACTIONS(333), + [anon_sym_insert] = ACTIONS(335), + [anon_sym_async] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(341), + [anon_sym_assert_equal] = ACTIONS(341), + [anon_sym_download] = ACTIONS(341), + [anon_sym_help] = ACTIONS(341), + [anon_sym_length] = ACTIONS(341), + [anon_sym_output] = ACTIONS(341), + [anon_sym_output_error] = ACTIONS(341), + [anon_sym_type] = ACTIONS(341), + [anon_sym_append] = ACTIONS(341), + [anon_sym_metadata] = ACTIONS(341), + [anon_sym_move] = ACTIONS(341), + [anon_sym_read] = ACTIONS(341), + [anon_sym_workdir] = ACTIONS(341), + [anon_sym_write] = ACTIONS(341), + [anon_sym_from_json] = ACTIONS(341), + [anon_sym_to_json] = ACTIONS(341), + [anon_sym_to_string] = ACTIONS(341), + [anon_sym_to_float] = ACTIONS(341), + [anon_sym_bash] = ACTIONS(341), + [anon_sym_fish] = ACTIONS(341), + [anon_sym_raw] = ACTIONS(341), + [anon_sym_sh] = ACTIONS(341), + [anon_sym_zsh] = ACTIONS(341), + [anon_sym_random] = ACTIONS(341), + [anon_sym_random_boolean] = ACTIONS(341), + [anon_sym_random_float] = ACTIONS(341), + [anon_sym_random_integer] = ACTIONS(341), + [anon_sym_columns] = ACTIONS(341), + [anon_sym_rows] = ACTIONS(341), + [anon_sym_reverse] = ACTIONS(341), }, [111] = { - [sym_block] = STATE(593), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(1054), + [sym_statement] = STATE(382), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(382), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [112] = { - [sym_block] = STATE(389), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_block] = STATE(638), + [sym_statement] = STATE(21), + [sym_expression] = STATE(593), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(584), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1776), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(286), + [aux_sym_block_repeat1] = STATE(21), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(201), + [anon_sym_while] = ACTIONS(203), + [anon_sym_for] = ACTIONS(205), + [anon_sym_asyncfor] = ACTIONS(207), + [anon_sym_transform] = ACTIONS(209), + [anon_sym_filter] = ACTIONS(211), + [anon_sym_find] = ACTIONS(213), + [anon_sym_remove] = ACTIONS(215), + [anon_sym_reduce] = ACTIONS(217), + [anon_sym_select] = ACTIONS(219), + [anon_sym_insert] = ACTIONS(221), + [anon_sym_async] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_assert_equal] = ACTIONS(227), + [anon_sym_download] = ACTIONS(227), + [anon_sym_help] = ACTIONS(227), + [anon_sym_length] = ACTIONS(227), + [anon_sym_output] = ACTIONS(227), + [anon_sym_output_error] = ACTIONS(227), + [anon_sym_type] = ACTIONS(227), + [anon_sym_append] = ACTIONS(227), + [anon_sym_metadata] = ACTIONS(227), + [anon_sym_move] = ACTIONS(227), + [anon_sym_read] = ACTIONS(227), + [anon_sym_workdir] = ACTIONS(227), + [anon_sym_write] = ACTIONS(227), + [anon_sym_from_json] = ACTIONS(227), + [anon_sym_to_json] = ACTIONS(227), + [anon_sym_to_string] = ACTIONS(227), + [anon_sym_to_float] = ACTIONS(227), + [anon_sym_bash] = ACTIONS(227), + [anon_sym_fish] = ACTIONS(227), + [anon_sym_raw] = ACTIONS(227), + [anon_sym_sh] = ACTIONS(227), + [anon_sym_zsh] = ACTIONS(227), + [anon_sym_random] = ACTIONS(227), + [anon_sym_random_boolean] = ACTIONS(227), + [anon_sym_random_float] = ACTIONS(227), + [anon_sym_random_integer] = ACTIONS(227), + [anon_sym_columns] = ACTIONS(227), + [anon_sym_rows] = ACTIONS(227), + [anon_sym_reverse] = ACTIONS(227), }, [113] = { - [sym_block] = STATE(579), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_block] = STATE(636), + [sym_statement] = STATE(21), + [sym_expression] = STATE(593), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(584), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1776), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(286), + [aux_sym_block_repeat1] = STATE(21), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(201), + [anon_sym_while] = ACTIONS(203), + [anon_sym_for] = ACTIONS(205), + [anon_sym_asyncfor] = ACTIONS(207), + [anon_sym_transform] = ACTIONS(209), + [anon_sym_filter] = ACTIONS(211), + [anon_sym_find] = ACTIONS(213), + [anon_sym_remove] = ACTIONS(215), + [anon_sym_reduce] = ACTIONS(217), + [anon_sym_select] = ACTIONS(219), + [anon_sym_insert] = ACTIONS(221), + [anon_sym_async] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_assert_equal] = ACTIONS(227), + [anon_sym_download] = ACTIONS(227), + [anon_sym_help] = ACTIONS(227), + [anon_sym_length] = ACTIONS(227), + [anon_sym_output] = ACTIONS(227), + [anon_sym_output_error] = ACTIONS(227), + [anon_sym_type] = ACTIONS(227), + [anon_sym_append] = ACTIONS(227), + [anon_sym_metadata] = ACTIONS(227), + [anon_sym_move] = ACTIONS(227), + [anon_sym_read] = ACTIONS(227), + [anon_sym_workdir] = ACTIONS(227), + [anon_sym_write] = ACTIONS(227), + [anon_sym_from_json] = ACTIONS(227), + [anon_sym_to_json] = ACTIONS(227), + [anon_sym_to_string] = ACTIONS(227), + [anon_sym_to_float] = ACTIONS(227), + [anon_sym_bash] = ACTIONS(227), + [anon_sym_fish] = ACTIONS(227), + [anon_sym_raw] = ACTIONS(227), + [anon_sym_sh] = ACTIONS(227), + [anon_sym_zsh] = ACTIONS(227), + [anon_sym_random] = ACTIONS(227), + [anon_sym_random_boolean] = ACTIONS(227), + [anon_sym_random_float] = ACTIONS(227), + [anon_sym_random_integer] = ACTIONS(227), + [anon_sym_columns] = ACTIONS(227), + [anon_sym_rows] = ACTIONS(227), + [anon_sym_reverse] = ACTIONS(227), }, [114] = { - [sym_block] = STATE(591), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), + [sym_block] = STATE(1031), + [sym_statement] = STATE(352), + [sym_expression] = STATE(877), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(782), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(978), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1639), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_asyncfor] = ACTIONS(1647), + [anon_sym_transform] = ACTIONS(1649), + [anon_sym_filter] = ACTIONS(1651), + [anon_sym_find] = ACTIONS(1653), + [anon_sym_remove] = ACTIONS(1655), + [anon_sym_reduce] = ACTIONS(1657), + [anon_sym_select] = ACTIONS(1659), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [115] = { - [sym_block] = STATE(390), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_block] = STATE(624), + [sym_statement] = STATE(21), + [sym_expression] = STATE(593), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(584), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1776), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(286), + [aux_sym_block_repeat1] = STATE(21), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(201), + [anon_sym_while] = ACTIONS(203), + [anon_sym_for] = ACTIONS(205), + [anon_sym_asyncfor] = ACTIONS(207), + [anon_sym_transform] = ACTIONS(209), + [anon_sym_filter] = ACTIONS(211), + [anon_sym_find] = ACTIONS(213), + [anon_sym_remove] = ACTIONS(215), + [anon_sym_reduce] = ACTIONS(217), + [anon_sym_select] = ACTIONS(219), + [anon_sym_insert] = ACTIONS(221), + [anon_sym_async] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_assert_equal] = ACTIONS(227), + [anon_sym_download] = ACTIONS(227), + [anon_sym_help] = ACTIONS(227), + [anon_sym_length] = ACTIONS(227), + [anon_sym_output] = ACTIONS(227), + [anon_sym_output_error] = ACTIONS(227), + [anon_sym_type] = ACTIONS(227), + [anon_sym_append] = ACTIONS(227), + [anon_sym_metadata] = ACTIONS(227), + [anon_sym_move] = ACTIONS(227), + [anon_sym_read] = ACTIONS(227), + [anon_sym_workdir] = ACTIONS(227), + [anon_sym_write] = ACTIONS(227), + [anon_sym_from_json] = ACTIONS(227), + [anon_sym_to_json] = ACTIONS(227), + [anon_sym_to_string] = ACTIONS(227), + [anon_sym_to_float] = ACTIONS(227), + [anon_sym_bash] = ACTIONS(227), + [anon_sym_fish] = ACTIONS(227), + [anon_sym_raw] = ACTIONS(227), + [anon_sym_sh] = ACTIONS(227), + [anon_sym_zsh] = ACTIONS(227), + [anon_sym_random] = ACTIONS(227), + [anon_sym_random_boolean] = ACTIONS(227), + [anon_sym_random_float] = ACTIONS(227), + [anon_sym_random_integer] = ACTIONS(227), + [anon_sym_columns] = ACTIONS(227), + [anon_sym_rows] = ACTIONS(227), + [anon_sym_reverse] = ACTIONS(227), }, [116] = { - [sym_block] = STATE(393), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_block] = STATE(619), + [sym_statement] = STATE(21), + [sym_expression] = STATE(593), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(584), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1776), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(286), + [aux_sym_block_repeat1] = STATE(21), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(201), + [anon_sym_while] = ACTIONS(203), + [anon_sym_for] = ACTIONS(205), + [anon_sym_asyncfor] = ACTIONS(207), + [anon_sym_transform] = ACTIONS(209), + [anon_sym_filter] = ACTIONS(211), + [anon_sym_find] = ACTIONS(213), + [anon_sym_remove] = ACTIONS(215), + [anon_sym_reduce] = ACTIONS(217), + [anon_sym_select] = ACTIONS(219), + [anon_sym_insert] = ACTIONS(221), + [anon_sym_async] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_assert_equal] = ACTIONS(227), + [anon_sym_download] = ACTIONS(227), + [anon_sym_help] = ACTIONS(227), + [anon_sym_length] = ACTIONS(227), + [anon_sym_output] = ACTIONS(227), + [anon_sym_output_error] = ACTIONS(227), + [anon_sym_type] = ACTIONS(227), + [anon_sym_append] = ACTIONS(227), + [anon_sym_metadata] = ACTIONS(227), + [anon_sym_move] = ACTIONS(227), + [anon_sym_read] = ACTIONS(227), + [anon_sym_workdir] = ACTIONS(227), + [anon_sym_write] = ACTIONS(227), + [anon_sym_from_json] = ACTIONS(227), + [anon_sym_to_json] = ACTIONS(227), + [anon_sym_to_string] = ACTIONS(227), + [anon_sym_to_float] = ACTIONS(227), + [anon_sym_bash] = ACTIONS(227), + [anon_sym_fish] = ACTIONS(227), + [anon_sym_raw] = ACTIONS(227), + [anon_sym_sh] = ACTIONS(227), + [anon_sym_zsh] = ACTIONS(227), + [anon_sym_random] = ACTIONS(227), + [anon_sym_random_boolean] = ACTIONS(227), + [anon_sym_random_float] = ACTIONS(227), + [anon_sym_random_integer] = ACTIONS(227), + [anon_sym_columns] = ACTIONS(227), + [anon_sym_rows] = ACTIONS(227), + [anon_sym_reverse] = ACTIONS(227), }, [117] = { - [sym_block] = STATE(403), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(589), + [sym_statement] = STATE(21), + [sym_expression] = STATE(593), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(584), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1776), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(286), + [aux_sym_block_repeat1] = STATE(21), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(201), + [anon_sym_while] = ACTIONS(203), + [anon_sym_for] = ACTIONS(205), + [anon_sym_asyncfor] = ACTIONS(207), + [anon_sym_transform] = ACTIONS(209), + [anon_sym_filter] = ACTIONS(211), + [anon_sym_find] = ACTIONS(213), + [anon_sym_remove] = ACTIONS(215), + [anon_sym_reduce] = ACTIONS(217), + [anon_sym_select] = ACTIONS(219), + [anon_sym_insert] = ACTIONS(221), + [anon_sym_async] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_assert_equal] = ACTIONS(227), + [anon_sym_download] = ACTIONS(227), + [anon_sym_help] = ACTIONS(227), + [anon_sym_length] = ACTIONS(227), + [anon_sym_output] = ACTIONS(227), + [anon_sym_output_error] = ACTIONS(227), + [anon_sym_type] = ACTIONS(227), + [anon_sym_append] = ACTIONS(227), + [anon_sym_metadata] = ACTIONS(227), + [anon_sym_move] = ACTIONS(227), + [anon_sym_read] = ACTIONS(227), + [anon_sym_workdir] = ACTIONS(227), + [anon_sym_write] = ACTIONS(227), + [anon_sym_from_json] = ACTIONS(227), + [anon_sym_to_json] = ACTIONS(227), + [anon_sym_to_string] = ACTIONS(227), + [anon_sym_to_float] = ACTIONS(227), + [anon_sym_bash] = ACTIONS(227), + [anon_sym_fish] = ACTIONS(227), + [anon_sym_raw] = ACTIONS(227), + [anon_sym_sh] = ACTIONS(227), + [anon_sym_zsh] = ACTIONS(227), + [anon_sym_random] = ACTIONS(227), + [anon_sym_random_boolean] = ACTIONS(227), + [anon_sym_random_float] = ACTIONS(227), + [anon_sym_random_integer] = ACTIONS(227), + [anon_sym_columns] = ACTIONS(227), + [anon_sym_rows] = ACTIONS(227), + [anon_sym_reverse] = ACTIONS(227), }, [118] = { - [sym_block] = STATE(472), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_block] = STATE(610), + [sym_statement] = STATE(21), + [sym_expression] = STATE(593), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(584), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1776), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(286), + [aux_sym_block_repeat1] = STATE(21), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(201), + [anon_sym_while] = ACTIONS(203), + [anon_sym_for] = ACTIONS(205), + [anon_sym_asyncfor] = ACTIONS(207), + [anon_sym_transform] = ACTIONS(209), + [anon_sym_filter] = ACTIONS(211), + [anon_sym_find] = ACTIONS(213), + [anon_sym_remove] = ACTIONS(215), + [anon_sym_reduce] = ACTIONS(217), + [anon_sym_select] = ACTIONS(219), + [anon_sym_insert] = ACTIONS(221), + [anon_sym_async] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_assert_equal] = ACTIONS(227), + [anon_sym_download] = ACTIONS(227), + [anon_sym_help] = ACTIONS(227), + [anon_sym_length] = ACTIONS(227), + [anon_sym_output] = ACTIONS(227), + [anon_sym_output_error] = ACTIONS(227), + [anon_sym_type] = ACTIONS(227), + [anon_sym_append] = ACTIONS(227), + [anon_sym_metadata] = ACTIONS(227), + [anon_sym_move] = ACTIONS(227), + [anon_sym_read] = ACTIONS(227), + [anon_sym_workdir] = ACTIONS(227), + [anon_sym_write] = ACTIONS(227), + [anon_sym_from_json] = ACTIONS(227), + [anon_sym_to_json] = ACTIONS(227), + [anon_sym_to_string] = ACTIONS(227), + [anon_sym_to_float] = ACTIONS(227), + [anon_sym_bash] = ACTIONS(227), + [anon_sym_fish] = ACTIONS(227), + [anon_sym_raw] = ACTIONS(227), + [anon_sym_sh] = ACTIONS(227), + [anon_sym_zsh] = ACTIONS(227), + [anon_sym_random] = ACTIONS(227), + [anon_sym_random_boolean] = ACTIONS(227), + [anon_sym_random_float] = ACTIONS(227), + [anon_sym_random_integer] = ACTIONS(227), + [anon_sym_columns] = ACTIONS(227), + [anon_sym_rows] = ACTIONS(227), + [anon_sym_reverse] = ACTIONS(227), }, [119] = { - [sym_block] = STATE(396), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_block] = STATE(608), + [sym_statement] = STATE(21), + [sym_expression] = STATE(593), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(584), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1776), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(286), + [aux_sym_block_repeat1] = STATE(21), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(201), + [anon_sym_while] = ACTIONS(203), + [anon_sym_for] = ACTIONS(205), + [anon_sym_asyncfor] = ACTIONS(207), + [anon_sym_transform] = ACTIONS(209), + [anon_sym_filter] = ACTIONS(211), + [anon_sym_find] = ACTIONS(213), + [anon_sym_remove] = ACTIONS(215), + [anon_sym_reduce] = ACTIONS(217), + [anon_sym_select] = ACTIONS(219), + [anon_sym_insert] = ACTIONS(221), + [anon_sym_async] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_assert_equal] = ACTIONS(227), + [anon_sym_download] = ACTIONS(227), + [anon_sym_help] = ACTIONS(227), + [anon_sym_length] = ACTIONS(227), + [anon_sym_output] = ACTIONS(227), + [anon_sym_output_error] = ACTIONS(227), + [anon_sym_type] = ACTIONS(227), + [anon_sym_append] = ACTIONS(227), + [anon_sym_metadata] = ACTIONS(227), + [anon_sym_move] = ACTIONS(227), + [anon_sym_read] = ACTIONS(227), + [anon_sym_workdir] = ACTIONS(227), + [anon_sym_write] = ACTIONS(227), + [anon_sym_from_json] = ACTIONS(227), + [anon_sym_to_json] = ACTIONS(227), + [anon_sym_to_string] = ACTIONS(227), + [anon_sym_to_float] = ACTIONS(227), + [anon_sym_bash] = ACTIONS(227), + [anon_sym_fish] = ACTIONS(227), + [anon_sym_raw] = ACTIONS(227), + [anon_sym_sh] = ACTIONS(227), + [anon_sym_zsh] = ACTIONS(227), + [anon_sym_random] = ACTIONS(227), + [anon_sym_random_boolean] = ACTIONS(227), + [anon_sym_random_float] = ACTIONS(227), + [anon_sym_random_integer] = ACTIONS(227), + [anon_sym_columns] = ACTIONS(227), + [anon_sym_rows] = ACTIONS(227), + [anon_sym_reverse] = ACTIONS(227), }, [120] = { - [sym_block] = STATE(406), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(608), + [sym_statement] = STATE(27), + [sym_expression] = STATE(663), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(637), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1998), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(296), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(313), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_asyncfor] = ACTIONS(321), + [anon_sym_transform] = ACTIONS(323), + [anon_sym_filter] = ACTIONS(325), + [anon_sym_find] = ACTIONS(327), + [anon_sym_remove] = ACTIONS(329), + [anon_sym_reduce] = ACTIONS(331), + [anon_sym_select] = ACTIONS(333), + [anon_sym_insert] = ACTIONS(335), + [anon_sym_async] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(341), + [anon_sym_assert_equal] = ACTIONS(341), + [anon_sym_download] = ACTIONS(341), + [anon_sym_help] = ACTIONS(341), + [anon_sym_length] = ACTIONS(341), + [anon_sym_output] = ACTIONS(341), + [anon_sym_output_error] = ACTIONS(341), + [anon_sym_type] = ACTIONS(341), + [anon_sym_append] = ACTIONS(341), + [anon_sym_metadata] = ACTIONS(341), + [anon_sym_move] = ACTIONS(341), + [anon_sym_read] = ACTIONS(341), + [anon_sym_workdir] = ACTIONS(341), + [anon_sym_write] = ACTIONS(341), + [anon_sym_from_json] = ACTIONS(341), + [anon_sym_to_json] = ACTIONS(341), + [anon_sym_to_string] = ACTIONS(341), + [anon_sym_to_float] = ACTIONS(341), + [anon_sym_bash] = ACTIONS(341), + [anon_sym_fish] = ACTIONS(341), + [anon_sym_raw] = ACTIONS(341), + [anon_sym_sh] = ACTIONS(341), + [anon_sym_zsh] = ACTIONS(341), + [anon_sym_random] = ACTIONS(341), + [anon_sym_random_boolean] = ACTIONS(341), + [anon_sym_random_float] = ACTIONS(341), + [anon_sym_random_integer] = ACTIONS(341), + [anon_sym_columns] = ACTIONS(341), + [anon_sym_rows] = ACTIONS(341), + [anon_sym_reverse] = ACTIONS(341), }, [121] = { - [sym_block] = STATE(577), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(610), + [sym_statement] = STATE(27), + [sym_expression] = STATE(663), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(637), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1998), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(296), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(313), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_asyncfor] = ACTIONS(321), + [anon_sym_transform] = ACTIONS(323), + [anon_sym_filter] = ACTIONS(325), + [anon_sym_find] = ACTIONS(327), + [anon_sym_remove] = ACTIONS(329), + [anon_sym_reduce] = ACTIONS(331), + [anon_sym_select] = ACTIONS(333), + [anon_sym_insert] = ACTIONS(335), + [anon_sym_async] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(341), + [anon_sym_assert_equal] = ACTIONS(341), + [anon_sym_download] = ACTIONS(341), + [anon_sym_help] = ACTIONS(341), + [anon_sym_length] = ACTIONS(341), + [anon_sym_output] = ACTIONS(341), + [anon_sym_output_error] = ACTIONS(341), + [anon_sym_type] = ACTIONS(341), + [anon_sym_append] = ACTIONS(341), + [anon_sym_metadata] = ACTIONS(341), + [anon_sym_move] = ACTIONS(341), + [anon_sym_read] = ACTIONS(341), + [anon_sym_workdir] = ACTIONS(341), + [anon_sym_write] = ACTIONS(341), + [anon_sym_from_json] = ACTIONS(341), + [anon_sym_to_json] = ACTIONS(341), + [anon_sym_to_string] = ACTIONS(341), + [anon_sym_to_float] = ACTIONS(341), + [anon_sym_bash] = ACTIONS(341), + [anon_sym_fish] = ACTIONS(341), + [anon_sym_raw] = ACTIONS(341), + [anon_sym_sh] = ACTIONS(341), + [anon_sym_zsh] = ACTIONS(341), + [anon_sym_random] = ACTIONS(341), + [anon_sym_random_boolean] = ACTIONS(341), + [anon_sym_random_float] = ACTIONS(341), + [anon_sym_random_integer] = ACTIONS(341), + [anon_sym_columns] = ACTIONS(341), + [anon_sym_rows] = ACTIONS(341), + [anon_sym_reverse] = ACTIONS(341), }, [122] = { - [sym_block] = STATE(696), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_block] = STATE(733), + [sym_statement] = STATE(35), + [sym_expression] = STATE(701), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(582), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1866), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(320), + [aux_sym_block_repeat1] = STATE(35), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(497), + [anon_sym_EQ_GT] = ACTIONS(499), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_asyncfor] = ACTIONS(505), + [anon_sym_transform] = ACTIONS(507), + [anon_sym_filter] = ACTIONS(509), + [anon_sym_find] = ACTIONS(511), + [anon_sym_remove] = ACTIONS(513), + [anon_sym_reduce] = ACTIONS(515), + [anon_sym_select] = ACTIONS(517), + [anon_sym_insert] = ACTIONS(519), + [anon_sym_async] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(525), + [anon_sym_assert_equal] = ACTIONS(525), + [anon_sym_download] = ACTIONS(525), + [anon_sym_help] = ACTIONS(525), + [anon_sym_length] = ACTIONS(525), + [anon_sym_output] = ACTIONS(525), + [anon_sym_output_error] = ACTIONS(525), + [anon_sym_type] = ACTIONS(525), + [anon_sym_append] = ACTIONS(525), + [anon_sym_metadata] = ACTIONS(525), + [anon_sym_move] = ACTIONS(525), + [anon_sym_read] = ACTIONS(525), + [anon_sym_workdir] = ACTIONS(525), + [anon_sym_write] = ACTIONS(525), + [anon_sym_from_json] = ACTIONS(525), + [anon_sym_to_json] = ACTIONS(525), + [anon_sym_to_string] = ACTIONS(525), + [anon_sym_to_float] = ACTIONS(525), + [anon_sym_bash] = ACTIONS(525), + [anon_sym_fish] = ACTIONS(525), + [anon_sym_raw] = ACTIONS(525), + [anon_sym_sh] = ACTIONS(525), + [anon_sym_zsh] = ACTIONS(525), + [anon_sym_random] = ACTIONS(525), + [anon_sym_random_boolean] = ACTIONS(525), + [anon_sym_random_float] = ACTIONS(525), + [anon_sym_random_integer] = ACTIONS(525), + [anon_sym_columns] = ACTIONS(525), + [anon_sym_rows] = ACTIONS(525), + [anon_sym_reverse] = ACTIONS(525), }, [123] = { - [sym_block] = STATE(695), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), + [sym_block] = STATE(1060), + [sym_statement] = STATE(381), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(381), [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), + [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), @@ -17872,105 +20086,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_if] = ACTIONS(19), [anon_sym_match] = ACTIONS(21), [anon_sym_EQ_GT] = ACTIONS(23), [anon_sym_while] = ACTIONS(25), [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [124] = { - [sym_block] = STATE(457), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [sym_block] = STATE(1056), + [sym_statement] = STATE(381), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -17978,104 +20193,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [125] = { - [sym_block] = STATE(694), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), + [sym_block] = STATE(1054), + [sym_statement] = STATE(381), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(381), [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), + [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), @@ -18084,211 +20300,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_if] = ACTIONS(19), [anon_sym_match] = ACTIONS(21), [anon_sym_EQ_GT] = ACTIONS(23), [anon_sym_while] = ACTIONS(25), [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [126] = { - [sym_block] = STATE(692), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_block] = STATE(589), + [sym_statement] = STATE(27), + [sym_expression] = STATE(663), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(637), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1998), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(296), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(313), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_asyncfor] = ACTIONS(321), + [anon_sym_transform] = ACTIONS(323), + [anon_sym_filter] = ACTIONS(325), + [anon_sym_find] = ACTIONS(327), + [anon_sym_remove] = ACTIONS(329), + [anon_sym_reduce] = ACTIONS(331), + [anon_sym_select] = ACTIONS(333), + [anon_sym_insert] = ACTIONS(335), + [anon_sym_async] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(341), + [anon_sym_assert_equal] = ACTIONS(341), + [anon_sym_download] = ACTIONS(341), + [anon_sym_help] = ACTIONS(341), + [anon_sym_length] = ACTIONS(341), + [anon_sym_output] = ACTIONS(341), + [anon_sym_output_error] = ACTIONS(341), + [anon_sym_type] = ACTIONS(341), + [anon_sym_append] = ACTIONS(341), + [anon_sym_metadata] = ACTIONS(341), + [anon_sym_move] = ACTIONS(341), + [anon_sym_read] = ACTIONS(341), + [anon_sym_workdir] = ACTIONS(341), + [anon_sym_write] = ACTIONS(341), + [anon_sym_from_json] = ACTIONS(341), + [anon_sym_to_json] = ACTIONS(341), + [anon_sym_to_string] = ACTIONS(341), + [anon_sym_to_float] = ACTIONS(341), + [anon_sym_bash] = ACTIONS(341), + [anon_sym_fish] = ACTIONS(341), + [anon_sym_raw] = ACTIONS(341), + [anon_sym_sh] = ACTIONS(341), + [anon_sym_zsh] = ACTIONS(341), + [anon_sym_random] = ACTIONS(341), + [anon_sym_random_boolean] = ACTIONS(341), + [anon_sym_random_float] = ACTIONS(341), + [anon_sym_random_integer] = ACTIONS(341), + [anon_sym_columns] = ACTIONS(341), + [anon_sym_rows] = ACTIONS(341), + [anon_sym_reverse] = ACTIONS(341), }, [127] = { - [sym_block] = STATE(458), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [sym_block] = STATE(1053), + [sym_statement] = STATE(381), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -18296,105 +20514,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [128] = { - [sym_block] = STATE(467), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [sym_block] = STATE(1062), + [sym_statement] = STATE(381), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -18402,741 +20621,748 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [129] = { - [sym_block] = STATE(459), + [sym_block] = STATE(619), [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), + [sym_expression] = STATE(663), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(637), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1998), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(296), [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(313), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_asyncfor] = ACTIONS(321), + [anon_sym_transform] = ACTIONS(323), + [anon_sym_filter] = ACTIONS(325), + [anon_sym_find] = ACTIONS(327), + [anon_sym_remove] = ACTIONS(329), + [anon_sym_reduce] = ACTIONS(331), + [anon_sym_select] = ACTIONS(333), + [anon_sym_insert] = ACTIONS(335), + [anon_sym_async] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(341), + [anon_sym_assert_equal] = ACTIONS(341), + [anon_sym_download] = ACTIONS(341), + [anon_sym_help] = ACTIONS(341), + [anon_sym_length] = ACTIONS(341), + [anon_sym_output] = ACTIONS(341), + [anon_sym_output_error] = ACTIONS(341), + [anon_sym_type] = ACTIONS(341), + [anon_sym_append] = ACTIONS(341), + [anon_sym_metadata] = ACTIONS(341), + [anon_sym_move] = ACTIONS(341), + [anon_sym_read] = ACTIONS(341), + [anon_sym_workdir] = ACTIONS(341), + [anon_sym_write] = ACTIONS(341), + [anon_sym_from_json] = ACTIONS(341), + [anon_sym_to_json] = ACTIONS(341), + [anon_sym_to_string] = ACTIONS(341), + [anon_sym_to_float] = ACTIONS(341), + [anon_sym_bash] = ACTIONS(341), + [anon_sym_fish] = ACTIONS(341), + [anon_sym_raw] = ACTIONS(341), + [anon_sym_sh] = ACTIONS(341), + [anon_sym_zsh] = ACTIONS(341), + [anon_sym_random] = ACTIONS(341), + [anon_sym_random_boolean] = ACTIONS(341), + [anon_sym_random_float] = ACTIONS(341), + [anon_sym_random_integer] = ACTIONS(341), + [anon_sym_columns] = ACTIONS(341), + [anon_sym_rows] = ACTIONS(341), + [anon_sym_reverse] = ACTIONS(341), }, [130] = { - [sym_block] = STATE(460), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_block] = STATE(731), + [sym_statement] = STATE(35), + [sym_expression] = STATE(701), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(582), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1866), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(320), + [aux_sym_block_repeat1] = STATE(35), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(497), + [anon_sym_EQ_GT] = ACTIONS(499), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_asyncfor] = ACTIONS(505), + [anon_sym_transform] = ACTIONS(507), + [anon_sym_filter] = ACTIONS(509), + [anon_sym_find] = ACTIONS(511), + [anon_sym_remove] = ACTIONS(513), + [anon_sym_reduce] = ACTIONS(515), + [anon_sym_select] = ACTIONS(517), + [anon_sym_insert] = ACTIONS(519), + [anon_sym_async] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(525), + [anon_sym_assert_equal] = ACTIONS(525), + [anon_sym_download] = ACTIONS(525), + [anon_sym_help] = ACTIONS(525), + [anon_sym_length] = ACTIONS(525), + [anon_sym_output] = ACTIONS(525), + [anon_sym_output_error] = ACTIONS(525), + [anon_sym_type] = ACTIONS(525), + [anon_sym_append] = ACTIONS(525), + [anon_sym_metadata] = ACTIONS(525), + [anon_sym_move] = ACTIONS(525), + [anon_sym_read] = ACTIONS(525), + [anon_sym_workdir] = ACTIONS(525), + [anon_sym_write] = ACTIONS(525), + [anon_sym_from_json] = ACTIONS(525), + [anon_sym_to_json] = ACTIONS(525), + [anon_sym_to_string] = ACTIONS(525), + [anon_sym_to_float] = ACTIONS(525), + [anon_sym_bash] = ACTIONS(525), + [anon_sym_fish] = ACTIONS(525), + [anon_sym_raw] = ACTIONS(525), + [anon_sym_sh] = ACTIONS(525), + [anon_sym_zsh] = ACTIONS(525), + [anon_sym_random] = ACTIONS(525), + [anon_sym_random_boolean] = ACTIONS(525), + [anon_sym_random_float] = ACTIONS(525), + [anon_sym_random_integer] = ACTIONS(525), + [anon_sym_columns] = ACTIONS(525), + [anon_sym_rows] = ACTIONS(525), + [anon_sym_reverse] = ACTIONS(525), }, [131] = { - [sym_block] = STATE(461), + [sym_block] = STATE(636), [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), + [sym_expression] = STATE(663), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(637), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1998), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(296), [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(313), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_asyncfor] = ACTIONS(321), + [anon_sym_transform] = ACTIONS(323), + [anon_sym_filter] = ACTIONS(325), + [anon_sym_find] = ACTIONS(327), + [anon_sym_remove] = ACTIONS(329), + [anon_sym_reduce] = ACTIONS(331), + [anon_sym_select] = ACTIONS(333), + [anon_sym_insert] = ACTIONS(335), + [anon_sym_async] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(341), + [anon_sym_assert_equal] = ACTIONS(341), + [anon_sym_download] = ACTIONS(341), + [anon_sym_help] = ACTIONS(341), + [anon_sym_length] = ACTIONS(341), + [anon_sym_output] = ACTIONS(341), + [anon_sym_output_error] = ACTIONS(341), + [anon_sym_type] = ACTIONS(341), + [anon_sym_append] = ACTIONS(341), + [anon_sym_metadata] = ACTIONS(341), + [anon_sym_move] = ACTIONS(341), + [anon_sym_read] = ACTIONS(341), + [anon_sym_workdir] = ACTIONS(341), + [anon_sym_write] = ACTIONS(341), + [anon_sym_from_json] = ACTIONS(341), + [anon_sym_to_json] = ACTIONS(341), + [anon_sym_to_string] = ACTIONS(341), + [anon_sym_to_float] = ACTIONS(341), + [anon_sym_bash] = ACTIONS(341), + [anon_sym_fish] = ACTIONS(341), + [anon_sym_raw] = ACTIONS(341), + [anon_sym_sh] = ACTIONS(341), + [anon_sym_zsh] = ACTIONS(341), + [anon_sym_random] = ACTIONS(341), + [anon_sym_random_boolean] = ACTIONS(341), + [anon_sym_random_float] = ACTIONS(341), + [anon_sym_random_integer] = ACTIONS(341), + [anon_sym_columns] = ACTIONS(341), + [anon_sym_rows] = ACTIONS(341), + [anon_sym_reverse] = ACTIONS(341), }, [132] = { - [sym_block] = STATE(457), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_block] = STATE(598), + [sym_statement] = STATE(21), + [sym_expression] = STATE(593), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(584), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1776), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(286), + [aux_sym_block_repeat1] = STATE(21), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(201), + [anon_sym_while] = ACTIONS(203), + [anon_sym_for] = ACTIONS(205), + [anon_sym_asyncfor] = ACTIONS(207), + [anon_sym_transform] = ACTIONS(209), + [anon_sym_filter] = ACTIONS(211), + [anon_sym_find] = ACTIONS(213), + [anon_sym_remove] = ACTIONS(215), + [anon_sym_reduce] = ACTIONS(217), + [anon_sym_select] = ACTIONS(219), + [anon_sym_insert] = ACTIONS(221), + [anon_sym_async] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_assert_equal] = ACTIONS(227), + [anon_sym_download] = ACTIONS(227), + [anon_sym_help] = ACTIONS(227), + [anon_sym_length] = ACTIONS(227), + [anon_sym_output] = ACTIONS(227), + [anon_sym_output_error] = ACTIONS(227), + [anon_sym_type] = ACTIONS(227), + [anon_sym_append] = ACTIONS(227), + [anon_sym_metadata] = ACTIONS(227), + [anon_sym_move] = ACTIONS(227), + [anon_sym_read] = ACTIONS(227), + [anon_sym_workdir] = ACTIONS(227), + [anon_sym_write] = ACTIONS(227), + [anon_sym_from_json] = ACTIONS(227), + [anon_sym_to_json] = ACTIONS(227), + [anon_sym_to_string] = ACTIONS(227), + [anon_sym_to_float] = ACTIONS(227), + [anon_sym_bash] = ACTIONS(227), + [anon_sym_fish] = ACTIONS(227), + [anon_sym_raw] = ACTIONS(227), + [anon_sym_sh] = ACTIONS(227), + [anon_sym_zsh] = ACTIONS(227), + [anon_sym_random] = ACTIONS(227), + [anon_sym_random_boolean] = ACTIONS(227), + [anon_sym_random_float] = ACTIONS(227), + [anon_sym_random_integer] = ACTIONS(227), + [anon_sym_columns] = ACTIONS(227), + [anon_sym_rows] = ACTIONS(227), + [anon_sym_reverse] = ACTIONS(227), }, [133] = { - [sym_block] = STATE(465), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_block] = STATE(813), + [sym_statement] = STATE(51), + [sym_expression] = STATE(817), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(748), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(760), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(1280), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_asyncfor] = ACTIONS(1294), + [anon_sym_transform] = ACTIONS(1296), + [anon_sym_filter] = ACTIONS(1298), + [anon_sym_find] = ACTIONS(1300), + [anon_sym_remove] = ACTIONS(1302), + [anon_sym_reduce] = ACTIONS(1304), + [anon_sym_select] = ACTIONS(1306), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [134] = { - [sym_block] = STATE(390), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(812), + [sym_statement] = STATE(51), + [sym_expression] = STATE(817), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(748), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(760), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(1280), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_asyncfor] = ACTIONS(1294), + [anon_sym_transform] = ACTIONS(1296), + [anon_sym_filter] = ACTIONS(1298), + [anon_sym_find] = ACTIONS(1300), + [anon_sym_remove] = ACTIONS(1302), + [anon_sym_reduce] = ACTIONS(1304), + [anon_sym_select] = ACTIONS(1306), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [135] = { - [sym_block] = STATE(467), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [sym_block] = STATE(1053), + [sym_statement] = STATE(382), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(382), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -19144,317 +21370,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [136] = { - [sym_block] = STATE(405), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(810), + [sym_statement] = STATE(51), + [sym_expression] = STATE(817), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(748), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(760), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(1280), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_asyncfor] = ACTIONS(1294), + [anon_sym_transform] = ACTIONS(1296), + [anon_sym_filter] = ACTIONS(1298), + [anon_sym_find] = ACTIONS(1300), + [anon_sym_remove] = ACTIONS(1302), + [anon_sym_reduce] = ACTIONS(1304), + [anon_sym_select] = ACTIONS(1306), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [137] = { - [sym_block] = STATE(687), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_block] = STATE(809), + [sym_statement] = STATE(51), + [sym_expression] = STATE(817), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(748), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(760), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(1280), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_asyncfor] = ACTIONS(1294), + [anon_sym_transform] = ACTIONS(1296), + [anon_sym_filter] = ACTIONS(1298), + [anon_sym_find] = ACTIONS(1300), + [anon_sym_remove] = ACTIONS(1302), + [anon_sym_reduce] = ACTIONS(1304), + [anon_sym_select] = ACTIONS(1306), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [138] = { - [sym_block] = STATE(472), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [sym_block] = STATE(1070), + [sym_statement] = STATE(381), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -19462,529 +21691,534 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [139] = { - [sym_block] = STATE(467), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [sym_block] = STATE(808), + [sym_statement] = STATE(51), + [sym_expression] = STATE(817), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(748), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(760), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(1280), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_asyncfor] = ACTIONS(1294), + [anon_sym_transform] = ACTIONS(1296), + [anon_sym_filter] = ACTIONS(1298), + [anon_sym_find] = ACTIONS(1300), + [anon_sym_remove] = ACTIONS(1302), + [anon_sym_reduce] = ACTIONS(1304), + [anon_sym_select] = ACTIONS(1306), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [140] = { - [sym_block] = STATE(465), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [sym_block] = STATE(806), + [sym_statement] = STATE(51), + [sym_expression] = STATE(817), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(748), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(760), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(1280), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_asyncfor] = ACTIONS(1294), + [anon_sym_transform] = ACTIONS(1296), + [anon_sym_filter] = ACTIONS(1298), + [anon_sym_find] = ACTIONS(1300), + [anon_sym_remove] = ACTIONS(1302), + [anon_sym_reduce] = ACTIONS(1304), + [anon_sym_select] = ACTIONS(1306), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [141] = { - [sym_block] = STATE(458), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_block] = STATE(804), + [sym_statement] = STATE(51), + [sym_expression] = STATE(817), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(748), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(760), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(1280), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_asyncfor] = ACTIONS(1294), + [anon_sym_transform] = ACTIONS(1296), + [anon_sym_filter] = ACTIONS(1298), + [anon_sym_find] = ACTIONS(1300), + [anon_sym_remove] = ACTIONS(1302), + [anon_sym_reduce] = ACTIONS(1304), + [anon_sym_select] = ACTIONS(1306), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [142] = { - [sym_block] = STATE(461), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [sym_block] = STATE(638), + [sym_statement] = STATE(27), + [sym_expression] = STATE(663), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(637), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1998), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(296), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(313), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_asyncfor] = ACTIONS(321), + [anon_sym_transform] = ACTIONS(323), + [anon_sym_filter] = ACTIONS(325), + [anon_sym_find] = ACTIONS(327), + [anon_sym_remove] = ACTIONS(329), + [anon_sym_reduce] = ACTIONS(331), + [anon_sym_select] = ACTIONS(333), + [anon_sym_insert] = ACTIONS(335), + [anon_sym_async] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(341), + [anon_sym_assert_equal] = ACTIONS(341), + [anon_sym_download] = ACTIONS(341), + [anon_sym_help] = ACTIONS(341), + [anon_sym_length] = ACTIONS(341), + [anon_sym_output] = ACTIONS(341), + [anon_sym_output_error] = ACTIONS(341), + [anon_sym_type] = ACTIONS(341), + [anon_sym_append] = ACTIONS(341), + [anon_sym_metadata] = ACTIONS(341), + [anon_sym_move] = ACTIONS(341), + [anon_sym_read] = ACTIONS(341), + [anon_sym_workdir] = ACTIONS(341), + [anon_sym_write] = ACTIONS(341), + [anon_sym_from_json] = ACTIONS(341), + [anon_sym_to_json] = ACTIONS(341), + [anon_sym_to_string] = ACTIONS(341), + [anon_sym_to_float] = ACTIONS(341), + [anon_sym_bash] = ACTIONS(341), + [anon_sym_fish] = ACTIONS(341), + [anon_sym_raw] = ACTIONS(341), + [anon_sym_sh] = ACTIONS(341), + [anon_sym_zsh] = ACTIONS(341), + [anon_sym_random] = ACTIONS(341), + [anon_sym_random_boolean] = ACTIONS(341), + [anon_sym_random_float] = ACTIONS(341), + [anon_sym_random_integer] = ACTIONS(341), + [anon_sym_columns] = ACTIONS(341), + [anon_sym_rows] = ACTIONS(341), + [anon_sym_reverse] = ACTIONS(341), }, [143] = { - [sym_block] = STATE(460), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [sym_block] = STATE(1651), + [sym_statement] = STATE(371), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -19992,211 +22226,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [144] = { - [sym_block] = STATE(686), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_block] = STATE(816), + [sym_statement] = STATE(38), + [sym_expression] = STATE(779), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(655), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(724), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1860), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(341), + [aux_sym_block_repeat1] = STATE(38), + [sym_identifier] = ACTIONS(839), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(845), + [anon_sym_EQ_GT] = ACTIONS(847), + [anon_sym_while] = ACTIONS(849), + [anon_sym_for] = ACTIONS(851), + [anon_sym_asyncfor] = ACTIONS(853), + [anon_sym_transform] = ACTIONS(855), + [anon_sym_filter] = ACTIONS(857), + [anon_sym_find] = ACTIONS(859), + [anon_sym_remove] = ACTIONS(861), + [anon_sym_reduce] = ACTIONS(863), + [anon_sym_select] = ACTIONS(865), + [anon_sym_insert] = ACTIONS(867), + [anon_sym_async] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(871), + [anon_sym_assert] = ACTIONS(873), + [anon_sym_assert_equal] = ACTIONS(873), + [anon_sym_download] = ACTIONS(873), + [anon_sym_help] = ACTIONS(873), + [anon_sym_length] = ACTIONS(873), + [anon_sym_output] = ACTIONS(873), + [anon_sym_output_error] = ACTIONS(873), + [anon_sym_type] = ACTIONS(873), + [anon_sym_append] = ACTIONS(873), + [anon_sym_metadata] = ACTIONS(873), + [anon_sym_move] = ACTIONS(873), + [anon_sym_read] = ACTIONS(873), + [anon_sym_workdir] = ACTIONS(873), + [anon_sym_write] = ACTIONS(873), + [anon_sym_from_json] = ACTIONS(873), + [anon_sym_to_json] = ACTIONS(873), + [anon_sym_to_string] = ACTIONS(873), + [anon_sym_to_float] = ACTIONS(873), + [anon_sym_bash] = ACTIONS(873), + [anon_sym_fish] = ACTIONS(873), + [anon_sym_raw] = ACTIONS(873), + [anon_sym_sh] = ACTIONS(873), + [anon_sym_zsh] = ACTIONS(873), + [anon_sym_random] = ACTIONS(873), + [anon_sym_random_boolean] = ACTIONS(873), + [anon_sym_random_float] = ACTIONS(873), + [anon_sym_random_integer] = ACTIONS(873), + [anon_sym_columns] = ACTIONS(873), + [anon_sym_rows] = ACTIONS(873), + [anon_sym_reverse] = ACTIONS(873), }, [145] = { - [sym_block] = STATE(459), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [sym_block] = STATE(1071), + [sym_statement] = STATE(381), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -20204,211 +22440,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [146] = { - [sym_block] = STATE(389), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(816), + [sym_statement] = STATE(51), + [sym_expression] = STATE(817), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(748), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(760), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(1280), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_asyncfor] = ACTIONS(1294), + [anon_sym_transform] = ACTIONS(1296), + [anon_sym_filter] = ACTIONS(1298), + [anon_sym_find] = ACTIONS(1300), + [anon_sym_remove] = ACTIONS(1302), + [anon_sym_reduce] = ACTIONS(1304), + [anon_sym_select] = ACTIONS(1306), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [147] = { - [sym_block] = STATE(458), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [sym_block] = STATE(1655), + [sym_statement] = STATE(371), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -20416,105 +22654,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [148] = { - [sym_block] = STATE(457), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [sym_block] = STATE(879), + [sym_statement] = STATE(61), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -20522,211 +22761,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [149] = { - [sym_block] = STATE(386), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(840), + [sym_statement] = STATE(61), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [150] = { - [sym_block] = STATE(459), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [sym_block] = STATE(1652), + [sym_statement] = STATE(371), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -20734,523 +22975,534 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [151] = { - [sym_block] = STATE(387), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(880), + [sym_statement] = STATE(61), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [152] = { - [sym_block] = STATE(388), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(873), + [sym_statement] = STATE(61), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [153] = { - [sym_statement] = STATE(30), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(30), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [sym_block] = STATE(879), + [sym_statement] = STATE(39), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(39), + [sym_identifier] = ACTIONS(875), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(318), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), [sym_string] = ACTIONS(13), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), }, [154] = { - [sym_statement] = STATE(33), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [sym_block] = STATE(871), + [sym_statement] = STATE(61), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(318), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), [sym_string] = ACTIONS(13), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [155] = { - [sym_statement] = STATE(30), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(30), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [sym_block] = STATE(864), + [sym_statement] = STATE(61), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -21258,103 +23510,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(1061), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [156] = { - [sym_statement] = STATE(30), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(30), - [sym_identifier] = ACTIONS(1055), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [sym_block] = STATE(863), + [sym_statement] = STATE(61), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -21362,310 +23617,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [157] = { - [sym_statement] = STATE(30), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(30), - [sym_identifier] = ACTIONS(1055), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(655), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(1061), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(1094), - [anon_sym_assert] = ACTIONS(1097), - [anon_sym_assert_equal] = ACTIONS(1097), - [anon_sym_download] = ACTIONS(1097), - [anon_sym_help] = ACTIONS(1097), - [anon_sym_length] = ACTIONS(1097), - [anon_sym_output] = ACTIONS(1097), - [anon_sym_output_error] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_append] = ACTIONS(1097), - [anon_sym_metadata] = ACTIONS(1097), - [anon_sym_move] = ACTIONS(1097), - [anon_sym_read] = ACTIONS(1097), - [anon_sym_workdir] = ACTIONS(1097), - [anon_sym_write] = ACTIONS(1097), - [anon_sym_from_json] = ACTIONS(1097), - [anon_sym_to_json] = ACTIONS(1097), - [anon_sym_to_string] = ACTIONS(1097), - [anon_sym_to_float] = ACTIONS(1097), - [anon_sym_bash] = ACTIONS(1097), - [anon_sym_fish] = ACTIONS(1097), - [anon_sym_raw] = ACTIONS(1097), - [anon_sym_sh] = ACTIONS(1097), - [anon_sym_zsh] = ACTIONS(1097), - [anon_sym_random] = ACTIONS(1097), - [anon_sym_random_boolean] = ACTIONS(1097), - [anon_sym_random_float] = ACTIONS(1097), - [anon_sym_random_integer] = ACTIONS(1097), - [anon_sym_columns] = ACTIONS(1097), - [anon_sym_rows] = ACTIONS(1097), - [anon_sym_reverse] = ACTIONS(1097), + [sym_block] = STATE(762), + [sym_statement] = STATE(51), + [sym_expression] = STATE(817), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(748), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(760), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(1280), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_asyncfor] = ACTIONS(1294), + [anon_sym_transform] = ACTIONS(1296), + [anon_sym_filter] = ACTIONS(1298), + [anon_sym_find] = ACTIONS(1300), + [anon_sym_remove] = ACTIONS(1302), + [anon_sym_reduce] = ACTIONS(1304), + [anon_sym_select] = ACTIONS(1306), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [158] = { - [sym_statement] = STATE(33), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(655), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1189), - [anon_sym_assert_equal] = ACTIONS(1189), - [anon_sym_download] = ACTIONS(1189), - [anon_sym_help] = ACTIONS(1189), - [anon_sym_length] = ACTIONS(1189), - [anon_sym_output] = ACTIONS(1189), - [anon_sym_output_error] = ACTIONS(1189), - [anon_sym_type] = ACTIONS(1189), - [anon_sym_append] = ACTIONS(1189), - [anon_sym_metadata] = ACTIONS(1189), - [anon_sym_move] = ACTIONS(1189), - [anon_sym_read] = ACTIONS(1189), - [anon_sym_workdir] = ACTIONS(1189), - [anon_sym_write] = ACTIONS(1189), - [anon_sym_from_json] = ACTIONS(1189), - [anon_sym_to_json] = ACTIONS(1189), - [anon_sym_to_string] = ACTIONS(1189), - [anon_sym_to_float] = ACTIONS(1189), - [anon_sym_bash] = ACTIONS(1189), - [anon_sym_fish] = ACTIONS(1189), - [anon_sym_raw] = ACTIONS(1189), - [anon_sym_sh] = ACTIONS(1189), - [anon_sym_zsh] = ACTIONS(1189), - [anon_sym_random] = ACTIONS(1189), - [anon_sym_random_boolean] = ACTIONS(1189), - [anon_sym_random_float] = ACTIONS(1189), - [anon_sym_random_integer] = ACTIONS(1189), - [anon_sym_columns] = ACTIONS(1189), - [anon_sym_rows] = ACTIONS(1189), - [anon_sym_reverse] = ACTIONS(1189), + [sym_block] = STATE(1656), + [sym_statement] = STATE(371), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [159] = { - [sym_statement] = STATE(33), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [sym_block] = STATE(1658), + [sym_statement] = STATE(371), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -21673,7397 +23938,8345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [160] = { - [sym_statement] = STATE(33), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_block] = STATE(1029), + [sym_statement] = STATE(358), + [sym_expression] = STATE(859), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(754), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(985), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1566), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_asyncfor] = ACTIONS(1578), + [anon_sym_transform] = ACTIONS(1580), + [anon_sym_filter] = ACTIONS(1582), + [anon_sym_find] = ACTIONS(1584), + [anon_sym_remove] = ACTIONS(1586), + [anon_sym_reduce] = ACTIONS(1588), + [anon_sym_select] = ACTIONS(1590), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [161] = { - [sym_expression] = STATE(353), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(167), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment_operator] = STATE(333), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_COMMA] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_RBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_elseif] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [sym_block] = STATE(1648), + [sym_statement] = STATE(371), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [162] = { - [sym_expression] = STATE(369), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(176), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment_operator] = STATE(335), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_COMMA] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_RBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_elseif] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [sym_block] = STATE(1015), + [sym_statement] = STATE(358), + [sym_expression] = STATE(859), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(754), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(985), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1566), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_asyncfor] = ACTIONS(1578), + [anon_sym_transform] = ACTIONS(1580), + [anon_sym_filter] = ACTIONS(1582), + [anon_sym_find] = ACTIONS(1584), + [anon_sym_remove] = ACTIONS(1586), + [anon_sym_reduce] = ACTIONS(1588), + [anon_sym_select] = ACTIONS(1590), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [163] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(196), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment_operator] = STATE(328), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_elseif] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [sym_block] = STATE(767), + [sym_statement] = STATE(22), + [sym_expression] = STATE(685), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(576), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(647), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(229), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(247), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(251), + [anon_sym_for] = ACTIONS(253), + [anon_sym_asyncfor] = ACTIONS(255), + [anon_sym_transform] = ACTIONS(257), + [anon_sym_filter] = ACTIONS(259), + [anon_sym_find] = ACTIONS(261), + [anon_sym_remove] = ACTIONS(263), + [anon_sym_reduce] = ACTIONS(265), + [anon_sym_select] = ACTIONS(267), + [anon_sym_insert] = ACTIONS(269), + [anon_sym_async] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), }, [164] = { - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(191), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment_operator] = STATE(329), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_COMMA] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_RBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [sym_block] = STATE(762), + [sym_statement] = STATE(22), + [sym_expression] = STATE(685), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(576), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(647), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(229), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(247), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(251), + [anon_sym_for] = ACTIONS(253), + [anon_sym_asyncfor] = ACTIONS(255), + [anon_sym_transform] = ACTIONS(257), + [anon_sym_filter] = ACTIONS(259), + [anon_sym_find] = ACTIONS(261), + [anon_sym_remove] = ACTIONS(263), + [anon_sym_reduce] = ACTIONS(265), + [anon_sym_select] = ACTIONS(267), + [anon_sym_insert] = ACTIONS(269), + [anon_sym_async] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), }, [165] = { - [sym_expression] = STATE(414), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(203), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment_operator] = STATE(330), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_elseif] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [sym_block] = STATE(846), + [sym_statement] = STATE(61), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [166] = { - [sym_expression] = STATE(443), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(208), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment_operator] = STATE(336), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_COMMA] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_RBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [sym_block] = STATE(1029), + [sym_statement] = STATE(352), + [sym_expression] = STATE(877), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(782), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(978), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1639), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_asyncfor] = ACTIONS(1647), + [anon_sym_transform] = ACTIONS(1649), + [anon_sym_filter] = ACTIONS(1651), + [anon_sym_find] = ACTIONS(1653), + [anon_sym_remove] = ACTIONS(1655), + [anon_sym_reduce] = ACTIONS(1657), + [anon_sym_select] = ACTIONS(1659), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [167] = { - [sym_expression] = STATE(353), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(175), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1245), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(1245), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_elseif] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_transform] = ACTIONS(1251), - [anon_sym_filter] = ACTIONS(1251), - [anon_sym_find] = ACTIONS(1251), - [anon_sym_remove] = ACTIONS(1251), - [anon_sym_reduce] = ACTIONS(1251), - [anon_sym_select] = ACTIONS(1251), - [anon_sym_insert] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_block] = STATE(767), + [sym_statement] = STATE(51), + [sym_expression] = STATE(817), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(748), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(760), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(1280), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_asyncfor] = ACTIONS(1294), + [anon_sym_transform] = ACTIONS(1296), + [anon_sym_filter] = ACTIONS(1298), + [anon_sym_find] = ACTIONS(1300), + [anon_sym_remove] = ACTIONS(1302), + [anon_sym_reduce] = ACTIONS(1304), + [anon_sym_select] = ACTIONS(1306), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [168] = { - [sym_expression] = STATE(353), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(174), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1253), - [anon_sym_COMMA] = ACTIONS(1253), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(1253), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_elseif] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_transform] = ACTIONS(1255), - [anon_sym_filter] = ACTIONS(1255), - [anon_sym_find] = ACTIONS(1255), - [anon_sym_remove] = ACTIONS(1255), - [anon_sym_reduce] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1255), - [anon_sym_insert] = ACTIONS(1255), - [anon_sym_async] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_block] = STATE(816), + [sym_statement] = STATE(22), + [sym_expression] = STATE(685), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(576), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(647), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(229), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(247), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(251), + [anon_sym_for] = ACTIONS(253), + [anon_sym_asyncfor] = ACTIONS(255), + [anon_sym_transform] = ACTIONS(257), + [anon_sym_filter] = ACTIONS(259), + [anon_sym_find] = ACTIONS(261), + [anon_sym_remove] = ACTIONS(263), + [anon_sym_reduce] = ACTIONS(265), + [anon_sym_select] = ACTIONS(267), + [anon_sym_insert] = ACTIONS(269), + [anon_sym_async] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), }, [169] = { - [sym_expression] = STATE(369), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(176), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment_operator] = STATE(327), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_COMMA] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_elseif] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [sym_block] = STATE(804), + [sym_statement] = STATE(22), + [sym_expression] = STATE(685), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(576), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(647), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(229), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(247), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(251), + [anon_sym_for] = ACTIONS(253), + [anon_sym_asyncfor] = ACTIONS(255), + [anon_sym_transform] = ACTIONS(257), + [anon_sym_filter] = ACTIONS(259), + [anon_sym_find] = ACTIONS(261), + [anon_sym_remove] = ACTIONS(263), + [anon_sym_reduce] = ACTIONS(265), + [anon_sym_select] = ACTIONS(267), + [anon_sym_insert] = ACTIONS(269), + [anon_sym_async] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), }, [170] = { - [sym_expression] = STATE(938), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(170), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1257), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_RBRACK] = ACTIONS(1257), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_PERCENT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_elseif] = ACTIONS(1257), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [sym_block] = STATE(806), + [sym_statement] = STATE(22), + [sym_expression] = STATE(685), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(576), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(647), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(229), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(247), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(251), + [anon_sym_for] = ACTIONS(253), + [anon_sym_asyncfor] = ACTIONS(255), + [anon_sym_transform] = ACTIONS(257), + [anon_sym_filter] = ACTIONS(259), + [anon_sym_find] = ACTIONS(261), + [anon_sym_remove] = ACTIONS(263), + [anon_sym_reduce] = ACTIONS(265), + [anon_sym_select] = ACTIONS(267), + [anon_sym_insert] = ACTIONS(269), + [anon_sym_async] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), }, [171] = { - [sym_expression] = STATE(938), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(170), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_COMMA] = ACTIONS(1294), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_RBRACK] = ACTIONS(1294), - [anon_sym_COLON] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_elseif] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(808), + [sym_statement] = STATE(22), + [sym_expression] = STATE(685), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(576), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(647), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(229), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(247), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(251), + [anon_sym_for] = ACTIONS(253), + [anon_sym_asyncfor] = ACTIONS(255), + [anon_sym_transform] = ACTIONS(257), + [anon_sym_filter] = ACTIONS(259), + [anon_sym_find] = ACTIONS(261), + [anon_sym_remove] = ACTIONS(263), + [anon_sym_reduce] = ACTIONS(265), + [anon_sym_select] = ACTIONS(267), + [anon_sym_insert] = ACTIONS(269), + [anon_sym_async] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), }, [172] = { - [sym_expression] = STATE(414), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(203), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment_operator] = STATE(334), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_elseif] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [sym_block] = STATE(1014), + [sym_statement] = STATE(358), + [sym_expression] = STATE(859), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(754), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(985), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1566), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_asyncfor] = ACTIONS(1578), + [anon_sym_transform] = ACTIONS(1580), + [anon_sym_filter] = ACTIONS(1582), + [anon_sym_find] = ACTIONS(1584), + [anon_sym_remove] = ACTIONS(1586), + [anon_sym_reduce] = ACTIONS(1588), + [anon_sym_select] = ACTIONS(1590), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [173] = { - [sym_expression] = STATE(444), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(220), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment_operator] = STATE(332), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [sym_block] = STATE(1012), + [sym_statement] = STATE(358), + [sym_expression] = STATE(859), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(754), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(985), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1566), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_asyncfor] = ACTIONS(1578), + [anon_sym_transform] = ACTIONS(1580), + [anon_sym_filter] = ACTIONS(1582), + [anon_sym_find] = ACTIONS(1584), + [anon_sym_remove] = ACTIONS(1586), + [anon_sym_reduce] = ACTIONS(1588), + [anon_sym_select] = ACTIONS(1590), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [174] = { - [sym_expression] = STATE(353), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(175), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1318), - [anon_sym_COMMA] = ACTIONS(1318), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(1318), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_elseif] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_transform] = ACTIONS(1320), - [anon_sym_filter] = ACTIONS(1320), - [anon_sym_find] = ACTIONS(1320), - [anon_sym_remove] = ACTIONS(1320), - [anon_sym_reduce] = ACTIONS(1320), - [anon_sym_select] = ACTIONS(1320), - [anon_sym_insert] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_block] = STATE(809), + [sym_statement] = STATE(22), + [sym_expression] = STATE(685), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(576), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(647), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(229), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(247), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(251), + [anon_sym_for] = ACTIONS(253), + [anon_sym_asyncfor] = ACTIONS(255), + [anon_sym_transform] = ACTIONS(257), + [anon_sym_filter] = ACTIONS(259), + [anon_sym_find] = ACTIONS(261), + [anon_sym_remove] = ACTIONS(263), + [anon_sym_reduce] = ACTIONS(265), + [anon_sym_select] = ACTIONS(267), + [anon_sym_insert] = ACTIONS(269), + [anon_sym_async] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), }, [175] = { - [sym_expression] = STATE(353), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(175), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1324), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_COMMA] = ACTIONS(1322), - [sym_integer] = ACTIONS(1333), - [sym_float] = ACTIONS(1336), - [sym_string] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1339), - [anon_sym_false] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_elseif] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_EQ_GT] = ACTIONS(1347), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_transform] = ACTIONS(1345), - [anon_sym_filter] = ACTIONS(1345), - [anon_sym_find] = ACTIONS(1345), - [anon_sym_remove] = ACTIONS(1345), - [anon_sym_reduce] = ACTIONS(1345), - [anon_sym_select] = ACTIONS(1345), - [anon_sym_insert] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1353), - [anon_sym_assert] = ACTIONS(1356), - [anon_sym_assert_equal] = ACTIONS(1356), - [anon_sym_download] = ACTIONS(1356), - [anon_sym_help] = ACTIONS(1356), - [anon_sym_length] = ACTIONS(1356), - [anon_sym_output] = ACTIONS(1356), - [anon_sym_output_error] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_append] = ACTIONS(1356), - [anon_sym_metadata] = ACTIONS(1356), - [anon_sym_move] = ACTIONS(1356), - [anon_sym_read] = ACTIONS(1356), - [anon_sym_workdir] = ACTIONS(1356), - [anon_sym_write] = ACTIONS(1356), - [anon_sym_from_json] = ACTIONS(1356), - [anon_sym_to_json] = ACTIONS(1356), - [anon_sym_to_string] = ACTIONS(1356), - [anon_sym_to_float] = ACTIONS(1356), - [anon_sym_bash] = ACTIONS(1356), - [anon_sym_fish] = ACTIONS(1356), - [anon_sym_raw] = ACTIONS(1356), - [anon_sym_sh] = ACTIONS(1356), - [anon_sym_zsh] = ACTIONS(1356), - [anon_sym_random] = ACTIONS(1356), - [anon_sym_random_boolean] = ACTIONS(1356), - [anon_sym_random_float] = ACTIONS(1356), - [anon_sym_random_integer] = ACTIONS(1356), - [anon_sym_columns] = ACTIONS(1356), - [anon_sym_rows] = ACTIONS(1356), - [anon_sym_reverse] = ACTIONS(1356), + [sym_block] = STATE(1019), + [sym_statement] = STATE(358), + [sym_expression] = STATE(859), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(754), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(985), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1566), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_asyncfor] = ACTIONS(1578), + [anon_sym_transform] = ACTIONS(1580), + [anon_sym_filter] = ACTIONS(1582), + [anon_sym_find] = ACTIONS(1584), + [anon_sym_remove] = ACTIONS(1586), + [anon_sym_reduce] = ACTIONS(1588), + [anon_sym_select] = ACTIONS(1590), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [176] = { - [sym_expression] = STATE(369), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(179), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1245), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(1245), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_elseif] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_transform] = ACTIONS(1251), - [anon_sym_filter] = ACTIONS(1251), - [anon_sym_find] = ACTIONS(1251), - [anon_sym_remove] = ACTIONS(1251), - [anon_sym_reduce] = ACTIONS(1251), - [anon_sym_select] = ACTIONS(1251), - [anon_sym_insert] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(810), + [sym_statement] = STATE(22), + [sym_expression] = STATE(685), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(576), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(647), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(229), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(247), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(251), + [anon_sym_for] = ACTIONS(253), + [anon_sym_asyncfor] = ACTIONS(255), + [anon_sym_transform] = ACTIONS(257), + [anon_sym_filter] = ACTIONS(259), + [anon_sym_find] = ACTIONS(261), + [anon_sym_remove] = ACTIONS(263), + [anon_sym_reduce] = ACTIONS(265), + [anon_sym_select] = ACTIONS(267), + [anon_sym_insert] = ACTIONS(269), + [anon_sym_async] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), }, [177] = { - [sym_expression] = STATE(369), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(179), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1318), - [anon_sym_COMMA] = ACTIONS(1318), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(1318), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_elseif] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_transform] = ACTIONS(1320), - [anon_sym_filter] = ACTIONS(1320), - [anon_sym_find] = ACTIONS(1320), - [anon_sym_remove] = ACTIONS(1320), - [anon_sym_reduce] = ACTIONS(1320), - [anon_sym_select] = ACTIONS(1320), - [anon_sym_insert] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(1024), + [sym_statement] = STATE(358), + [sym_expression] = STATE(859), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(754), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(985), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1566), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_asyncfor] = ACTIONS(1578), + [anon_sym_transform] = ACTIONS(1580), + [anon_sym_filter] = ACTIONS(1582), + [anon_sym_find] = ACTIONS(1584), + [anon_sym_remove] = ACTIONS(1586), + [anon_sym_reduce] = ACTIONS(1588), + [anon_sym_select] = ACTIONS(1590), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [178] = { - [sym_expression] = STATE(479), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(233), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment_operator] = STATE(337), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [sym_block] = STATE(639), + [sym_statement] = STATE(10), + [sym_expression] = STATE(571), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(558), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [179] = { - [sym_expression] = STATE(369), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(179), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1324), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_COMMA] = ACTIONS(1322), - [sym_integer] = ACTIONS(1333), - [sym_float] = ACTIONS(1336), - [sym_string] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1339), - [anon_sym_false] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_elseif] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_EQ_GT] = ACTIONS(1359), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_transform] = ACTIONS(1345), - [anon_sym_filter] = ACTIONS(1345), - [anon_sym_find] = ACTIONS(1345), - [anon_sym_remove] = ACTIONS(1345), - [anon_sym_reduce] = ACTIONS(1345), - [anon_sym_select] = ACTIONS(1345), - [anon_sym_insert] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1362), - [anon_sym_assert] = ACTIONS(1365), - [anon_sym_assert_equal] = ACTIONS(1365), - [anon_sym_download] = ACTIONS(1365), - [anon_sym_help] = ACTIONS(1365), - [anon_sym_length] = ACTIONS(1365), - [anon_sym_output] = ACTIONS(1365), - [anon_sym_output_error] = ACTIONS(1365), - [anon_sym_type] = ACTIONS(1365), - [anon_sym_append] = ACTIONS(1365), - [anon_sym_metadata] = ACTIONS(1365), - [anon_sym_move] = ACTIONS(1365), - [anon_sym_read] = ACTIONS(1365), - [anon_sym_workdir] = ACTIONS(1365), - [anon_sym_write] = ACTIONS(1365), - [anon_sym_from_json] = ACTIONS(1365), - [anon_sym_to_json] = ACTIONS(1365), - [anon_sym_to_string] = ACTIONS(1365), - [anon_sym_to_float] = ACTIONS(1365), - [anon_sym_bash] = ACTIONS(1365), - [anon_sym_fish] = ACTIONS(1365), - [anon_sym_raw] = ACTIONS(1365), - [anon_sym_sh] = ACTIONS(1365), - [anon_sym_zsh] = ACTIONS(1365), - [anon_sym_random] = ACTIONS(1365), - [anon_sym_random_boolean] = ACTIONS(1365), - [anon_sym_random_float] = ACTIONS(1365), - [anon_sym_random_integer] = ACTIONS(1365), - [anon_sym_columns] = ACTIONS(1365), - [anon_sym_rows] = ACTIONS(1365), - [anon_sym_reverse] = ACTIONS(1365), + [sym_block] = STATE(1026), + [sym_statement] = STATE(358), + [sym_expression] = STATE(859), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(754), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(985), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1566), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_asyncfor] = ACTIONS(1578), + [anon_sym_transform] = ACTIONS(1580), + [anon_sym_filter] = ACTIONS(1582), + [anon_sym_find] = ACTIONS(1584), + [anon_sym_remove] = ACTIONS(1586), + [anon_sym_reduce] = ACTIONS(1588), + [anon_sym_select] = ACTIONS(1590), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [180] = { - [sym_expression] = STATE(958), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(180), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1257), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_RBRACK] = ACTIONS(1257), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_PERCENT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_elseif] = ACTIONS(1257), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [sym_block] = STATE(1071), + [sym_statement] = STATE(382), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(382), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [181] = { - [sym_expression] = STATE(958), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(180), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_COMMA] = ACTIONS(1294), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_RBRACK] = ACTIONS(1294), - [anon_sym_COLON] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_elseif] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(812), + [sym_statement] = STATE(22), + [sym_expression] = STATE(685), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(576), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(647), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(229), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(247), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(251), + [anon_sym_for] = ACTIONS(253), + [anon_sym_asyncfor] = ACTIONS(255), + [anon_sym_transform] = ACTIONS(257), + [anon_sym_filter] = ACTIONS(259), + [anon_sym_find] = ACTIONS(261), + [anon_sym_remove] = ACTIONS(263), + [anon_sym_reduce] = ACTIONS(265), + [anon_sym_select] = ACTIONS(267), + [anon_sym_insert] = ACTIONS(269), + [anon_sym_async] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), }, [182] = { - [sym_expression] = STATE(369), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(177), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1253), - [anon_sym_COMMA] = ACTIONS(1253), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(1253), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_elseif] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_transform] = ACTIONS(1255), - [anon_sym_filter] = ACTIONS(1255), - [anon_sym_find] = ACTIONS(1255), - [anon_sym_remove] = ACTIONS(1255), - [anon_sym_reduce] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1255), - [anon_sym_insert] = ACTIONS(1255), - [anon_sym_async] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(813), + [sym_statement] = STATE(22), + [sym_expression] = STATE(685), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(576), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(647), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(229), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(247), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(251), + [anon_sym_for] = ACTIONS(253), + [anon_sym_asyncfor] = ACTIONS(255), + [anon_sym_transform] = ACTIONS(257), + [anon_sym_filter] = ACTIONS(259), + [anon_sym_find] = ACTIONS(261), + [anon_sym_remove] = ACTIONS(263), + [anon_sym_reduce] = ACTIONS(265), + [anon_sym_select] = ACTIONS(267), + [anon_sym_insert] = ACTIONS(269), + [anon_sym_async] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), }, [183] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(194), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1318), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_elseif] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_transform] = ACTIONS(1320), - [anon_sym_filter] = ACTIONS(1320), - [anon_sym_find] = ACTIONS(1320), - [anon_sym_remove] = ACTIONS(1320), - [anon_sym_reduce] = ACTIONS(1320), - [anon_sym_select] = ACTIONS(1320), - [anon_sym_insert] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_block] = STATE(840), + [sym_statement] = STATE(39), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(39), + [sym_identifier] = ACTIONS(875), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), }, [184] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(183), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1253), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_elseif] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_transform] = ACTIONS(1255), - [anon_sym_filter] = ACTIONS(1255), - [anon_sym_find] = ACTIONS(1255), - [anon_sym_remove] = ACTIONS(1255), - [anon_sym_reduce] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1255), - [anon_sym_insert] = ACTIONS(1255), - [anon_sym_async] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_block] = STATE(846), + [sym_statement] = STATE(57), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [185] = { - [sym_expression] = STATE(968), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(185), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1257), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_PERCENT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_elseif] = ACTIONS(1257), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [sym_block] = STATE(598), + [sym_statement] = STATE(12), + [sym_expression] = STATE(583), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(567), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [aux_sym_block_repeat1] = STATE(12), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_asyncfor] = ACTIONS(127), + [anon_sym_transform] = ACTIONS(129), + [anon_sym_filter] = ACTIONS(131), + [anon_sym_find] = ACTIONS(133), + [anon_sym_remove] = ACTIONS(135), + [anon_sym_reduce] = ACTIONS(137), + [anon_sym_select] = ACTIONS(139), + [anon_sym_insert] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [186] = { - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(186), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1368), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_COMMA] = ACTIONS(1322), - [sym_integer] = ACTIONS(1377), - [sym_float] = ACTIONS(1380), - [sym_string] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_EQ_GT] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_transform] = ACTIONS(1345), - [anon_sym_filter] = ACTIONS(1345), - [anon_sym_find] = ACTIONS(1345), - [anon_sym_remove] = ACTIONS(1345), - [anon_sym_reduce] = ACTIONS(1345), - [anon_sym_select] = ACTIONS(1345), - [anon_sym_insert] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1392), - [anon_sym_assert] = ACTIONS(1395), - [anon_sym_assert_equal] = ACTIONS(1395), - [anon_sym_download] = ACTIONS(1395), - [anon_sym_help] = ACTIONS(1395), - [anon_sym_length] = ACTIONS(1395), - [anon_sym_output] = ACTIONS(1395), - [anon_sym_output_error] = ACTIONS(1395), - [anon_sym_type] = ACTIONS(1395), - [anon_sym_append] = ACTIONS(1395), - [anon_sym_metadata] = ACTIONS(1395), - [anon_sym_move] = ACTIONS(1395), - [anon_sym_read] = ACTIONS(1395), - [anon_sym_workdir] = ACTIONS(1395), - [anon_sym_write] = ACTIONS(1395), - [anon_sym_from_json] = ACTIONS(1395), - [anon_sym_to_json] = ACTIONS(1395), - [anon_sym_to_string] = ACTIONS(1395), - [anon_sym_to_float] = ACTIONS(1395), - [anon_sym_bash] = ACTIONS(1395), - [anon_sym_fish] = ACTIONS(1395), - [anon_sym_raw] = ACTIONS(1395), - [anon_sym_sh] = ACTIONS(1395), - [anon_sym_zsh] = ACTIONS(1395), - [anon_sym_random] = ACTIONS(1395), - [anon_sym_random_boolean] = ACTIONS(1395), - [anon_sym_random_float] = ACTIONS(1395), - [anon_sym_random_integer] = ACTIONS(1395), - [anon_sym_columns] = ACTIONS(1395), - [anon_sym_rows] = ACTIONS(1395), - [anon_sym_reverse] = ACTIONS(1395), + [sym_block] = STATE(738), + [sym_statement] = STATE(17), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [187] = { - [sym_expression] = STATE(974), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(187), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1257), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_RBRACK] = ACTIONS(1257), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_PERCENT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [sym_block] = STATE(608), + [sym_statement] = STATE(12), + [sym_expression] = STATE(583), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(567), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [aux_sym_block_repeat1] = STATE(12), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_asyncfor] = ACTIONS(127), + [anon_sym_transform] = ACTIONS(129), + [anon_sym_filter] = ACTIONS(131), + [anon_sym_find] = ACTIONS(133), + [anon_sym_remove] = ACTIONS(135), + [anon_sym_reduce] = ACTIONS(137), + [anon_sym_select] = ACTIONS(139), + [anon_sym_insert] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [188] = { - [sym_expression] = STATE(974), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(187), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_COMMA] = ACTIONS(1294), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_RBRACK] = ACTIONS(1294), - [anon_sym_COLON] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(737), + [sym_statement] = STATE(17), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [189] = { - [sym_expression] = STATE(479), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(233), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment_operator] = STATE(331), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [sym_block] = STATE(610), + [sym_statement] = STATE(12), + [sym_expression] = STATE(583), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(567), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [aux_sym_block_repeat1] = STATE(12), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_asyncfor] = ACTIONS(127), + [anon_sym_transform] = ACTIONS(129), + [anon_sym_filter] = ACTIONS(131), + [anon_sym_find] = ACTIONS(133), + [anon_sym_remove] = ACTIONS(135), + [anon_sym_reduce] = ACTIONS(137), + [anon_sym_select] = ACTIONS(139), + [anon_sym_insert] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [190] = { - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(186), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1318), - [anon_sym_COMMA] = ACTIONS(1318), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1318), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_transform] = ACTIONS(1320), - [anon_sym_filter] = ACTIONS(1320), - [anon_sym_find] = ACTIONS(1320), - [anon_sym_remove] = ACTIONS(1320), - [anon_sym_reduce] = ACTIONS(1320), - [anon_sym_select] = ACTIONS(1320), - [anon_sym_insert] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [sym_block] = STATE(589), + [sym_statement] = STATE(12), + [sym_expression] = STATE(583), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(567), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [aux_sym_block_repeat1] = STATE(12), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_asyncfor] = ACTIONS(127), + [anon_sym_transform] = ACTIONS(129), + [anon_sym_filter] = ACTIONS(131), + [anon_sym_find] = ACTIONS(133), + [anon_sym_remove] = ACTIONS(135), + [anon_sym_reduce] = ACTIONS(137), + [anon_sym_select] = ACTIONS(139), + [anon_sym_insert] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [191] = { - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(186), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1245), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1245), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_transform] = ACTIONS(1251), - [anon_sym_filter] = ACTIONS(1251), - [anon_sym_find] = ACTIONS(1251), - [anon_sym_remove] = ACTIONS(1251), - [anon_sym_reduce] = ACTIONS(1251), - [anon_sym_select] = ACTIONS(1251), - [anon_sym_insert] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [sym_block] = STATE(738), + [sym_statement] = STATE(24), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(24), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [192] = { - [sym_expression] = STATE(968), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(185), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1294), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_elseif] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(737), + [sym_statement] = STATE(24), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(24), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [193] = { - [sym_expression] = STATE(443), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(208), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment_operator] = STATE(326), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_COMMA] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [sym_block] = STATE(734), + [sym_statement] = STATE(24), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(24), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [194] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(194), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1324), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_RPAREN] = ACTIONS(1322), - [sym_integer] = ACTIONS(1333), - [sym_float] = ACTIONS(1336), - [sym_string] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1339), - [anon_sym_false] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_elseif] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_EQ_GT] = ACTIONS(1347), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_transform] = ACTIONS(1345), - [anon_sym_filter] = ACTIONS(1345), - [anon_sym_find] = ACTIONS(1345), - [anon_sym_remove] = ACTIONS(1345), - [anon_sym_reduce] = ACTIONS(1345), - [anon_sym_select] = ACTIONS(1345), - [anon_sym_insert] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1353), - [anon_sym_assert] = ACTIONS(1356), - [anon_sym_assert_equal] = ACTIONS(1356), - [anon_sym_download] = ACTIONS(1356), - [anon_sym_help] = ACTIONS(1356), - [anon_sym_length] = ACTIONS(1356), - [anon_sym_output] = ACTIONS(1356), - [anon_sym_output_error] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_append] = ACTIONS(1356), - [anon_sym_metadata] = ACTIONS(1356), - [anon_sym_move] = ACTIONS(1356), - [anon_sym_read] = ACTIONS(1356), - [anon_sym_workdir] = ACTIONS(1356), - [anon_sym_write] = ACTIONS(1356), - [anon_sym_from_json] = ACTIONS(1356), - [anon_sym_to_json] = ACTIONS(1356), - [anon_sym_to_string] = ACTIONS(1356), - [anon_sym_to_float] = ACTIONS(1356), - [anon_sym_bash] = ACTIONS(1356), - [anon_sym_fish] = ACTIONS(1356), - [anon_sym_raw] = ACTIONS(1356), - [anon_sym_sh] = ACTIONS(1356), - [anon_sym_zsh] = ACTIONS(1356), - [anon_sym_random] = ACTIONS(1356), - [anon_sym_random_boolean] = ACTIONS(1356), - [anon_sym_random_float] = ACTIONS(1356), - [anon_sym_random_integer] = ACTIONS(1356), - [anon_sym_columns] = ACTIONS(1356), - [anon_sym_rows] = ACTIONS(1356), - [anon_sym_reverse] = ACTIONS(1356), + [sym_block] = STATE(733), + [sym_statement] = STATE(24), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(24), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [195] = { - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(190), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1253), - [anon_sym_COMMA] = ACTIONS(1253), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1253), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_transform] = ACTIONS(1255), - [anon_sym_filter] = ACTIONS(1255), - [anon_sym_find] = ACTIONS(1255), - [anon_sym_remove] = ACTIONS(1255), - [anon_sym_reduce] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1255), - [anon_sym_insert] = ACTIONS(1255), - [anon_sym_async] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [sym_block] = STATE(731), + [sym_statement] = STATE(24), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(24), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [196] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(194), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1245), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_elseif] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_transform] = ACTIONS(1251), - [anon_sym_filter] = ACTIONS(1251), - [anon_sym_find] = ACTIONS(1251), - [anon_sym_remove] = ACTIONS(1251), - [anon_sym_reduce] = ACTIONS(1251), - [anon_sym_select] = ACTIONS(1251), - [anon_sym_insert] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_block] = STATE(729), + [sym_statement] = STATE(24), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(24), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [197] = { - [sym_expression] = STATE(949), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(211), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1294), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_elseif] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(619), + [sym_statement] = STATE(12), + [sym_expression] = STATE(583), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(567), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [aux_sym_block_repeat1] = STATE(12), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_asyncfor] = ACTIONS(127), + [anon_sym_transform] = ACTIONS(129), + [anon_sym_filter] = ACTIONS(131), + [anon_sym_find] = ACTIONS(133), + [anon_sym_remove] = ACTIONS(135), + [anon_sym_reduce] = ACTIONS(137), + [anon_sym_select] = ACTIONS(139), + [anon_sym_insert] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [198] = { - [sym_expression] = STATE(414), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(200), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1318), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_elseif] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_transform] = ACTIONS(1320), - [anon_sym_filter] = ACTIONS(1320), - [anon_sym_find] = ACTIONS(1320), - [anon_sym_remove] = ACTIONS(1320), - [anon_sym_reduce] = ACTIONS(1320), - [anon_sym_select] = ACTIONS(1320), - [anon_sym_insert] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(734), + [sym_statement] = STATE(17), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [199] = { - [sym_statement] = STATE(199), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(221), - [anon_sym_COMMA] = ACTIONS(213), - [sym_integer] = ACTIONS(224), - [sym_float] = ACTIONS(227), - [sym_string] = ACTIONS(227), - [anon_sym_true] = ACTIONS(230), - [anon_sym_false] = ACTIONS(230), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_if] = ACTIONS(1403), - [anon_sym_elseif] = ACTIONS(213), - [anon_sym_else] = ACTIONS(236), - [anon_sym_match] = ACTIONS(1406), - [anon_sym_EQ_GT] = ACTIONS(514), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_transform] = ACTIONS(1415), - [anon_sym_filter] = ACTIONS(1418), - [anon_sym_find] = ACTIONS(1421), - [anon_sym_remove] = ACTIONS(1424), - [anon_sym_reduce] = ACTIONS(1427), - [anon_sym_select] = ACTIONS(1430), - [anon_sym_insert] = ACTIONS(541), - [anon_sym_async] = ACTIONS(1433), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_table] = ACTIONS(547), - [anon_sym_assert] = ACTIONS(550), - [anon_sym_assert_equal] = ACTIONS(550), - [anon_sym_download] = ACTIONS(550), - [anon_sym_help] = ACTIONS(550), - [anon_sym_length] = ACTIONS(550), - [anon_sym_output] = ACTIONS(550), - [anon_sym_output_error] = ACTIONS(550), - [anon_sym_type] = ACTIONS(550), - [anon_sym_append] = ACTIONS(550), - [anon_sym_metadata] = ACTIONS(550), - [anon_sym_move] = ACTIONS(550), - [anon_sym_read] = ACTIONS(550), - [anon_sym_workdir] = ACTIONS(550), - [anon_sym_write] = ACTIONS(550), - [anon_sym_from_json] = ACTIONS(550), - [anon_sym_to_json] = ACTIONS(550), - [anon_sym_to_string] = ACTIONS(550), - [anon_sym_to_float] = ACTIONS(550), - [anon_sym_bash] = ACTIONS(550), - [anon_sym_fish] = ACTIONS(550), - [anon_sym_raw] = ACTIONS(550), - [anon_sym_sh] = ACTIONS(550), - [anon_sym_zsh] = ACTIONS(550), - [anon_sym_random] = ACTIONS(550), - [anon_sym_random_boolean] = ACTIONS(550), - [anon_sym_random_float] = ACTIONS(550), - [anon_sym_random_integer] = ACTIONS(550), - [anon_sym_columns] = ACTIONS(550), - [anon_sym_rows] = ACTIONS(550), - [anon_sym_reverse] = ACTIONS(550), + [sym_block] = STATE(624), + [sym_statement] = STATE(12), + [sym_expression] = STATE(583), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(567), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [aux_sym_block_repeat1] = STATE(12), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_asyncfor] = ACTIONS(127), + [anon_sym_transform] = ACTIONS(129), + [anon_sym_filter] = ACTIONS(131), + [anon_sym_find] = ACTIONS(133), + [anon_sym_remove] = ACTIONS(135), + [anon_sym_reduce] = ACTIONS(137), + [anon_sym_select] = ACTIONS(139), + [anon_sym_insert] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [200] = { - [sym_expression] = STATE(414), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(200), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1324), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_RPAREN] = ACTIONS(1322), - [sym_integer] = ACTIONS(1333), - [sym_float] = ACTIONS(1336), - [sym_string] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1339), - [anon_sym_false] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_elseif] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_EQ_GT] = ACTIONS(1359), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_transform] = ACTIONS(1345), - [anon_sym_filter] = ACTIONS(1345), - [anon_sym_find] = ACTIONS(1345), - [anon_sym_remove] = ACTIONS(1345), - [anon_sym_reduce] = ACTIONS(1345), - [anon_sym_select] = ACTIONS(1345), - [anon_sym_insert] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1362), - [anon_sym_assert] = ACTIONS(1365), - [anon_sym_assert_equal] = ACTIONS(1365), - [anon_sym_download] = ACTIONS(1365), - [anon_sym_help] = ACTIONS(1365), - [anon_sym_length] = ACTIONS(1365), - [anon_sym_output] = ACTIONS(1365), - [anon_sym_output_error] = ACTIONS(1365), - [anon_sym_type] = ACTIONS(1365), - [anon_sym_append] = ACTIONS(1365), - [anon_sym_metadata] = ACTIONS(1365), - [anon_sym_move] = ACTIONS(1365), - [anon_sym_read] = ACTIONS(1365), - [anon_sym_workdir] = ACTIONS(1365), - [anon_sym_write] = ACTIONS(1365), - [anon_sym_from_json] = ACTIONS(1365), - [anon_sym_to_json] = ACTIONS(1365), - [anon_sym_to_string] = ACTIONS(1365), - [anon_sym_to_float] = ACTIONS(1365), - [anon_sym_bash] = ACTIONS(1365), - [anon_sym_fish] = ACTIONS(1365), - [anon_sym_raw] = ACTIONS(1365), - [anon_sym_sh] = ACTIONS(1365), - [anon_sym_zsh] = ACTIONS(1365), - [anon_sym_random] = ACTIONS(1365), - [anon_sym_random_boolean] = ACTIONS(1365), - [anon_sym_random_float] = ACTIONS(1365), - [anon_sym_random_integer] = ACTIONS(1365), - [anon_sym_columns] = ACTIONS(1365), - [anon_sym_rows] = ACTIONS(1365), - [anon_sym_reverse] = ACTIONS(1365), + [sym_block] = STATE(728), + [sym_statement] = STATE(24), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(24), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [201] = { - [sym_expression] = STATE(414), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(198), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1253), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_elseif] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_transform] = ACTIONS(1255), - [anon_sym_filter] = ACTIONS(1255), - [anon_sym_find] = ACTIONS(1255), - [anon_sym_remove] = ACTIONS(1255), - [anon_sym_reduce] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1255), - [anon_sym_insert] = ACTIONS(1255), - [anon_sym_async] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(636), + [sym_statement] = STATE(12), + [sym_expression] = STATE(583), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(567), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [aux_sym_block_repeat1] = STATE(12), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_asyncfor] = ACTIONS(127), + [anon_sym_transform] = ACTIONS(129), + [anon_sym_filter] = ACTIONS(131), + [anon_sym_find] = ACTIONS(133), + [anon_sym_remove] = ACTIONS(135), + [anon_sym_reduce] = ACTIONS(137), + [anon_sym_select] = ACTIONS(139), + [anon_sym_insert] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [202] = { - [sym_statement] = STATE(199), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1439), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(323), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(326), - [anon_sym_COMMA] = ACTIONS(318), - [sym_integer] = ACTIONS(329), - [sym_float] = ACTIONS(332), - [sym_string] = ACTIONS(332), - [anon_sym_true] = ACTIONS(335), - [anon_sym_false] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_elseif] = ACTIONS(318), - [anon_sym_else] = ACTIONS(341), - [anon_sym_match] = ACTIONS(1445), - [anon_sym_EQ_GT] = ACTIONS(562), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_transform] = ACTIONS(1454), - [anon_sym_filter] = ACTIONS(1457), - [anon_sym_find] = ACTIONS(1460), - [anon_sym_remove] = ACTIONS(1463), - [anon_sym_reduce] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1469), - [anon_sym_insert] = ACTIONS(589), - [anon_sym_async] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_table] = ACTIONS(595), - [anon_sym_assert] = ACTIONS(598), - [anon_sym_assert_equal] = ACTIONS(598), - [anon_sym_download] = ACTIONS(598), - [anon_sym_help] = ACTIONS(598), - [anon_sym_length] = ACTIONS(598), - [anon_sym_output] = ACTIONS(598), - [anon_sym_output_error] = ACTIONS(598), - [anon_sym_type] = ACTIONS(598), - [anon_sym_append] = ACTIONS(598), - [anon_sym_metadata] = ACTIONS(598), - [anon_sym_move] = ACTIONS(598), - [anon_sym_read] = ACTIONS(598), - [anon_sym_workdir] = ACTIONS(598), - [anon_sym_write] = ACTIONS(598), - [anon_sym_from_json] = ACTIONS(598), - [anon_sym_to_json] = ACTIONS(598), - [anon_sym_to_string] = ACTIONS(598), - [anon_sym_to_float] = ACTIONS(598), - [anon_sym_bash] = ACTIONS(598), - [anon_sym_fish] = ACTIONS(598), - [anon_sym_raw] = ACTIONS(598), - [anon_sym_sh] = ACTIONS(598), - [anon_sym_zsh] = ACTIONS(598), - [anon_sym_random] = ACTIONS(598), - [anon_sym_random_boolean] = ACTIONS(598), - [anon_sym_random_float] = ACTIONS(598), - [anon_sym_random_integer] = ACTIONS(598), - [anon_sym_columns] = ACTIONS(598), - [anon_sym_rows] = ACTIONS(598), - [anon_sym_reverse] = ACTIONS(598), + [sym_block] = STATE(638), + [sym_statement] = STATE(12), + [sym_expression] = STATE(583), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(567), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [aux_sym_block_repeat1] = STATE(12), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_asyncfor] = ACTIONS(127), + [anon_sym_transform] = ACTIONS(129), + [anon_sym_filter] = ACTIONS(131), + [anon_sym_find] = ACTIONS(133), + [anon_sym_remove] = ACTIONS(135), + [anon_sym_reduce] = ACTIONS(137), + [anon_sym_select] = ACTIONS(139), + [anon_sym_insert] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [203] = { - [sym_expression] = STATE(414), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(200), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1245), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_elseif] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_transform] = ACTIONS(1251), - [anon_sym_filter] = ACTIONS(1251), - [anon_sym_find] = ACTIONS(1251), - [anon_sym_remove] = ACTIONS(1251), - [anon_sym_reduce] = ACTIONS(1251), - [anon_sym_select] = ACTIONS(1251), - [anon_sym_insert] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(1016), + [sym_statement] = STATE(352), + [sym_expression] = STATE(877), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(782), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(978), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1639), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_asyncfor] = ACTIONS(1647), + [anon_sym_transform] = ACTIONS(1649), + [anon_sym_filter] = ACTIONS(1651), + [anon_sym_find] = ACTIONS(1653), + [anon_sym_remove] = ACTIONS(1655), + [anon_sym_reduce] = ACTIONS(1657), + [anon_sym_select] = ACTIONS(1659), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [204] = { - [sym_expression] = STATE(443), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(204), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1368), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_COMMA] = ACTIONS(1322), - [sym_integer] = ACTIONS(1377), - [sym_float] = ACTIONS(1380), - [sym_string] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_EQ_GT] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_transform] = ACTIONS(1345), - [anon_sym_filter] = ACTIONS(1345), - [anon_sym_find] = ACTIONS(1345), - [anon_sym_remove] = ACTIONS(1345), - [anon_sym_reduce] = ACTIONS(1345), - [anon_sym_select] = ACTIONS(1345), - [anon_sym_insert] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1481), - [anon_sym_assert] = ACTIONS(1484), - [anon_sym_assert_equal] = ACTIONS(1484), - [anon_sym_download] = ACTIONS(1484), - [anon_sym_help] = ACTIONS(1484), - [anon_sym_length] = ACTIONS(1484), - [anon_sym_output] = ACTIONS(1484), - [anon_sym_output_error] = ACTIONS(1484), - [anon_sym_type] = ACTIONS(1484), - [anon_sym_append] = ACTIONS(1484), - [anon_sym_metadata] = ACTIONS(1484), - [anon_sym_move] = ACTIONS(1484), - [anon_sym_read] = ACTIONS(1484), - [anon_sym_workdir] = ACTIONS(1484), - [anon_sym_write] = ACTIONS(1484), - [anon_sym_from_json] = ACTIONS(1484), - [anon_sym_to_json] = ACTIONS(1484), - [anon_sym_to_string] = ACTIONS(1484), - [anon_sym_to_float] = ACTIONS(1484), - [anon_sym_bash] = ACTIONS(1484), - [anon_sym_fish] = ACTIONS(1484), - [anon_sym_raw] = ACTIONS(1484), - [anon_sym_sh] = ACTIONS(1484), - [anon_sym_zsh] = ACTIONS(1484), - [anon_sym_random] = ACTIONS(1484), - [anon_sym_random_boolean] = ACTIONS(1484), - [anon_sym_random_float] = ACTIONS(1484), - [anon_sym_random_integer] = ACTIONS(1484), - [anon_sym_columns] = ACTIONS(1484), - [anon_sym_rows] = ACTIONS(1484), - [anon_sym_reverse] = ACTIONS(1484), + [sym_block] = STATE(1015), + [sym_statement] = STATE(352), + [sym_expression] = STATE(877), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(782), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(978), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1639), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_asyncfor] = ACTIONS(1647), + [anon_sym_transform] = ACTIONS(1649), + [anon_sym_filter] = ACTIONS(1651), + [anon_sym_find] = ACTIONS(1653), + [anon_sym_remove] = ACTIONS(1655), + [anon_sym_reduce] = ACTIONS(1657), + [anon_sym_select] = ACTIONS(1659), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [205] = { - [sym_statement] = STATE(199), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1439), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_COMMA] = ACTIONS(318), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(429), - [anon_sym_elseif] = ACTIONS(318), - [anon_sym_else] = ACTIONS(341), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(1014), + [sym_statement] = STATE(352), + [sym_expression] = STATE(877), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(782), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(978), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1639), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_asyncfor] = ACTIONS(1647), + [anon_sym_transform] = ACTIONS(1649), + [anon_sym_filter] = ACTIONS(1651), + [anon_sym_find] = ACTIONS(1653), + [anon_sym_remove] = ACTIONS(1655), + [anon_sym_reduce] = ACTIONS(1657), + [anon_sym_select] = ACTIONS(1659), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [206] = { - [sym_expression] = STATE(951), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_COMMA] = ACTIONS(1294), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_RBRACK] = ACTIONS(1294), - [anon_sym_COLON] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(1012), + [sym_statement] = STATE(352), + [sym_expression] = STATE(877), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(782), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(978), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1639), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_asyncfor] = ACTIONS(1647), + [anon_sym_transform] = ACTIONS(1649), + [anon_sym_filter] = ACTIONS(1651), + [anon_sym_find] = ACTIONS(1653), + [anon_sym_remove] = ACTIONS(1655), + [anon_sym_reduce] = ACTIONS(1657), + [anon_sym_select] = ACTIONS(1659), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [207] = { - [sym_expression] = STATE(951), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1257), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_RBRACK] = ACTIONS(1257), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_PERCENT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [sym_block] = STATE(1019), + [sym_statement] = STATE(352), + [sym_expression] = STATE(877), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(782), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(978), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1639), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_asyncfor] = ACTIONS(1647), + [anon_sym_transform] = ACTIONS(1649), + [anon_sym_filter] = ACTIONS(1651), + [anon_sym_find] = ACTIONS(1653), + [anon_sym_remove] = ACTIONS(1655), + [anon_sym_reduce] = ACTIONS(1657), + [anon_sym_select] = ACTIONS(1659), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [208] = { - [sym_expression] = STATE(443), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(204), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1245), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1245), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_transform] = ACTIONS(1251), - [anon_sym_filter] = ACTIONS(1251), - [anon_sym_find] = ACTIONS(1251), - [anon_sym_remove] = ACTIONS(1251), - [anon_sym_reduce] = ACTIONS(1251), - [anon_sym_select] = ACTIONS(1251), - [anon_sym_insert] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_block] = STATE(733), + [sym_statement] = STATE(17), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [209] = { - [sym_statement] = STATE(209), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(209), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(1487), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(221), - [sym_integer] = ACTIONS(224), - [sym_float] = ACTIONS(227), - [sym_string] = ACTIONS(227), - [anon_sym_true] = ACTIONS(230), - [anon_sym_false] = ACTIONS(230), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_elseif] = ACTIONS(213), - [anon_sym_else] = ACTIONS(236), - [anon_sym_match] = ACTIONS(1493), - [anon_sym_EQ_GT] = ACTIONS(878), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_transform] = ACTIONS(1502), - [anon_sym_filter] = ACTIONS(1505), - [anon_sym_find] = ACTIONS(1508), - [anon_sym_remove] = ACTIONS(1511), - [anon_sym_reduce] = ACTIONS(1514), - [anon_sym_select] = ACTIONS(1517), - [anon_sym_insert] = ACTIONS(905), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_table] = ACTIONS(911), - [anon_sym_assert] = ACTIONS(914), - [anon_sym_assert_equal] = ACTIONS(914), - [anon_sym_download] = ACTIONS(914), - [anon_sym_help] = ACTIONS(914), - [anon_sym_length] = ACTIONS(914), - [anon_sym_output] = ACTIONS(914), - [anon_sym_output_error] = ACTIONS(914), - [anon_sym_type] = ACTIONS(914), - [anon_sym_append] = ACTIONS(914), - [anon_sym_metadata] = ACTIONS(914), - [anon_sym_move] = ACTIONS(914), - [anon_sym_read] = ACTIONS(914), - [anon_sym_workdir] = ACTIONS(914), - [anon_sym_write] = ACTIONS(914), - [anon_sym_from_json] = ACTIONS(914), - [anon_sym_to_json] = ACTIONS(914), - [anon_sym_to_string] = ACTIONS(914), - [anon_sym_to_float] = ACTIONS(914), - [anon_sym_bash] = ACTIONS(914), - [anon_sym_fish] = ACTIONS(914), - [anon_sym_raw] = ACTIONS(914), - [anon_sym_sh] = ACTIONS(914), - [anon_sym_zsh] = ACTIONS(914), - [anon_sym_random] = ACTIONS(914), - [anon_sym_random_boolean] = ACTIONS(914), - [anon_sym_random_float] = ACTIONS(914), - [anon_sym_random_integer] = ACTIONS(914), - [anon_sym_columns] = ACTIONS(914), - [anon_sym_rows] = ACTIONS(914), - [anon_sym_reverse] = ACTIONS(914), + [sym_block] = STATE(734), + [sym_statement] = STATE(35), + [sym_expression] = STATE(701), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(582), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1866), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(320), + [aux_sym_block_repeat1] = STATE(35), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(497), + [anon_sym_EQ_GT] = ACTIONS(499), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_asyncfor] = ACTIONS(505), + [anon_sym_transform] = ACTIONS(507), + [anon_sym_filter] = ACTIONS(509), + [anon_sym_find] = ACTIONS(511), + [anon_sym_remove] = ACTIONS(513), + [anon_sym_reduce] = ACTIONS(515), + [anon_sym_select] = ACTIONS(517), + [anon_sym_insert] = ACTIONS(519), + [anon_sym_async] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(525), + [anon_sym_assert_equal] = ACTIONS(525), + [anon_sym_download] = ACTIONS(525), + [anon_sym_help] = ACTIONS(525), + [anon_sym_length] = ACTIONS(525), + [anon_sym_output] = ACTIONS(525), + [anon_sym_output_error] = ACTIONS(525), + [anon_sym_type] = ACTIONS(525), + [anon_sym_append] = ACTIONS(525), + [anon_sym_metadata] = ACTIONS(525), + [anon_sym_move] = ACTIONS(525), + [anon_sym_read] = ACTIONS(525), + [anon_sym_workdir] = ACTIONS(525), + [anon_sym_write] = ACTIONS(525), + [anon_sym_from_json] = ACTIONS(525), + [anon_sym_to_json] = ACTIONS(525), + [anon_sym_to_string] = ACTIONS(525), + [anon_sym_to_float] = ACTIONS(525), + [anon_sym_bash] = ACTIONS(525), + [anon_sym_fish] = ACTIONS(525), + [anon_sym_raw] = ACTIONS(525), + [anon_sym_sh] = ACTIONS(525), + [anon_sym_zsh] = ACTIONS(525), + [anon_sym_random] = ACTIONS(525), + [anon_sym_random_boolean] = ACTIONS(525), + [anon_sym_random_float] = ACTIONS(525), + [anon_sym_random_integer] = ACTIONS(525), + [anon_sym_columns] = ACTIONS(525), + [anon_sym_rows] = ACTIONS(525), + [anon_sym_reverse] = ACTIONS(525), }, [210] = { - [sym_expression] = STATE(479), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(233), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment_operator] = STATE(331), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1523), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [sym_block] = STATE(630), + [sym_statement] = STATE(10), + [sym_expression] = STATE(571), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(558), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [211] = { - [sym_expression] = STATE(949), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(211), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1257), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_PERCENT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_elseif] = ACTIONS(1257), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [sym_block] = STATE(863), + [sym_statement] = STATE(57), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [212] = { - [sym_expression] = STATE(443), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(204), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), + [sym_block] = STATE(864), + [sym_statement] = STATE(57), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1318), - [anon_sym_COMMA] = ACTIONS(1318), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), [sym_string] = ACTIONS(13), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1318), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_transform] = ACTIONS(1320), - [anon_sym_filter] = ACTIONS(1320), - [anon_sym_find] = ACTIONS(1320), - [anon_sym_remove] = ACTIONS(1320), - [anon_sym_reduce] = ACTIONS(1320), - [anon_sym_select] = ACTIONS(1320), - [anon_sym_insert] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [213] = { - [sym_statement] = STATE(209), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(209), - [ts_builtin_sym_end] = ACTIONS(318), - [sym_identifier] = ACTIONS(1525), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(323), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(326), - [sym_integer] = ACTIONS(329), - [sym_float] = ACTIONS(332), - [sym_string] = ACTIONS(332), - [anon_sym_true] = ACTIONS(335), - [anon_sym_false] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_elseif] = ACTIONS(318), - [anon_sym_else] = ACTIONS(341), - [anon_sym_match] = ACTIONS(1531), - [anon_sym_EQ_GT] = ACTIONS(926), - [anon_sym_while] = ACTIONS(1534), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_transform] = ACTIONS(1540), - [anon_sym_filter] = ACTIONS(1543), - [anon_sym_find] = ACTIONS(1546), - [anon_sym_remove] = ACTIONS(1549), - [anon_sym_reduce] = ACTIONS(1552), - [anon_sym_select] = ACTIONS(1555), - [anon_sym_insert] = ACTIONS(953), - [anon_sym_async] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_table] = ACTIONS(959), - [anon_sym_assert] = ACTIONS(962), - [anon_sym_assert_equal] = ACTIONS(962), - [anon_sym_download] = ACTIONS(962), - [anon_sym_help] = ACTIONS(962), - [anon_sym_length] = ACTIONS(962), - [anon_sym_output] = ACTIONS(962), - [anon_sym_output_error] = ACTIONS(962), - [anon_sym_type] = ACTIONS(962), - [anon_sym_append] = ACTIONS(962), - [anon_sym_metadata] = ACTIONS(962), - [anon_sym_move] = ACTIONS(962), - [anon_sym_read] = ACTIONS(962), - [anon_sym_workdir] = ACTIONS(962), - [anon_sym_write] = ACTIONS(962), - [anon_sym_from_json] = ACTIONS(962), - [anon_sym_to_json] = ACTIONS(962), - [anon_sym_to_string] = ACTIONS(962), - [anon_sym_to_float] = ACTIONS(962), - [anon_sym_bash] = ACTIONS(962), - [anon_sym_fish] = ACTIONS(962), - [anon_sym_raw] = ACTIONS(962), - [anon_sym_sh] = ACTIONS(962), - [anon_sym_zsh] = ACTIONS(962), - [anon_sym_random] = ACTIONS(962), - [anon_sym_random_boolean] = ACTIONS(962), - [anon_sym_random_float] = ACTIONS(962), - [anon_sym_random_integer] = ACTIONS(962), - [anon_sym_columns] = ACTIONS(962), - [anon_sym_rows] = ACTIONS(962), - [anon_sym_reverse] = ACTIONS(962), + [sym_block] = STATE(639), + [sym_statement] = STATE(27), + [sym_expression] = STATE(663), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(637), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1998), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(296), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(313), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_asyncfor] = ACTIONS(321), + [anon_sym_transform] = ACTIONS(323), + [anon_sym_filter] = ACTIONS(325), + [anon_sym_find] = ACTIONS(327), + [anon_sym_remove] = ACTIONS(329), + [anon_sym_reduce] = ACTIONS(331), + [anon_sym_select] = ACTIONS(333), + [anon_sym_insert] = ACTIONS(335), + [anon_sym_async] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(341), + [anon_sym_assert_equal] = ACTIONS(341), + [anon_sym_download] = ACTIONS(341), + [anon_sym_help] = ACTIONS(341), + [anon_sym_length] = ACTIONS(341), + [anon_sym_output] = ACTIONS(341), + [anon_sym_output_error] = ACTIONS(341), + [anon_sym_type] = ACTIONS(341), + [anon_sym_append] = ACTIONS(341), + [anon_sym_metadata] = ACTIONS(341), + [anon_sym_move] = ACTIONS(341), + [anon_sym_read] = ACTIONS(341), + [anon_sym_workdir] = ACTIONS(341), + [anon_sym_write] = ACTIONS(341), + [anon_sym_from_json] = ACTIONS(341), + [anon_sym_to_json] = ACTIONS(341), + [anon_sym_to_string] = ACTIONS(341), + [anon_sym_to_float] = ACTIONS(341), + [anon_sym_bash] = ACTIONS(341), + [anon_sym_fish] = ACTIONS(341), + [anon_sym_raw] = ACTIONS(341), + [anon_sym_sh] = ACTIONS(341), + [anon_sym_zsh] = ACTIONS(341), + [anon_sym_random] = ACTIONS(341), + [anon_sym_random_boolean] = ACTIONS(341), + [anon_sym_random_float] = ACTIONS(341), + [anon_sym_random_integer] = ACTIONS(341), + [anon_sym_columns] = ACTIONS(341), + [anon_sym_rows] = ACTIONS(341), + [anon_sym_reverse] = ACTIONS(341), }, [214] = { - [sym_expression] = STATE(443), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(212), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1253), - [anon_sym_COMMA] = ACTIONS(1253), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1253), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_transform] = ACTIONS(1255), - [anon_sym_filter] = ACTIONS(1255), - [anon_sym_find] = ACTIONS(1255), - [anon_sym_remove] = ACTIONS(1255), - [anon_sym_reduce] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1255), - [anon_sym_insert] = ACTIONS(1255), - [anon_sym_async] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_block] = STATE(630), + [sym_statement] = STATE(27), + [sym_expression] = STATE(663), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(637), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1998), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(296), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(313), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_asyncfor] = ACTIONS(321), + [anon_sym_transform] = ACTIONS(323), + [anon_sym_filter] = ACTIONS(325), + [anon_sym_find] = ACTIONS(327), + [anon_sym_remove] = ACTIONS(329), + [anon_sym_reduce] = ACTIONS(331), + [anon_sym_select] = ACTIONS(333), + [anon_sym_insert] = ACTIONS(335), + [anon_sym_async] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(341), + [anon_sym_assert_equal] = ACTIONS(341), + [anon_sym_download] = ACTIONS(341), + [anon_sym_help] = ACTIONS(341), + [anon_sym_length] = ACTIONS(341), + [anon_sym_output] = ACTIONS(341), + [anon_sym_output_error] = ACTIONS(341), + [anon_sym_type] = ACTIONS(341), + [anon_sym_append] = ACTIONS(341), + [anon_sym_metadata] = ACTIONS(341), + [anon_sym_move] = ACTIONS(341), + [anon_sym_read] = ACTIONS(341), + [anon_sym_workdir] = ACTIONS(341), + [anon_sym_write] = ACTIONS(341), + [anon_sym_from_json] = ACTIONS(341), + [anon_sym_to_json] = ACTIONS(341), + [anon_sym_to_string] = ACTIONS(341), + [anon_sym_to_float] = ACTIONS(341), + [anon_sym_bash] = ACTIONS(341), + [anon_sym_fish] = ACTIONS(341), + [anon_sym_raw] = ACTIONS(341), + [anon_sym_sh] = ACTIONS(341), + [anon_sym_zsh] = ACTIONS(341), + [anon_sym_random] = ACTIONS(341), + [anon_sym_random_boolean] = ACTIONS(341), + [anon_sym_random_float] = ACTIONS(341), + [anon_sym_random_integer] = ACTIONS(341), + [anon_sym_columns] = ACTIONS(341), + [anon_sym_rows] = ACTIONS(341), + [anon_sym_reverse] = ACTIONS(341), }, [215] = { - [sym_expression] = STATE(961), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(218), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1294), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(639), + [sym_statement] = STATE(12), + [sym_expression] = STATE(583), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(567), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [aux_sym_block_repeat1] = STATE(12), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_asyncfor] = ACTIONS(127), + [anon_sym_transform] = ACTIONS(129), + [anon_sym_filter] = ACTIONS(131), + [anon_sym_find] = ACTIONS(133), + [anon_sym_remove] = ACTIONS(135), + [anon_sym_reduce] = ACTIONS(137), + [anon_sym_select] = ACTIONS(139), + [anon_sym_insert] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [216] = { - [sym_expression] = STATE(444), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(219), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1253), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_transform] = ACTIONS(1255), - [anon_sym_filter] = ACTIONS(1255), - [anon_sym_find] = ACTIONS(1255), - [anon_sym_remove] = ACTIONS(1255), - [anon_sym_reduce] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1255), - [anon_sym_insert] = ACTIONS(1255), - [anon_sym_async] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [sym_block] = STATE(1024), + [sym_statement] = STATE(352), + [sym_expression] = STATE(877), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(782), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(978), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1639), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_asyncfor] = ACTIONS(1647), + [anon_sym_transform] = ACTIONS(1649), + [anon_sym_filter] = ACTIONS(1651), + [anon_sym_find] = ACTIONS(1653), + [anon_sym_remove] = ACTIONS(1655), + [anon_sym_reduce] = ACTIONS(1657), + [anon_sym_select] = ACTIONS(1659), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [217] = { - [sym_expression] = STATE(444), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(217), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1368), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_RPAREN] = ACTIONS(1322), - [sym_integer] = ACTIONS(1377), - [sym_float] = ACTIONS(1380), - [sym_string] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_EQ_GT] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_transform] = ACTIONS(1345), - [anon_sym_filter] = ACTIONS(1345), - [anon_sym_find] = ACTIONS(1345), - [anon_sym_remove] = ACTIONS(1345), - [anon_sym_reduce] = ACTIONS(1345), - [anon_sym_select] = ACTIONS(1345), - [anon_sym_insert] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1392), - [anon_sym_assert] = ACTIONS(1395), - [anon_sym_assert_equal] = ACTIONS(1395), - [anon_sym_download] = ACTIONS(1395), - [anon_sym_help] = ACTIONS(1395), - [anon_sym_length] = ACTIONS(1395), - [anon_sym_output] = ACTIONS(1395), - [anon_sym_output_error] = ACTIONS(1395), - [anon_sym_type] = ACTIONS(1395), - [anon_sym_append] = ACTIONS(1395), - [anon_sym_metadata] = ACTIONS(1395), - [anon_sym_move] = ACTIONS(1395), - [anon_sym_read] = ACTIONS(1395), - [anon_sym_workdir] = ACTIONS(1395), - [anon_sym_write] = ACTIONS(1395), - [anon_sym_from_json] = ACTIONS(1395), - [anon_sym_to_json] = ACTIONS(1395), - [anon_sym_to_string] = ACTIONS(1395), - [anon_sym_to_float] = ACTIONS(1395), - [anon_sym_bash] = ACTIONS(1395), - [anon_sym_fish] = ACTIONS(1395), - [anon_sym_raw] = ACTIONS(1395), - [anon_sym_sh] = ACTIONS(1395), - [anon_sym_zsh] = ACTIONS(1395), - [anon_sym_random] = ACTIONS(1395), - [anon_sym_random_boolean] = ACTIONS(1395), - [anon_sym_random_float] = ACTIONS(1395), - [anon_sym_random_integer] = ACTIONS(1395), - [anon_sym_columns] = ACTIONS(1395), - [anon_sym_rows] = ACTIONS(1395), - [anon_sym_reverse] = ACTIONS(1395), + [sym_block] = STATE(630), + [sym_statement] = STATE(12), + [sym_expression] = STATE(583), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(567), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [aux_sym_block_repeat1] = STATE(12), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_asyncfor] = ACTIONS(127), + [anon_sym_transform] = ACTIONS(129), + [anon_sym_filter] = ACTIONS(131), + [anon_sym_find] = ACTIONS(133), + [anon_sym_remove] = ACTIONS(135), + [anon_sym_reduce] = ACTIONS(137), + [anon_sym_select] = ACTIONS(139), + [anon_sym_insert] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [218] = { - [sym_expression] = STATE(961), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(218), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1257), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_PERCENT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [sym_block] = STATE(731), + [sym_statement] = STATE(17), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [219] = { - [sym_expression] = STATE(444), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(217), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), + [sym_block] = STATE(871), + [sym_statement] = STATE(57), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1318), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), [sym_string] = ACTIONS(13), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_transform] = ACTIONS(1320), - [anon_sym_filter] = ACTIONS(1320), - [anon_sym_find] = ACTIONS(1320), - [anon_sym_remove] = ACTIONS(1320), - [anon_sym_reduce] = ACTIONS(1320), - [anon_sym_select] = ACTIONS(1320), - [anon_sym_insert] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [220] = { - [sym_expression] = STATE(444), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(217), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1245), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_transform] = ACTIONS(1251), - [anon_sym_filter] = ACTIONS(1251), - [anon_sym_find] = ACTIONS(1251), - [anon_sym_remove] = ACTIONS(1251), - [anon_sym_reduce] = ACTIONS(1251), - [anon_sym_select] = ACTIONS(1251), - [anon_sym_insert] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [sym_block] = STATE(639), + [sym_statement] = STATE(21), + [sym_expression] = STATE(593), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(584), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1776), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(286), + [aux_sym_block_repeat1] = STATE(21), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(201), + [anon_sym_while] = ACTIONS(203), + [anon_sym_for] = ACTIONS(205), + [anon_sym_asyncfor] = ACTIONS(207), + [anon_sym_transform] = ACTIONS(209), + [anon_sym_filter] = ACTIONS(211), + [anon_sym_find] = ACTIONS(213), + [anon_sym_remove] = ACTIONS(215), + [anon_sym_reduce] = ACTIONS(217), + [anon_sym_select] = ACTIONS(219), + [anon_sym_insert] = ACTIONS(221), + [anon_sym_async] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_assert_equal] = ACTIONS(227), + [anon_sym_download] = ACTIONS(227), + [anon_sym_help] = ACTIONS(227), + [anon_sym_length] = ACTIONS(227), + [anon_sym_output] = ACTIONS(227), + [anon_sym_output_error] = ACTIONS(227), + [anon_sym_type] = ACTIONS(227), + [anon_sym_append] = ACTIONS(227), + [anon_sym_metadata] = ACTIONS(227), + [anon_sym_move] = ACTIONS(227), + [anon_sym_read] = ACTIONS(227), + [anon_sym_workdir] = ACTIONS(227), + [anon_sym_write] = ACTIONS(227), + [anon_sym_from_json] = ACTIONS(227), + [anon_sym_to_json] = ACTIONS(227), + [anon_sym_to_string] = ACTIONS(227), + [anon_sym_to_float] = ACTIONS(227), + [anon_sym_bash] = ACTIONS(227), + [anon_sym_fish] = ACTIONS(227), + [anon_sym_raw] = ACTIONS(227), + [anon_sym_sh] = ACTIONS(227), + [anon_sym_zsh] = ACTIONS(227), + [anon_sym_random] = ACTIONS(227), + [anon_sym_random_boolean] = ACTIONS(227), + [anon_sym_random_float] = ACTIONS(227), + [anon_sym_random_integer] = ACTIONS(227), + [anon_sym_columns] = ACTIONS(227), + [anon_sym_rows] = ACTIONS(227), + [anon_sym_reverse] = ACTIONS(227), }, [221] = { - [sym_expression] = STATE(479), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(223), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), + [sym_block] = STATE(1056), + [sym_statement] = STATE(382), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(382), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1253), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), [sym_string] = ACTIONS(13), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_transform] = ACTIONS(1255), - [anon_sym_filter] = ACTIONS(1255), - [anon_sym_find] = ACTIONS(1255), - [anon_sym_remove] = ACTIONS(1255), - [anon_sym_reduce] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1255), - [anon_sym_insert] = ACTIONS(1255), - [anon_sym_async] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [222] = { - [sym_expression] = STATE(973), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(222), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1257), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_PERCENT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [sym_block] = STATE(1026), + [sym_statement] = STATE(352), + [sym_expression] = STATE(877), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(782), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(978), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1639), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_asyncfor] = ACTIONS(1647), + [anon_sym_transform] = ACTIONS(1649), + [anon_sym_filter] = ACTIONS(1651), + [anon_sym_find] = ACTIONS(1653), + [anon_sym_remove] = ACTIONS(1655), + [anon_sym_reduce] = ACTIONS(1657), + [anon_sym_select] = ACTIONS(1659), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [223] = { - [sym_expression] = STATE(479), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(231), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), + [sym_block] = STATE(1061), + [sym_statement] = STATE(382), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(382), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1318), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), [sym_string] = ACTIONS(13), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_transform] = ACTIONS(1320), - [anon_sym_filter] = ACTIONS(1320), - [anon_sym_find] = ACTIONS(1320), - [anon_sym_remove] = ACTIONS(1320), - [anon_sym_reduce] = ACTIONS(1320), - [anon_sym_select] = ACTIONS(1320), - [anon_sym_insert] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [224] = { - [sym_block] = STATE(224), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_root_repeat1] = STATE(224), - [aux_sym_block_repeat1] = STATE(226), - [ts_builtin_sym_end] = ACTIONS(1561), - [sym_identifier] = ACTIONS(1563), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1569), - [sym_integer] = ACTIONS(1572), - [sym_float] = ACTIONS(1575), - [sym_string] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1578), - [anon_sym_false] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_match] = ACTIONS(1587), - [anon_sym_EQ_GT] = ACTIONS(1590), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_transform] = ACTIONS(1599), - [anon_sym_filter] = ACTIONS(1602), - [anon_sym_find] = ACTIONS(1605), - [anon_sym_remove] = ACTIONS(1608), - [anon_sym_reduce] = ACTIONS(1611), - [anon_sym_select] = ACTIONS(1614), - [anon_sym_insert] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1620), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_table] = ACTIONS(1626), - [anon_sym_assert] = ACTIONS(1629), - [anon_sym_assert_equal] = ACTIONS(1629), - [anon_sym_download] = ACTIONS(1629), - [anon_sym_help] = ACTIONS(1629), - [anon_sym_length] = ACTIONS(1629), - [anon_sym_output] = ACTIONS(1629), - [anon_sym_output_error] = ACTIONS(1629), - [anon_sym_type] = ACTIONS(1629), - [anon_sym_append] = ACTIONS(1629), - [anon_sym_metadata] = ACTIONS(1629), - [anon_sym_move] = ACTIONS(1629), - [anon_sym_read] = ACTIONS(1629), - [anon_sym_workdir] = ACTIONS(1629), - [anon_sym_write] = ACTIONS(1629), - [anon_sym_from_json] = ACTIONS(1629), - [anon_sym_to_json] = ACTIONS(1629), - [anon_sym_to_string] = ACTIONS(1629), - [anon_sym_to_float] = ACTIONS(1629), - [anon_sym_bash] = ACTIONS(1629), - [anon_sym_fish] = ACTIONS(1629), - [anon_sym_raw] = ACTIONS(1629), - [anon_sym_sh] = ACTIONS(1629), - [anon_sym_zsh] = ACTIONS(1629), - [anon_sym_random] = ACTIONS(1629), - [anon_sym_random_boolean] = ACTIONS(1629), - [anon_sym_random_float] = ACTIONS(1629), - [anon_sym_random_integer] = ACTIONS(1629), - [anon_sym_columns] = ACTIONS(1629), - [anon_sym_rows] = ACTIONS(1629), - [anon_sym_reverse] = ACTIONS(1629), + [sym_block] = STATE(719), + [sym_statement] = STATE(45), + [sym_expression] = STATE(795), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(611), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(2015), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(325), + [aux_sym_block_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(913), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_while] = ACTIONS(917), + [anon_sym_for] = ACTIONS(919), + [anon_sym_asyncfor] = ACTIONS(921), + [anon_sym_transform] = ACTIONS(923), + [anon_sym_filter] = ACTIONS(925), + [anon_sym_find] = ACTIONS(927), + [anon_sym_remove] = ACTIONS(929), + [anon_sym_reduce] = ACTIONS(931), + [anon_sym_select] = ACTIONS(933), + [anon_sym_insert] = ACTIONS(935), + [anon_sym_async] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(939), + [anon_sym_assert] = ACTIONS(941), + [anon_sym_assert_equal] = ACTIONS(941), + [anon_sym_download] = ACTIONS(941), + [anon_sym_help] = ACTIONS(941), + [anon_sym_length] = ACTIONS(941), + [anon_sym_output] = ACTIONS(941), + [anon_sym_output_error] = ACTIONS(941), + [anon_sym_type] = ACTIONS(941), + [anon_sym_append] = ACTIONS(941), + [anon_sym_metadata] = ACTIONS(941), + [anon_sym_move] = ACTIONS(941), + [anon_sym_read] = ACTIONS(941), + [anon_sym_workdir] = ACTIONS(941), + [anon_sym_write] = ACTIONS(941), + [anon_sym_from_json] = ACTIONS(941), + [anon_sym_to_json] = ACTIONS(941), + [anon_sym_to_string] = ACTIONS(941), + [anon_sym_to_float] = ACTIONS(941), + [anon_sym_bash] = ACTIONS(941), + [anon_sym_fish] = ACTIONS(941), + [anon_sym_raw] = ACTIONS(941), + [anon_sym_sh] = ACTIONS(941), + [anon_sym_zsh] = ACTIONS(941), + [anon_sym_random] = ACTIONS(941), + [anon_sym_random_boolean] = ACTIONS(941), + [anon_sym_random_float] = ACTIONS(941), + [anon_sym_random_integer] = ACTIONS(941), + [anon_sym_columns] = ACTIONS(941), + [anon_sym_rows] = ACTIONS(941), + [anon_sym_reverse] = ACTIONS(941), }, [225] = { - [sym_statement] = STATE(225), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(225), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(1632), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(766), - [sym_integer] = ACTIONS(769), - [sym_float] = ACTIONS(772), - [sym_string] = ACTIONS(772), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_match] = ACTIONS(1635), - [anon_sym_EQ_GT] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1638), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_transform] = ACTIONS(1644), - [anon_sym_filter] = ACTIONS(1647), - [anon_sym_find] = ACTIONS(1650), - [anon_sym_remove] = ACTIONS(1653), - [anon_sym_reduce] = ACTIONS(1656), - [anon_sym_select] = ACTIONS(1659), - [anon_sym_insert] = ACTIONS(1225), - [anon_sym_async] = ACTIONS(1662), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_table] = ACTIONS(1231), - [anon_sym_assert] = ACTIONS(1234), - [anon_sym_assert_equal] = ACTIONS(1234), - [anon_sym_download] = ACTIONS(1234), - [anon_sym_help] = ACTIONS(1234), - [anon_sym_length] = ACTIONS(1234), - [anon_sym_output] = ACTIONS(1234), - [anon_sym_output_error] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_append] = ACTIONS(1234), - [anon_sym_metadata] = ACTIONS(1234), - [anon_sym_move] = ACTIONS(1234), - [anon_sym_read] = ACTIONS(1234), - [anon_sym_workdir] = ACTIONS(1234), - [anon_sym_write] = ACTIONS(1234), - [anon_sym_from_json] = ACTIONS(1234), - [anon_sym_to_json] = ACTIONS(1234), - [anon_sym_to_string] = ACTIONS(1234), - [anon_sym_to_float] = ACTIONS(1234), - [anon_sym_bash] = ACTIONS(1234), - [anon_sym_fish] = ACTIONS(1234), - [anon_sym_raw] = ACTIONS(1234), - [anon_sym_sh] = ACTIONS(1234), - [anon_sym_zsh] = ACTIONS(1234), - [anon_sym_random] = ACTIONS(1234), - [anon_sym_random_boolean] = ACTIONS(1234), - [anon_sym_random_float] = ACTIONS(1234), - [anon_sym_random_integer] = ACTIONS(1234), - [anon_sym_columns] = ACTIONS(1234), - [anon_sym_rows] = ACTIONS(1234), - [anon_sym_reverse] = ACTIONS(1234), + [sym_block] = STATE(729), + [sym_statement] = STATE(17), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [226] = { - [sym_statement] = STATE(225), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(225), - [ts_builtin_sym_end] = ACTIONS(318), - [sym_identifier] = ACTIONS(1665), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(655), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1668), - [anon_sym_EQ_GT] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1671), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_transform] = ACTIONS(1677), - [anon_sym_filter] = ACTIONS(1680), - [anon_sym_find] = ACTIONS(1683), - [anon_sym_remove] = ACTIONS(1686), - [anon_sym_reduce] = ACTIONS(1689), - [anon_sym_select] = ACTIONS(1692), - [anon_sym_insert] = ACTIONS(1180), - [anon_sym_async] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_table] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1189), - [anon_sym_assert_equal] = ACTIONS(1189), - [anon_sym_download] = ACTIONS(1189), - [anon_sym_help] = ACTIONS(1189), - [anon_sym_length] = ACTIONS(1189), - [anon_sym_output] = ACTIONS(1189), - [anon_sym_output_error] = ACTIONS(1189), - [anon_sym_type] = ACTIONS(1189), - [anon_sym_append] = ACTIONS(1189), - [anon_sym_metadata] = ACTIONS(1189), - [anon_sym_move] = ACTIONS(1189), - [anon_sym_read] = ACTIONS(1189), - [anon_sym_workdir] = ACTIONS(1189), - [anon_sym_write] = ACTIONS(1189), - [anon_sym_from_json] = ACTIONS(1189), - [anon_sym_to_json] = ACTIONS(1189), - [anon_sym_to_string] = ACTIONS(1189), - [anon_sym_to_float] = ACTIONS(1189), - [anon_sym_bash] = ACTIONS(1189), - [anon_sym_fish] = ACTIONS(1189), - [anon_sym_raw] = ACTIONS(1189), - [anon_sym_sh] = ACTIONS(1189), - [anon_sym_zsh] = ACTIONS(1189), - [anon_sym_random] = ACTIONS(1189), - [anon_sym_random_boolean] = ACTIONS(1189), - [anon_sym_random_float] = ACTIONS(1189), - [anon_sym_random_integer] = ACTIONS(1189), - [anon_sym_columns] = ACTIONS(1189), - [anon_sym_rows] = ACTIONS(1189), - [anon_sym_reverse] = ACTIONS(1189), + [sym_block] = STATE(880), + [sym_statement] = STATE(39), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(39), + [sym_identifier] = ACTIONS(875), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), }, [227] = { - [sym_block] = STATE(224), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_root_repeat1] = STATE(224), - [aux_sym_block_repeat1] = STATE(226), - [ts_builtin_sym_end] = ACTIONS(1698), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_block] = STATE(728), + [sym_statement] = STATE(45), + [sym_expression] = STATE(795), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(611), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(2015), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(325), + [aux_sym_block_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(913), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_while] = ACTIONS(917), + [anon_sym_for] = ACTIONS(919), + [anon_sym_asyncfor] = ACTIONS(921), + [anon_sym_transform] = ACTIONS(923), + [anon_sym_filter] = ACTIONS(925), + [anon_sym_find] = ACTIONS(927), + [anon_sym_remove] = ACTIONS(929), + [anon_sym_reduce] = ACTIONS(931), + [anon_sym_select] = ACTIONS(933), + [anon_sym_insert] = ACTIONS(935), + [anon_sym_async] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(939), + [anon_sym_assert] = ACTIONS(941), + [anon_sym_assert_equal] = ACTIONS(941), + [anon_sym_download] = ACTIONS(941), + [anon_sym_help] = ACTIONS(941), + [anon_sym_length] = ACTIONS(941), + [anon_sym_output] = ACTIONS(941), + [anon_sym_output_error] = ACTIONS(941), + [anon_sym_type] = ACTIONS(941), + [anon_sym_append] = ACTIONS(941), + [anon_sym_metadata] = ACTIONS(941), + [anon_sym_move] = ACTIONS(941), + [anon_sym_read] = ACTIONS(941), + [anon_sym_workdir] = ACTIONS(941), + [anon_sym_write] = ACTIONS(941), + [anon_sym_from_json] = ACTIONS(941), + [anon_sym_to_json] = ACTIONS(941), + [anon_sym_to_string] = ACTIONS(941), + [anon_sym_to_float] = ACTIONS(941), + [anon_sym_bash] = ACTIONS(941), + [anon_sym_fish] = ACTIONS(941), + [anon_sym_raw] = ACTIONS(941), + [anon_sym_sh] = ACTIONS(941), + [anon_sym_zsh] = ACTIONS(941), + [anon_sym_random] = ACTIONS(941), + [anon_sym_random_boolean] = ACTIONS(941), + [anon_sym_random_float] = ACTIONS(941), + [anon_sym_random_integer] = ACTIONS(941), + [anon_sym_columns] = ACTIONS(941), + [anon_sym_rows] = ACTIONS(941), + [anon_sym_reverse] = ACTIONS(941), }, [228] = { - [sym_statement] = STATE(228), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1700), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(213), - [sym_integer] = ACTIONS(769), - [sym_float] = ACTIONS(772), - [sym_string] = ACTIONS(772), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_if] = ACTIONS(1403), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_EQ_GT] = ACTIONS(971), - [anon_sym_while] = ACTIONS(1706), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_transform] = ACTIONS(1712), - [anon_sym_filter] = ACTIONS(1715), - [anon_sym_find] = ACTIONS(1718), - [anon_sym_remove] = ACTIONS(1721), - [anon_sym_reduce] = ACTIONS(1724), - [anon_sym_select] = ACTIONS(1727), - [anon_sym_insert] = ACTIONS(998), - [anon_sym_async] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_table] = ACTIONS(1004), - [anon_sym_assert] = ACTIONS(1007), - [anon_sym_assert_equal] = ACTIONS(1007), - [anon_sym_download] = ACTIONS(1007), - [anon_sym_help] = ACTIONS(1007), - [anon_sym_length] = ACTIONS(1007), - [anon_sym_output] = ACTIONS(1007), - [anon_sym_output_error] = ACTIONS(1007), - [anon_sym_type] = ACTIONS(1007), - [anon_sym_append] = ACTIONS(1007), - [anon_sym_metadata] = ACTIONS(1007), - [anon_sym_move] = ACTIONS(1007), - [anon_sym_read] = ACTIONS(1007), - [anon_sym_workdir] = ACTIONS(1007), - [anon_sym_write] = ACTIONS(1007), - [anon_sym_from_json] = ACTIONS(1007), - [anon_sym_to_json] = ACTIONS(1007), - [anon_sym_to_string] = ACTIONS(1007), - [anon_sym_to_float] = ACTIONS(1007), - [anon_sym_bash] = ACTIONS(1007), - [anon_sym_fish] = ACTIONS(1007), - [anon_sym_raw] = ACTIONS(1007), - [anon_sym_sh] = ACTIONS(1007), - [anon_sym_zsh] = ACTIONS(1007), - [anon_sym_random] = ACTIONS(1007), - [anon_sym_random_boolean] = ACTIONS(1007), - [anon_sym_random_float] = ACTIONS(1007), - [anon_sym_random_integer] = ACTIONS(1007), - [anon_sym_columns] = ACTIONS(1007), - [anon_sym_rows] = ACTIONS(1007), - [anon_sym_reverse] = ACTIONS(1007), + [sym_block] = STATE(729), + [sym_statement] = STATE(45), + [sym_expression] = STATE(795), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(611), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(2015), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(325), + [aux_sym_block_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(913), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_while] = ACTIONS(917), + [anon_sym_for] = ACTIONS(919), + [anon_sym_asyncfor] = ACTIONS(921), + [anon_sym_transform] = ACTIONS(923), + [anon_sym_filter] = ACTIONS(925), + [anon_sym_find] = ACTIONS(927), + [anon_sym_remove] = ACTIONS(929), + [anon_sym_reduce] = ACTIONS(931), + [anon_sym_select] = ACTIONS(933), + [anon_sym_insert] = ACTIONS(935), + [anon_sym_async] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(939), + [anon_sym_assert] = ACTIONS(941), + [anon_sym_assert_equal] = ACTIONS(941), + [anon_sym_download] = ACTIONS(941), + [anon_sym_help] = ACTIONS(941), + [anon_sym_length] = ACTIONS(941), + [anon_sym_output] = ACTIONS(941), + [anon_sym_output_error] = ACTIONS(941), + [anon_sym_type] = ACTIONS(941), + [anon_sym_append] = ACTIONS(941), + [anon_sym_metadata] = ACTIONS(941), + [anon_sym_move] = ACTIONS(941), + [anon_sym_read] = ACTIONS(941), + [anon_sym_workdir] = ACTIONS(941), + [anon_sym_write] = ACTIONS(941), + [anon_sym_from_json] = ACTIONS(941), + [anon_sym_to_json] = ACTIONS(941), + [anon_sym_to_string] = ACTIONS(941), + [anon_sym_to_float] = ACTIONS(941), + [anon_sym_bash] = ACTIONS(941), + [anon_sym_fish] = ACTIONS(941), + [anon_sym_raw] = ACTIONS(941), + [anon_sym_sh] = ACTIONS(941), + [anon_sym_zsh] = ACTIONS(941), + [anon_sym_random] = ACTIONS(941), + [anon_sym_random_boolean] = ACTIONS(941), + [anon_sym_random_float] = ACTIONS(941), + [anon_sym_random_integer] = ACTIONS(941), + [anon_sym_columns] = ACTIONS(941), + [anon_sym_rows] = ACTIONS(941), + [anon_sym_reverse] = ACTIONS(941), }, [229] = { - [sym_statement] = STATE(228), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1733), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(318), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1736), - [anon_sym_EQ_GT] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1742), - [anon_sym_transform] = ACTIONS(1745), - [anon_sym_filter] = ACTIONS(1748), - [anon_sym_find] = ACTIONS(1751), - [anon_sym_remove] = ACTIONS(1754), - [anon_sym_reduce] = ACTIONS(1757), - [anon_sym_select] = ACTIONS(1760), - [anon_sym_insert] = ACTIONS(1043), - [anon_sym_async] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_table] = ACTIONS(1049), - [anon_sym_assert] = ACTIONS(1052), - [anon_sym_assert_equal] = ACTIONS(1052), - [anon_sym_download] = ACTIONS(1052), - [anon_sym_help] = ACTIONS(1052), - [anon_sym_length] = ACTIONS(1052), - [anon_sym_output] = ACTIONS(1052), - [anon_sym_output_error] = ACTIONS(1052), - [anon_sym_type] = ACTIONS(1052), - [anon_sym_append] = ACTIONS(1052), - [anon_sym_metadata] = ACTIONS(1052), - [anon_sym_move] = ACTIONS(1052), - [anon_sym_read] = ACTIONS(1052), - [anon_sym_workdir] = ACTIONS(1052), - [anon_sym_write] = ACTIONS(1052), - [anon_sym_from_json] = ACTIONS(1052), - [anon_sym_to_json] = ACTIONS(1052), - [anon_sym_to_string] = ACTIONS(1052), - [anon_sym_to_float] = ACTIONS(1052), - [anon_sym_bash] = ACTIONS(1052), - [anon_sym_fish] = ACTIONS(1052), - [anon_sym_raw] = ACTIONS(1052), - [anon_sym_sh] = ACTIONS(1052), - [anon_sym_zsh] = ACTIONS(1052), - [anon_sym_random] = ACTIONS(1052), - [anon_sym_random_boolean] = ACTIONS(1052), - [anon_sym_random_float] = ACTIONS(1052), - [anon_sym_random_integer] = ACTIONS(1052), - [anon_sym_columns] = ACTIONS(1052), - [anon_sym_rows] = ACTIONS(1052), - [anon_sym_reverse] = ACTIONS(1052), + [sym_block] = STATE(873), + [sym_statement] = STATE(57), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [230] = { - [sym_expression] = STATE(973), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(222), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1294), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(719), + [sym_statement] = STATE(24), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(24), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [231] = { - [sym_expression] = STATE(479), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(231), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1368), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_RPAREN] = ACTIONS(1322), - [sym_integer] = ACTIONS(1377), - [sym_float] = ACTIONS(1380), - [sym_string] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_EQ_GT] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_transform] = ACTIONS(1345), - [anon_sym_filter] = ACTIONS(1345), - [anon_sym_find] = ACTIONS(1345), - [anon_sym_remove] = ACTIONS(1345), - [anon_sym_reduce] = ACTIONS(1345), - [anon_sym_select] = ACTIONS(1345), - [anon_sym_insert] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1481), - [anon_sym_assert] = ACTIONS(1484), - [anon_sym_assert_equal] = ACTIONS(1484), - [anon_sym_download] = ACTIONS(1484), - [anon_sym_help] = ACTIONS(1484), - [anon_sym_length] = ACTIONS(1484), - [anon_sym_output] = ACTIONS(1484), - [anon_sym_output_error] = ACTIONS(1484), - [anon_sym_type] = ACTIONS(1484), - [anon_sym_append] = ACTIONS(1484), - [anon_sym_metadata] = ACTIONS(1484), - [anon_sym_move] = ACTIONS(1484), - [anon_sym_read] = ACTIONS(1484), - [anon_sym_workdir] = ACTIONS(1484), - [anon_sym_write] = ACTIONS(1484), - [anon_sym_from_json] = ACTIONS(1484), - [anon_sym_to_json] = ACTIONS(1484), - [anon_sym_to_string] = ACTIONS(1484), - [anon_sym_to_float] = ACTIONS(1484), - [anon_sym_bash] = ACTIONS(1484), - [anon_sym_fish] = ACTIONS(1484), - [anon_sym_raw] = ACTIONS(1484), - [anon_sym_sh] = ACTIONS(1484), - [anon_sym_zsh] = ACTIONS(1484), - [anon_sym_random] = ACTIONS(1484), - [anon_sym_random_boolean] = ACTIONS(1484), - [anon_sym_random_float] = ACTIONS(1484), - [anon_sym_random_integer] = ACTIONS(1484), - [anon_sym_columns] = ACTIONS(1484), - [anon_sym_rows] = ACTIONS(1484), - [anon_sym_reverse] = ACTIONS(1484), + [sym_block] = STATE(731), + [sym_statement] = STATE(45), + [sym_expression] = STATE(795), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(611), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(2015), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(325), + [aux_sym_block_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(913), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_while] = ACTIONS(917), + [anon_sym_for] = ACTIONS(919), + [anon_sym_asyncfor] = ACTIONS(921), + [anon_sym_transform] = ACTIONS(923), + [anon_sym_filter] = ACTIONS(925), + [anon_sym_find] = ACTIONS(927), + [anon_sym_remove] = ACTIONS(929), + [anon_sym_reduce] = ACTIONS(931), + [anon_sym_select] = ACTIONS(933), + [anon_sym_insert] = ACTIONS(935), + [anon_sym_async] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(939), + [anon_sym_assert] = ACTIONS(941), + [anon_sym_assert_equal] = ACTIONS(941), + [anon_sym_download] = ACTIONS(941), + [anon_sym_help] = ACTIONS(941), + [anon_sym_length] = ACTIONS(941), + [anon_sym_output] = ACTIONS(941), + [anon_sym_output_error] = ACTIONS(941), + [anon_sym_type] = ACTIONS(941), + [anon_sym_append] = ACTIONS(941), + [anon_sym_metadata] = ACTIONS(941), + [anon_sym_move] = ACTIONS(941), + [anon_sym_read] = ACTIONS(941), + [anon_sym_workdir] = ACTIONS(941), + [anon_sym_write] = ACTIONS(941), + [anon_sym_from_json] = ACTIONS(941), + [anon_sym_to_json] = ACTIONS(941), + [anon_sym_to_string] = ACTIONS(941), + [anon_sym_to_float] = ACTIONS(941), + [anon_sym_bash] = ACTIONS(941), + [anon_sym_fish] = ACTIONS(941), + [anon_sym_raw] = ACTIONS(941), + [anon_sym_sh] = ACTIONS(941), + [anon_sym_zsh] = ACTIONS(941), + [anon_sym_random] = ACTIONS(941), + [anon_sym_random_boolean] = ACTIONS(941), + [anon_sym_random_float] = ACTIONS(941), + [anon_sym_random_integer] = ACTIONS(941), + [anon_sym_columns] = ACTIONS(941), + [anon_sym_rows] = ACTIONS(941), + [anon_sym_reverse] = ACTIONS(941), }, [232] = { - [sym_statement] = STATE(228), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1733), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(318), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_table] = ACTIONS(1049), - [anon_sym_assert] = ACTIONS(1052), - [anon_sym_assert_equal] = ACTIONS(1052), - [anon_sym_download] = ACTIONS(1052), - [anon_sym_help] = ACTIONS(1052), - [anon_sym_length] = ACTIONS(1052), - [anon_sym_output] = ACTIONS(1052), - [anon_sym_output_error] = ACTIONS(1052), - [anon_sym_type] = ACTIONS(1052), - [anon_sym_append] = ACTIONS(1052), - [anon_sym_metadata] = ACTIONS(1052), - [anon_sym_move] = ACTIONS(1052), - [anon_sym_read] = ACTIONS(1052), - [anon_sym_workdir] = ACTIONS(1052), - [anon_sym_write] = ACTIONS(1052), - [anon_sym_from_json] = ACTIONS(1052), - [anon_sym_to_json] = ACTIONS(1052), - [anon_sym_to_string] = ACTIONS(1052), - [anon_sym_to_float] = ACTIONS(1052), - [anon_sym_bash] = ACTIONS(1052), - [anon_sym_fish] = ACTIONS(1052), - [anon_sym_raw] = ACTIONS(1052), - [anon_sym_sh] = ACTIONS(1052), - [anon_sym_zsh] = ACTIONS(1052), - [anon_sym_random] = ACTIONS(1052), - [anon_sym_random_boolean] = ACTIONS(1052), - [anon_sym_random_float] = ACTIONS(1052), - [anon_sym_random_integer] = ACTIONS(1052), - [anon_sym_columns] = ACTIONS(1052), - [anon_sym_rows] = ACTIONS(1052), - [anon_sym_reverse] = ACTIONS(1052), + [sym_block] = STATE(873), + [sym_statement] = STATE(39), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(39), + [sym_identifier] = ACTIONS(875), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), }, [233] = { - [sym_expression] = STATE(479), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(231), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1245), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_transform] = ACTIONS(1251), - [anon_sym_filter] = ACTIONS(1251), - [anon_sym_find] = ACTIONS(1251), - [anon_sym_remove] = ACTIONS(1251), - [anon_sym_reduce] = ACTIONS(1251), - [anon_sym_select] = ACTIONS(1251), - [anon_sym_insert] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_block] = STATE(733), + [sym_statement] = STATE(45), + [sym_expression] = STATE(795), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(611), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(2015), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(325), + [aux_sym_block_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(913), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_while] = ACTIONS(917), + [anon_sym_for] = ACTIONS(919), + [anon_sym_asyncfor] = ACTIONS(921), + [anon_sym_transform] = ACTIONS(923), + [anon_sym_filter] = ACTIONS(925), + [anon_sym_find] = ACTIONS(927), + [anon_sym_remove] = ACTIONS(929), + [anon_sym_reduce] = ACTIONS(931), + [anon_sym_select] = ACTIONS(933), + [anon_sym_insert] = ACTIONS(935), + [anon_sym_async] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(939), + [anon_sym_assert] = ACTIONS(941), + [anon_sym_assert_equal] = ACTIONS(941), + [anon_sym_download] = ACTIONS(941), + [anon_sym_help] = ACTIONS(941), + [anon_sym_length] = ACTIONS(941), + [anon_sym_output] = ACTIONS(941), + [anon_sym_output_error] = ACTIONS(941), + [anon_sym_type] = ACTIONS(941), + [anon_sym_append] = ACTIONS(941), + [anon_sym_metadata] = ACTIONS(941), + [anon_sym_move] = ACTIONS(941), + [anon_sym_read] = ACTIONS(941), + [anon_sym_workdir] = ACTIONS(941), + [anon_sym_write] = ACTIONS(941), + [anon_sym_from_json] = ACTIONS(941), + [anon_sym_to_json] = ACTIONS(941), + [anon_sym_to_string] = ACTIONS(941), + [anon_sym_to_float] = ACTIONS(941), + [anon_sym_bash] = ACTIONS(941), + [anon_sym_fish] = ACTIONS(941), + [anon_sym_raw] = ACTIONS(941), + [anon_sym_sh] = ACTIONS(941), + [anon_sym_zsh] = ACTIONS(941), + [anon_sym_random] = ACTIONS(941), + [anon_sym_random_boolean] = ACTIONS(941), + [anon_sym_random_float] = ACTIONS(941), + [anon_sym_random_integer] = ACTIONS(941), + [anon_sym_columns] = ACTIONS(941), + [anon_sym_rows] = ACTIONS(941), + [anon_sym_reverse] = ACTIONS(941), }, [234] = { - [sym_statement] = STATE(228), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1733), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(318), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_block] = STATE(734), + [sym_statement] = STATE(45), + [sym_expression] = STATE(795), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(611), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(2015), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(325), + [aux_sym_block_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(913), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_while] = ACTIONS(917), + [anon_sym_for] = ACTIONS(919), + [anon_sym_asyncfor] = ACTIONS(921), + [anon_sym_transform] = ACTIONS(923), + [anon_sym_filter] = ACTIONS(925), + [anon_sym_find] = ACTIONS(927), + [anon_sym_remove] = ACTIONS(929), + [anon_sym_reduce] = ACTIONS(931), + [anon_sym_select] = ACTIONS(933), + [anon_sym_insert] = ACTIONS(935), + [anon_sym_async] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(939), + [anon_sym_assert] = ACTIONS(941), + [anon_sym_assert_equal] = ACTIONS(941), + [anon_sym_download] = ACTIONS(941), + [anon_sym_help] = ACTIONS(941), + [anon_sym_length] = ACTIONS(941), + [anon_sym_output] = ACTIONS(941), + [anon_sym_output_error] = ACTIONS(941), + [anon_sym_type] = ACTIONS(941), + [anon_sym_append] = ACTIONS(941), + [anon_sym_metadata] = ACTIONS(941), + [anon_sym_move] = ACTIONS(941), + [anon_sym_read] = ACTIONS(941), + [anon_sym_workdir] = ACTIONS(941), + [anon_sym_write] = ACTIONS(941), + [anon_sym_from_json] = ACTIONS(941), + [anon_sym_to_json] = ACTIONS(941), + [anon_sym_to_string] = ACTIONS(941), + [anon_sym_to_float] = ACTIONS(941), + [anon_sym_bash] = ACTIONS(941), + [anon_sym_fish] = ACTIONS(941), + [anon_sym_raw] = ACTIONS(941), + [anon_sym_sh] = ACTIONS(941), + [anon_sym_zsh] = ACTIONS(941), + [anon_sym_random] = ACTIONS(941), + [anon_sym_random_boolean] = ACTIONS(941), + [anon_sym_random_float] = ACTIONS(941), + [anon_sym_random_integer] = ACTIONS(941), + [anon_sym_columns] = ACTIONS(941), + [anon_sym_rows] = ACTIONS(941), + [anon_sym_reverse] = ACTIONS(941), }, [235] = { - [sym_statement] = STATE(258), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(258), - [aux_sym_map_repeat1] = STATE(995), - [sym_identifier] = ACTIONS(1766), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1768), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_block] = STATE(737), + [sym_statement] = STATE(45), + [sym_expression] = STATE(795), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(611), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(2015), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(325), + [aux_sym_block_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(913), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_while] = ACTIONS(917), + [anon_sym_for] = ACTIONS(919), + [anon_sym_asyncfor] = ACTIONS(921), + [anon_sym_transform] = ACTIONS(923), + [anon_sym_filter] = ACTIONS(925), + [anon_sym_find] = ACTIONS(927), + [anon_sym_remove] = ACTIONS(929), + [anon_sym_reduce] = ACTIONS(931), + [anon_sym_select] = ACTIONS(933), + [anon_sym_insert] = ACTIONS(935), + [anon_sym_async] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(939), + [anon_sym_assert] = ACTIONS(941), + [anon_sym_assert_equal] = ACTIONS(941), + [anon_sym_download] = ACTIONS(941), + [anon_sym_help] = ACTIONS(941), + [anon_sym_length] = ACTIONS(941), + [anon_sym_output] = ACTIONS(941), + [anon_sym_output_error] = ACTIONS(941), + [anon_sym_type] = ACTIONS(941), + [anon_sym_append] = ACTIONS(941), + [anon_sym_metadata] = ACTIONS(941), + [anon_sym_move] = ACTIONS(941), + [anon_sym_read] = ACTIONS(941), + [anon_sym_workdir] = ACTIONS(941), + [anon_sym_write] = ACTIONS(941), + [anon_sym_from_json] = ACTIONS(941), + [anon_sym_to_json] = ACTIONS(941), + [anon_sym_to_string] = ACTIONS(941), + [anon_sym_to_float] = ACTIONS(941), + [anon_sym_bash] = ACTIONS(941), + [anon_sym_fish] = ACTIONS(941), + [anon_sym_raw] = ACTIONS(941), + [anon_sym_sh] = ACTIONS(941), + [anon_sym_zsh] = ACTIONS(941), + [anon_sym_random] = ACTIONS(941), + [anon_sym_random_boolean] = ACTIONS(941), + [anon_sym_random_float] = ACTIONS(941), + [anon_sym_random_integer] = ACTIONS(941), + [anon_sym_columns] = ACTIONS(941), + [anon_sym_rows] = ACTIONS(941), + [anon_sym_reverse] = ACTIONS(941), }, [236] = { - [sym_statement] = STATE(311), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(311), - [aux_sym_map_repeat1] = STATE(995), - [sym_identifier] = ACTIONS(1766), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1768), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_block] = STATE(1031), + [sym_statement] = STATE(358), + [sym_expression] = STATE(859), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(754), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(985), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1566), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_asyncfor] = ACTIONS(1578), + [anon_sym_transform] = ACTIONS(1580), + [anon_sym_filter] = ACTIONS(1582), + [anon_sym_find] = ACTIONS(1584), + [anon_sym_remove] = ACTIONS(1586), + [anon_sym_reduce] = ACTIONS(1588), + [anon_sym_select] = ACTIONS(1590), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [237] = { - [sym_statement] = STATE(272), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(272), - [aux_sym_map_repeat1] = STATE(986), - [sym_identifier] = ACTIONS(1766), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1770), + [sym_block] = STATE(871), + [sym_statement] = STATE(39), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(39), + [sym_identifier] = ACTIONS(875), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -29071,361 +32284,427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), }, [238] = { - [sym_statement] = STATE(319), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(319), - [aux_sym_map_repeat1] = STATE(995), - [sym_identifier] = ACTIONS(1766), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1768), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_block] = STATE(738), + [sym_statement] = STATE(45), + [sym_expression] = STATE(795), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(611), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(2015), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(325), + [aux_sym_block_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(913), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_while] = ACTIONS(917), + [anon_sym_for] = ACTIONS(919), + [anon_sym_asyncfor] = ACTIONS(921), + [anon_sym_transform] = ACTIONS(923), + [anon_sym_filter] = ACTIONS(925), + [anon_sym_find] = ACTIONS(927), + [anon_sym_remove] = ACTIONS(929), + [anon_sym_reduce] = ACTIONS(931), + [anon_sym_select] = ACTIONS(933), + [anon_sym_insert] = ACTIONS(935), + [anon_sym_async] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(939), + [anon_sym_assert] = ACTIONS(941), + [anon_sym_assert_equal] = ACTIONS(941), + [anon_sym_download] = ACTIONS(941), + [anon_sym_help] = ACTIONS(941), + [anon_sym_length] = ACTIONS(941), + [anon_sym_output] = ACTIONS(941), + [anon_sym_output_error] = ACTIONS(941), + [anon_sym_type] = ACTIONS(941), + [anon_sym_append] = ACTIONS(941), + [anon_sym_metadata] = ACTIONS(941), + [anon_sym_move] = ACTIONS(941), + [anon_sym_read] = ACTIONS(941), + [anon_sym_workdir] = ACTIONS(941), + [anon_sym_write] = ACTIONS(941), + [anon_sym_from_json] = ACTIONS(941), + [anon_sym_to_json] = ACTIONS(941), + [anon_sym_to_string] = ACTIONS(941), + [anon_sym_to_float] = ACTIONS(941), + [anon_sym_bash] = ACTIONS(941), + [anon_sym_fish] = ACTIONS(941), + [anon_sym_raw] = ACTIONS(941), + [anon_sym_sh] = ACTIONS(941), + [anon_sym_zsh] = ACTIONS(941), + [anon_sym_random] = ACTIONS(941), + [anon_sym_random_boolean] = ACTIONS(941), + [anon_sym_random_float] = ACTIONS(941), + [anon_sym_random_integer] = ACTIONS(941), + [anon_sym_columns] = ACTIONS(941), + [anon_sym_rows] = ACTIONS(941), + [anon_sym_reverse] = ACTIONS(941), }, [239] = { - [sym_statement] = STATE(244), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(244), - [aux_sym_map_repeat1] = STATE(986), - [sym_identifier] = ACTIONS(1766), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_block] = STATE(728), + [sym_statement] = STATE(17), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [240] = { - [sym_block] = STATE(426), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), + [sym_block] = STATE(1070), + [sym_statement] = STATE(382), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(382), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [241] = { - [sym_block] = STATE(908), - [sym_statement] = STATE(155), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(155), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), + [sym_block] = STATE(864), + [sym_statement] = STATE(39), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(39), + [sym_identifier] = ACTIONS(875), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -29433,89 +32712,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), }, [242] = { - [sym_block] = STATE(500), - [sym_statement] = STATE(158), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [sym_block] = STATE(863), + [sym_statement] = STATE(39), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(39), + [sym_identifier] = ACTIONS(875), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -29523,179 +32819,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), }, [243] = { - [sym_block] = STATE(470), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [sym_block] = STATE(719), + [sym_statement] = STATE(35), + [sym_expression] = STATE(701), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(582), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1866), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(320), + [aux_sym_block_repeat1] = STATE(35), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(497), + [anon_sym_EQ_GT] = ACTIONS(499), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_asyncfor] = ACTIONS(505), + [anon_sym_transform] = ACTIONS(507), + [anon_sym_filter] = ACTIONS(509), + [anon_sym_find] = ACTIONS(511), + [anon_sym_remove] = ACTIONS(513), + [anon_sym_reduce] = ACTIONS(515), + [anon_sym_select] = ACTIONS(517), + [anon_sym_insert] = ACTIONS(519), + [anon_sym_async] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(525), + [anon_sym_assert_equal] = ACTIONS(525), + [anon_sym_download] = ACTIONS(525), + [anon_sym_help] = ACTIONS(525), + [anon_sym_length] = ACTIONS(525), + [anon_sym_output] = ACTIONS(525), + [anon_sym_output_error] = ACTIONS(525), + [anon_sym_type] = ACTIONS(525), + [anon_sym_append] = ACTIONS(525), + [anon_sym_metadata] = ACTIONS(525), + [anon_sym_move] = ACTIONS(525), + [anon_sym_read] = ACTIONS(525), + [anon_sym_workdir] = ACTIONS(525), + [anon_sym_write] = ACTIONS(525), + [anon_sym_from_json] = ACTIONS(525), + [anon_sym_to_json] = ACTIONS(525), + [anon_sym_to_string] = ACTIONS(525), + [anon_sym_to_float] = ACTIONS(525), + [anon_sym_bash] = ACTIONS(525), + [anon_sym_fish] = ACTIONS(525), + [anon_sym_raw] = ACTIONS(525), + [anon_sym_sh] = ACTIONS(525), + [anon_sym_zsh] = ACTIONS(525), + [anon_sym_random] = ACTIONS(525), + [anon_sym_random_boolean] = ACTIONS(525), + [anon_sym_random_float] = ACTIONS(525), + [anon_sym_random_integer] = ACTIONS(525), + [anon_sym_columns] = ACTIONS(525), + [anon_sym_rows] = ACTIONS(525), + [anon_sym_reverse] = ACTIONS(525), }, [244] = { - [sym_statement] = STATE(225), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(225), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1774), + [sym_block] = STATE(880), + [sym_statement] = STATE(57), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -29703,449 +33033,534 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [245] = { - [sym_block] = STATE(808), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_block] = STATE(719), + [sym_statement] = STATE(17), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [246] = { - [sym_block] = STATE(484), - [sym_statement] = STATE(158), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_block] = STATE(1018), + [sym_statement] = STATE(358), + [sym_expression] = STATE(859), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(754), + [sym_math] = STATE(759), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(759), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(985), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1566), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_asyncfor] = ACTIONS(1578), + [anon_sym_transform] = ACTIONS(1580), + [anon_sym_filter] = ACTIONS(1582), + [anon_sym_find] = ACTIONS(1584), + [anon_sym_remove] = ACTIONS(1586), + [anon_sym_reduce] = ACTIONS(1588), + [anon_sym_select] = ACTIONS(1590), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [247] = { - [sym_block] = STATE(590), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(840), + [sym_statement] = STATE(57), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [248] = { - [sym_block] = STATE(601), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_block] = STATE(630), + [sym_statement] = STATE(21), + [sym_expression] = STATE(593), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(631), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(584), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1776), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(286), + [aux_sym_block_repeat1] = STATE(21), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(201), + [anon_sym_while] = ACTIONS(203), + [anon_sym_for] = ACTIONS(205), + [anon_sym_asyncfor] = ACTIONS(207), + [anon_sym_transform] = ACTIONS(209), + [anon_sym_filter] = ACTIONS(211), + [anon_sym_find] = ACTIONS(213), + [anon_sym_remove] = ACTIONS(215), + [anon_sym_reduce] = ACTIONS(217), + [anon_sym_select] = ACTIONS(219), + [anon_sym_insert] = ACTIONS(221), + [anon_sym_async] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_assert_equal] = ACTIONS(227), + [anon_sym_download] = ACTIONS(227), + [anon_sym_help] = ACTIONS(227), + [anon_sym_length] = ACTIONS(227), + [anon_sym_output] = ACTIONS(227), + [anon_sym_output_error] = ACTIONS(227), + [anon_sym_type] = ACTIONS(227), + [anon_sym_append] = ACTIONS(227), + [anon_sym_metadata] = ACTIONS(227), + [anon_sym_move] = ACTIONS(227), + [anon_sym_read] = ACTIONS(227), + [anon_sym_workdir] = ACTIONS(227), + [anon_sym_write] = ACTIONS(227), + [anon_sym_from_json] = ACTIONS(227), + [anon_sym_to_json] = ACTIONS(227), + [anon_sym_to_string] = ACTIONS(227), + [anon_sym_to_float] = ACTIONS(227), + [anon_sym_bash] = ACTIONS(227), + [anon_sym_fish] = ACTIONS(227), + [anon_sym_raw] = ACTIONS(227), + [anon_sym_sh] = ACTIONS(227), + [anon_sym_zsh] = ACTIONS(227), + [anon_sym_random] = ACTIONS(227), + [anon_sym_random_boolean] = ACTIONS(227), + [anon_sym_random_float] = ACTIONS(227), + [anon_sym_random_integer] = ACTIONS(227), + [anon_sym_columns] = ACTIONS(227), + [anon_sym_rows] = ACTIONS(227), + [anon_sym_reverse] = ACTIONS(227), }, [249] = { - [sym_block] = STATE(489), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [sym_block] = STATE(1060), + [sym_statement] = STATE(382), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(382), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -30153,89 +33568,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [250] = { - [sym_block] = STATE(808), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), + [sym_block] = STATE(879), + [sym_statement] = STATE(57), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(866), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -30243,629 +33675,738 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [251] = { - [sym_block] = STATE(430), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_block] = STATE(738), + [sym_statement] = STATE(35), + [sym_expression] = STATE(701), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(582), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1866), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(320), + [aux_sym_block_repeat1] = STATE(35), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(497), + [anon_sym_EQ_GT] = ACTIONS(499), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_asyncfor] = ACTIONS(505), + [anon_sym_transform] = ACTIONS(507), + [anon_sym_filter] = ACTIONS(509), + [anon_sym_find] = ACTIONS(511), + [anon_sym_remove] = ACTIONS(513), + [anon_sym_reduce] = ACTIONS(515), + [anon_sym_select] = ACTIONS(517), + [anon_sym_insert] = ACTIONS(519), + [anon_sym_async] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(525), + [anon_sym_assert_equal] = ACTIONS(525), + [anon_sym_download] = ACTIONS(525), + [anon_sym_help] = ACTIONS(525), + [anon_sym_length] = ACTIONS(525), + [anon_sym_output] = ACTIONS(525), + [anon_sym_output_error] = ACTIONS(525), + [anon_sym_type] = ACTIONS(525), + [anon_sym_append] = ACTIONS(525), + [anon_sym_metadata] = ACTIONS(525), + [anon_sym_move] = ACTIONS(525), + [anon_sym_read] = ACTIONS(525), + [anon_sym_workdir] = ACTIONS(525), + [anon_sym_write] = ACTIONS(525), + [anon_sym_from_json] = ACTIONS(525), + [anon_sym_to_json] = ACTIONS(525), + [anon_sym_to_string] = ACTIONS(525), + [anon_sym_to_float] = ACTIONS(525), + [anon_sym_bash] = ACTIONS(525), + [anon_sym_fish] = ACTIONS(525), + [anon_sym_raw] = ACTIONS(525), + [anon_sym_sh] = ACTIONS(525), + [anon_sym_zsh] = ACTIONS(525), + [anon_sym_random] = ACTIONS(525), + [anon_sym_random_boolean] = ACTIONS(525), + [anon_sym_random_float] = ACTIONS(525), + [anon_sym_random_integer] = ACTIONS(525), + [anon_sym_columns] = ACTIONS(525), + [anon_sym_rows] = ACTIONS(525), + [anon_sym_reverse] = ACTIONS(525), }, [252] = { - [sym_block] = STATE(486), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [sym_block] = STATE(737), + [sym_statement] = STATE(35), + [sym_expression] = STATE(701), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_math_operator] = STATE(1153), + [sym_logic] = STATE(706), + [sym_logic_operator] = STATE(1077), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(582), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1866), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(320), + [aux_sym_block_repeat1] = STATE(35), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(497), + [anon_sym_EQ_GT] = ACTIONS(499), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_asyncfor] = ACTIONS(505), + [anon_sym_transform] = ACTIONS(507), + [anon_sym_filter] = ACTIONS(509), + [anon_sym_find] = ACTIONS(511), + [anon_sym_remove] = ACTIONS(513), + [anon_sym_reduce] = ACTIONS(515), + [anon_sym_select] = ACTIONS(517), + [anon_sym_insert] = ACTIONS(519), + [anon_sym_async] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(525), + [anon_sym_assert_equal] = ACTIONS(525), + [anon_sym_download] = ACTIONS(525), + [anon_sym_help] = ACTIONS(525), + [anon_sym_length] = ACTIONS(525), + [anon_sym_output] = ACTIONS(525), + [anon_sym_output_error] = ACTIONS(525), + [anon_sym_type] = ACTIONS(525), + [anon_sym_append] = ACTIONS(525), + [anon_sym_metadata] = ACTIONS(525), + [anon_sym_move] = ACTIONS(525), + [anon_sym_read] = ACTIONS(525), + [anon_sym_workdir] = ACTIONS(525), + [anon_sym_write] = ACTIONS(525), + [anon_sym_from_json] = ACTIONS(525), + [anon_sym_to_json] = ACTIONS(525), + [anon_sym_to_string] = ACTIONS(525), + [anon_sym_to_float] = ACTIONS(525), + [anon_sym_bash] = ACTIONS(525), + [anon_sym_fish] = ACTIONS(525), + [anon_sym_raw] = ACTIONS(525), + [anon_sym_sh] = ACTIONS(525), + [anon_sym_zsh] = ACTIONS(525), + [anon_sym_random] = ACTIONS(525), + [anon_sym_random_boolean] = ACTIONS(525), + [anon_sym_random_float] = ACTIONS(525), + [anon_sym_random_integer] = ACTIONS(525), + [anon_sym_columns] = ACTIONS(525), + [anon_sym_rows] = ACTIONS(525), + [anon_sym_reverse] = ACTIONS(525), }, [253] = { - [sym_block] = STATE(902), - [sym_statement] = STATE(100), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(100), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), + [sym_statement] = STATE(56), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(419), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), [sym_string] = ACTIONS(13), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [254] = { - [sym_block] = STATE(380), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_statement] = STATE(59), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(419), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [255] = { - [sym_block] = STATE(430), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_statement] = STATE(56), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [256] = { - [sym_block] = STATE(587), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_statement] = STATE(56), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(2287), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1786), + [sym_integer] = ACTIONS(1789), + [sym_float] = ACTIONS(1792), + [sym_string] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1795), + [anon_sym_false] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(2329), + [anon_sym_assert] = ACTIONS(2332), + [anon_sym_assert_equal] = ACTIONS(2332), + [anon_sym_download] = ACTIONS(2332), + [anon_sym_help] = ACTIONS(2332), + [anon_sym_length] = ACTIONS(2332), + [anon_sym_output] = ACTIONS(2332), + [anon_sym_output_error] = ACTIONS(2332), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_append] = ACTIONS(2332), + [anon_sym_metadata] = ACTIONS(2332), + [anon_sym_move] = ACTIONS(2332), + [anon_sym_read] = ACTIONS(2332), + [anon_sym_workdir] = ACTIONS(2332), + [anon_sym_write] = ACTIONS(2332), + [anon_sym_from_json] = ACTIONS(2332), + [anon_sym_to_json] = ACTIONS(2332), + [anon_sym_to_string] = ACTIONS(2332), + [anon_sym_to_float] = ACTIONS(2332), + [anon_sym_bash] = ACTIONS(2332), + [anon_sym_fish] = ACTIONS(2332), + [anon_sym_raw] = ACTIONS(2332), + [anon_sym_sh] = ACTIONS(2332), + [anon_sym_zsh] = ACTIONS(2332), + [anon_sym_random] = ACTIONS(2332), + [anon_sym_random_boolean] = ACTIONS(2332), + [anon_sym_random_float] = ACTIONS(2332), + [anon_sym_random_integer] = ACTIONS(2332), + [anon_sym_columns] = ACTIONS(2332), + [anon_sym_rows] = ACTIONS(2332), + [anon_sym_reverse] = ACTIONS(2332), }, [257] = { - [sym_block] = STATE(484), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [sym_statement] = STATE(56), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(2287), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -30873,89 +34414,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [258] = { - [sym_statement] = STATE(225), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(225), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1776), + [sym_statement] = STATE(59), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(2385), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -30963,5308 +34519,11658 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [259] = { - [sym_block] = STATE(400), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), + [sym_statement] = STATE(59), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(2391), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [260] = { - [sym_block] = STATE(427), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), + [sym_statement] = STATE(59), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(2385), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1786), + [sym_integer] = ACTIONS(1789), + [sym_float] = ACTIONS(1792), + [sym_string] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1795), + [anon_sym_false] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(2391), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_table] = ACTIONS(2427), + [anon_sym_assert] = ACTIONS(2430), + [anon_sym_assert_equal] = ACTIONS(2430), + [anon_sym_download] = ACTIONS(2430), + [anon_sym_help] = ACTIONS(2430), + [anon_sym_length] = ACTIONS(2430), + [anon_sym_output] = ACTIONS(2430), + [anon_sym_output_error] = ACTIONS(2430), + [anon_sym_type] = ACTIONS(2430), + [anon_sym_append] = ACTIONS(2430), + [anon_sym_metadata] = ACTIONS(2430), + [anon_sym_move] = ACTIONS(2430), + [anon_sym_read] = ACTIONS(2430), + [anon_sym_workdir] = ACTIONS(2430), + [anon_sym_write] = ACTIONS(2430), + [anon_sym_from_json] = ACTIONS(2430), + [anon_sym_to_json] = ACTIONS(2430), + [anon_sym_to_string] = ACTIONS(2430), + [anon_sym_to_float] = ACTIONS(2430), + [anon_sym_bash] = ACTIONS(2430), + [anon_sym_fish] = ACTIONS(2430), + [anon_sym_raw] = ACTIONS(2430), + [anon_sym_sh] = ACTIONS(2430), + [anon_sym_zsh] = ACTIONS(2430), + [anon_sym_random] = ACTIONS(2430), + [anon_sym_random_boolean] = ACTIONS(2430), + [anon_sym_random_float] = ACTIONS(2430), + [anon_sym_random_integer] = ACTIONS(2430), + [anon_sym_columns] = ACTIONS(2430), + [anon_sym_rows] = ACTIONS(2430), + [anon_sym_reverse] = ACTIONS(2430), }, [261] = { - [sym_block] = STATE(590), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_expression] = STATE(668), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(301), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment_operator] = STATE(545), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_RBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_DOT_DOT] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_elseif] = ACTIONS(2435), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), }, [262] = { - [sym_block] = STATE(902), - [sym_statement] = STATE(159), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(159), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_expression] = STATE(561), + [sym__expression_kind] = STATE(631), + [aux_sym__expression_list] = STATE(268), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_RBRACK] = ACTIONS(2443), + [anon_sym_EQ] = ACTIONS(2447), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_PLUS_EQ] = ACTIONS(2443), + [anon_sym_DASH_EQ] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_elseif] = ACTIONS(2443), + [anon_sym_else] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_asyncfor] = ACTIONS(2443), + [anon_sym_transform] = ACTIONS(2447), + [anon_sym_filter] = ACTIONS(2447), + [anon_sym_find] = ACTIONS(2447), + [anon_sym_remove] = ACTIONS(2447), + [anon_sym_reduce] = ACTIONS(2447), + [anon_sym_select] = ACTIONS(2447), + [anon_sym_insert] = ACTIONS(2447), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [263] = { - [sym_block] = STATE(426), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_expression] = STATE(744), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(316), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment_operator] = STATE(542), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_RBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_elseif] = ACTIONS(2435), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), }, [264] = { - [sym_block] = STATE(400), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_expression] = STATE(1608), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(267), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_COMMA] = ACTIONS(2449), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_RBRACK] = ACTIONS(2449), + [anon_sym_EQ] = ACTIONS(2465), + [anon_sym_COLON] = ACTIONS(2449), + [anon_sym_DOT_DOT] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_PLUS_EQ] = ACTIONS(2449), + [anon_sym_DASH_EQ] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_elseif] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_asyncfor] = ACTIONS(2449), + [anon_sym_transform] = ACTIONS(2465), + [anon_sym_filter] = ACTIONS(2465), + [anon_sym_find] = ACTIONS(2465), + [anon_sym_remove] = ACTIONS(2465), + [anon_sym_reduce] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_insert] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), }, [265] = { - [sym_block] = STATE(698), - [sym_statement] = STATE(232), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(232), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_expression] = STATE(561), + [sym__expression_kind] = STATE(631), + [aux_sym__expression_list] = STATE(262), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(2473), + [anon_sym_COMMA] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_RBRACK] = ACTIONS(2473), + [anon_sym_EQ] = ACTIONS(2475), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_DOT_DOT] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_PLUS_EQ] = ACTIONS(2473), + [anon_sym_DASH_EQ] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_elseif] = ACTIONS(2473), + [anon_sym_else] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_asyncfor] = ACTIONS(2473), + [anon_sym_transform] = ACTIONS(2475), + [anon_sym_filter] = ACTIONS(2475), + [anon_sym_find] = ACTIONS(2475), + [anon_sym_remove] = ACTIONS(2475), + [anon_sym_reduce] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_insert] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [266] = { - [sym_block] = STATE(718), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_expression] = STATE(561), + [sym__expression_kind] = STATE(631), + [aux_sym__expression_list] = STATE(268), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(2477), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_RBRACK] = ACTIONS(2477), + [anon_sym_EQ] = ACTIONS(2479), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_PLUS_EQ] = ACTIONS(2477), + [anon_sym_DASH_EQ] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_elseif] = ACTIONS(2477), + [anon_sym_else] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_asyncfor] = ACTIONS(2477), + [anon_sym_transform] = ACTIONS(2479), + [anon_sym_filter] = ACTIONS(2479), + [anon_sym_find] = ACTIONS(2479), + [anon_sym_remove] = ACTIONS(2479), + [anon_sym_reduce] = ACTIONS(2479), + [anon_sym_select] = ACTIONS(2479), + [anon_sym_insert] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [267] = { - [sym_block] = STATE(500), - [sym_statement] = STATE(29), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(29), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_expression] = STATE(1608), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(267), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_RPAREN] = ACTIONS(2481), + [anon_sym_COMMA] = ACTIONS(2481), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2495), + [sym_string] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_RBRACK] = ACTIONS(2481), + [anon_sym_EQ] = ACTIONS(2504), + [anon_sym_COLON] = ACTIONS(2481), + [anon_sym_DOT_DOT] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_PERCENT] = ACTIONS(2481), + [anon_sym_EQ_EQ] = ACTIONS(2481), + [anon_sym_BANG_EQ] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_PIPE_PIPE] = ACTIONS(2481), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_GT_EQ] = ACTIONS(2481), + [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_PLUS_EQ] = ACTIONS(2481), + [anon_sym_DASH_EQ] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_elseif] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_asyncfor] = ACTIONS(2481), + [anon_sym_transform] = ACTIONS(2504), + [anon_sym_filter] = ACTIONS(2504), + [anon_sym_find] = ACTIONS(2504), + [anon_sym_remove] = ACTIONS(2504), + [anon_sym_reduce] = ACTIONS(2504), + [anon_sym_select] = ACTIONS(2504), + [anon_sym_insert] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_table] = ACTIONS(2512), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_assert_equal] = ACTIONS(2515), + [anon_sym_download] = ACTIONS(2515), + [anon_sym_help] = ACTIONS(2515), + [anon_sym_length] = ACTIONS(2515), + [anon_sym_output] = ACTIONS(2515), + [anon_sym_output_error] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_append] = ACTIONS(2515), + [anon_sym_metadata] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_read] = ACTIONS(2515), + [anon_sym_workdir] = ACTIONS(2515), + [anon_sym_write] = ACTIONS(2515), + [anon_sym_from_json] = ACTIONS(2515), + [anon_sym_to_json] = ACTIONS(2515), + [anon_sym_to_string] = ACTIONS(2515), + [anon_sym_to_float] = ACTIONS(2515), + [anon_sym_bash] = ACTIONS(2515), + [anon_sym_fish] = ACTIONS(2515), + [anon_sym_raw] = ACTIONS(2515), + [anon_sym_sh] = ACTIONS(2515), + [anon_sym_zsh] = ACTIONS(2515), + [anon_sym_random] = ACTIONS(2515), + [anon_sym_random_boolean] = ACTIONS(2515), + [anon_sym_random_float] = ACTIONS(2515), + [anon_sym_random_integer] = ACTIONS(2515), + [anon_sym_columns] = ACTIONS(2515), + [anon_sym_rows] = ACTIONS(2515), + [anon_sym_reverse] = ACTIONS(2515), }, [268] = { - [sym_block] = STATE(718), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_expression] = STATE(561), + [sym__expression_kind] = STATE(631), + [aux_sym__expression_list] = STATE(268), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2520), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2523), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_RPAREN] = ACTIONS(2518), + [anon_sym_COMMA] = ACTIONS(2518), + [sym_integer] = ACTIONS(2529), + [sym_float] = ACTIONS(2532), + [sym_string] = ACTIONS(2532), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym_RBRACK] = ACTIONS(2518), + [anon_sym_EQ] = ACTIONS(2541), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_PLUS_EQ] = ACTIONS(2518), + [anon_sym_DASH_EQ] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_elseif] = ACTIONS(2518), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_asyncfor] = ACTIONS(2518), + [anon_sym_transform] = ACTIONS(2541), + [anon_sym_filter] = ACTIONS(2541), + [anon_sym_find] = ACTIONS(2541), + [anon_sym_remove] = ACTIONS(2541), + [anon_sym_reduce] = ACTIONS(2541), + [anon_sym_select] = ACTIONS(2541), + [anon_sym_insert] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(2549), + [anon_sym_assert] = ACTIONS(2552), + [anon_sym_assert_equal] = ACTIONS(2552), + [anon_sym_download] = ACTIONS(2552), + [anon_sym_help] = ACTIONS(2552), + [anon_sym_length] = ACTIONS(2552), + [anon_sym_output] = ACTIONS(2552), + [anon_sym_output_error] = ACTIONS(2552), + [anon_sym_type] = ACTIONS(2552), + [anon_sym_append] = ACTIONS(2552), + [anon_sym_metadata] = ACTIONS(2552), + [anon_sym_move] = ACTIONS(2552), + [anon_sym_read] = ACTIONS(2552), + [anon_sym_workdir] = ACTIONS(2552), + [anon_sym_write] = ACTIONS(2552), + [anon_sym_from_json] = ACTIONS(2552), + [anon_sym_to_json] = ACTIONS(2552), + [anon_sym_to_string] = ACTIONS(2552), + [anon_sym_to_float] = ACTIONS(2552), + [anon_sym_bash] = ACTIONS(2552), + [anon_sym_fish] = ACTIONS(2552), + [anon_sym_raw] = ACTIONS(2552), + [anon_sym_sh] = ACTIONS(2552), + [anon_sym_zsh] = ACTIONS(2552), + [anon_sym_random] = ACTIONS(2552), + [anon_sym_random_boolean] = ACTIONS(2552), + [anon_sym_random_float] = ACTIONS(2552), + [anon_sym_random_integer] = ACTIONS(2552), + [anon_sym_columns] = ACTIONS(2552), + [anon_sym_rows] = ACTIONS(2552), + [anon_sym_reverse] = ACTIONS(2552), }, [269] = { - [sym_block] = STATE(908), - [sym_statement] = STATE(159), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(159), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_expression] = STATE(587), + [sym__expression_kind] = STATE(631), + [aux_sym__expression_list] = STATE(270), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_RBRACK] = ACTIONS(2443), + [anon_sym_EQ] = ACTIONS(2447), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_PLUS_EQ] = ACTIONS(2443), + [anon_sym_DASH_EQ] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_elseif] = ACTIONS(2443), + [anon_sym_else] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_asyncfor] = ACTIONS(2443), + [anon_sym_transform] = ACTIONS(2447), + [anon_sym_filter] = ACTIONS(2447), + [anon_sym_find] = ACTIONS(2447), + [anon_sym_remove] = ACTIONS(2447), + [anon_sym_reduce] = ACTIONS(2447), + [anon_sym_select] = ACTIONS(2447), + [anon_sym_insert] = ACTIONS(2447), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [270] = { - [sym_block] = STATE(698), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_expression] = STATE(587), + [sym__expression_kind] = STATE(631), + [aux_sym__expression_list] = STATE(270), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2520), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2523), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_RPAREN] = ACTIONS(2518), + [anon_sym_COMMA] = ACTIONS(2518), + [sym_integer] = ACTIONS(2529), + [sym_float] = ACTIONS(2532), + [sym_string] = ACTIONS(2532), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym_RBRACK] = ACTIONS(2518), + [anon_sym_EQ] = ACTIONS(2541), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_PLUS_EQ] = ACTIONS(2518), + [anon_sym_DASH_EQ] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_elseif] = ACTIONS(2518), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_asyncfor] = ACTIONS(2518), + [anon_sym_transform] = ACTIONS(2541), + [anon_sym_filter] = ACTIONS(2541), + [anon_sym_find] = ACTIONS(2541), + [anon_sym_remove] = ACTIONS(2541), + [anon_sym_reduce] = ACTIONS(2541), + [anon_sym_select] = ACTIONS(2541), + [anon_sym_insert] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(2558), + [anon_sym_assert] = ACTIONS(2561), + [anon_sym_assert_equal] = ACTIONS(2561), + [anon_sym_download] = ACTIONS(2561), + [anon_sym_help] = ACTIONS(2561), + [anon_sym_length] = ACTIONS(2561), + [anon_sym_output] = ACTIONS(2561), + [anon_sym_output_error] = ACTIONS(2561), + [anon_sym_type] = ACTIONS(2561), + [anon_sym_append] = ACTIONS(2561), + [anon_sym_metadata] = ACTIONS(2561), + [anon_sym_move] = ACTIONS(2561), + [anon_sym_read] = ACTIONS(2561), + [anon_sym_workdir] = ACTIONS(2561), + [anon_sym_write] = ACTIONS(2561), + [anon_sym_from_json] = ACTIONS(2561), + [anon_sym_to_json] = ACTIONS(2561), + [anon_sym_to_string] = ACTIONS(2561), + [anon_sym_to_float] = ACTIONS(2561), + [anon_sym_bash] = ACTIONS(2561), + [anon_sym_fish] = ACTIONS(2561), + [anon_sym_raw] = ACTIONS(2561), + [anon_sym_sh] = ACTIONS(2561), + [anon_sym_zsh] = ACTIONS(2561), + [anon_sym_random] = ACTIONS(2561), + [anon_sym_random_boolean] = ACTIONS(2561), + [anon_sym_random_float] = ACTIONS(2561), + [anon_sym_random_integer] = ACTIONS(2561), + [anon_sym_columns] = ACTIONS(2561), + [anon_sym_rows] = ACTIONS(2561), + [anon_sym_reverse] = ACTIONS(2561), }, [271] = { - [sym_block] = STATE(426), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_expression] = STATE(587), + [sym__expression_kind] = STATE(631), + [aux_sym__expression_list] = STATE(269), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(2473), + [anon_sym_COMMA] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_RBRACK] = ACTIONS(2473), + [anon_sym_EQ] = ACTIONS(2475), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_PLUS_EQ] = ACTIONS(2473), + [anon_sym_DASH_EQ] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_elseif] = ACTIONS(2473), + [anon_sym_else] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_asyncfor] = ACTIONS(2473), + [anon_sym_transform] = ACTIONS(2475), + [anon_sym_filter] = ACTIONS(2475), + [anon_sym_find] = ACTIONS(2475), + [anon_sym_remove] = ACTIONS(2475), + [anon_sym_reduce] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_insert] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [272] = { - [sym_statement] = STATE(225), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(225), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_expression] = STATE(587), + [sym__expression_kind] = STATE(631), + [aux_sym__expression_list] = STATE(270), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(2477), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_RBRACK] = ACTIONS(2477), + [anon_sym_EQ] = ACTIONS(2479), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_PLUS_EQ] = ACTIONS(2477), + [anon_sym_DASH_EQ] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_elseif] = ACTIONS(2477), + [anon_sym_else] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_asyncfor] = ACTIONS(2477), + [anon_sym_transform] = ACTIONS(2479), + [anon_sym_filter] = ACTIONS(2479), + [anon_sym_find] = ACTIONS(2479), + [anon_sym_remove] = ACTIONS(2479), + [anon_sym_reduce] = ACTIONS(2479), + [anon_sym_select] = ACTIONS(2479), + [anon_sym_insert] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [273] = { - [sym_block] = STATE(808), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_expression] = STATE(755), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(337), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment_operator] = STATE(534), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_RBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_DOT_DOT] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), }, [274] = { - [sym_block] = STATE(484), - [sym_statement] = STATE(29), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(29), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_expression] = STATE(702), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(344), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment_operator] = STATE(549), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_DOT_DOT] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_elseif] = ACTIONS(2435), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), }, [275] = { - [sym_block] = STATE(426), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_expression] = STATE(1607), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(275), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_RPAREN] = ACTIONS(2481), + [anon_sym_COMMA] = ACTIONS(2481), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2495), + [sym_string] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_RBRACK] = ACTIONS(2481), + [anon_sym_EQ] = ACTIONS(2504), + [anon_sym_COLON] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_PERCENT] = ACTIONS(2481), + [anon_sym_EQ_EQ] = ACTIONS(2481), + [anon_sym_BANG_EQ] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_PIPE_PIPE] = ACTIONS(2481), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_GT_EQ] = ACTIONS(2481), + [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_PLUS_EQ] = ACTIONS(2481), + [anon_sym_DASH_EQ] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_elseif] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_asyncfor] = ACTIONS(2481), + [anon_sym_transform] = ACTIONS(2504), + [anon_sym_filter] = ACTIONS(2504), + [anon_sym_find] = ACTIONS(2504), + [anon_sym_remove] = ACTIONS(2504), + [anon_sym_reduce] = ACTIONS(2504), + [anon_sym_select] = ACTIONS(2504), + [anon_sym_insert] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_table] = ACTIONS(2512), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_assert_equal] = ACTIONS(2515), + [anon_sym_download] = ACTIONS(2515), + [anon_sym_help] = ACTIONS(2515), + [anon_sym_length] = ACTIONS(2515), + [anon_sym_output] = ACTIONS(2515), + [anon_sym_output_error] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_append] = ACTIONS(2515), + [anon_sym_metadata] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_read] = ACTIONS(2515), + [anon_sym_workdir] = ACTIONS(2515), + [anon_sym_write] = ACTIONS(2515), + [anon_sym_from_json] = ACTIONS(2515), + [anon_sym_to_json] = ACTIONS(2515), + [anon_sym_to_string] = ACTIONS(2515), + [anon_sym_to_float] = ACTIONS(2515), + [anon_sym_bash] = ACTIONS(2515), + [anon_sym_fish] = ACTIONS(2515), + [anon_sym_raw] = ACTIONS(2515), + [anon_sym_sh] = ACTIONS(2515), + [anon_sym_zsh] = ACTIONS(2515), + [anon_sym_random] = ACTIONS(2515), + [anon_sym_random_boolean] = ACTIONS(2515), + [anon_sym_random_float] = ACTIONS(2515), + [anon_sym_random_integer] = ACTIONS(2515), + [anon_sym_columns] = ACTIONS(2515), + [anon_sym_rows] = ACTIONS(2515), + [anon_sym_reverse] = ACTIONS(2515), }, [276] = { - [sym_block] = STATE(430), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), + [sym_expression] = STATE(1607), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(275), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_COMMA] = ACTIONS(2449), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_RBRACK] = ACTIONS(2449), + [anon_sym_EQ] = ACTIONS(2465), + [anon_sym_COLON] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_PLUS_EQ] = ACTIONS(2449), + [anon_sym_DASH_EQ] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_elseif] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_asyncfor] = ACTIONS(2449), + [anon_sym_transform] = ACTIONS(2465), + [anon_sym_filter] = ACTIONS(2465), + [anon_sym_find] = ACTIONS(2465), + [anon_sym_remove] = ACTIONS(2465), + [anon_sym_reduce] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_insert] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), }, [277] = { - [sym_block] = STATE(380), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_expression] = STATE(1592), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(285), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_COMMA] = ACTIONS(2449), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_RBRACK] = ACTIONS(2449), + [anon_sym_EQ] = ACTIONS(2465), + [anon_sym_COLON] = ACTIONS(2449), + [anon_sym_DOT_DOT] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_PLUS_EQ] = ACTIONS(2449), + [anon_sym_DASH_EQ] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_asyncfor] = ACTIONS(2449), + [anon_sym_transform] = ACTIONS(2465), + [anon_sym_filter] = ACTIONS(2465), + [anon_sym_find] = ACTIONS(2465), + [anon_sym_remove] = ACTIONS(2465), + [anon_sym_reduce] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_insert] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), }, [278] = { - [sym_block] = STATE(601), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_expression] = STATE(642), + [sym__expression_kind] = STATE(706), + [aux_sym__expression_list] = STATE(278), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2564), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2567), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_RPAREN] = ACTIONS(2518), + [anon_sym_COMMA] = ACTIONS(2518), + [sym_integer] = ACTIONS(2573), + [sym_float] = ACTIONS(2576), + [sym_string] = ACTIONS(2576), + [anon_sym_true] = ACTIONS(2579), + [anon_sym_false] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2582), + [anon_sym_RBRACK] = ACTIONS(2518), + [anon_sym_EQ] = ACTIONS(2541), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_PLUS_EQ] = ACTIONS(2518), + [anon_sym_DASH_EQ] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_asyncfor] = ACTIONS(2518), + [anon_sym_transform] = ACTIONS(2541), + [anon_sym_filter] = ACTIONS(2541), + [anon_sym_find] = ACTIONS(2541), + [anon_sym_remove] = ACTIONS(2541), + [anon_sym_reduce] = ACTIONS(2541), + [anon_sym_select] = ACTIONS(2541), + [anon_sym_insert] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(2588), + [anon_sym_assert] = ACTIONS(2591), + [anon_sym_assert_equal] = ACTIONS(2591), + [anon_sym_download] = ACTIONS(2591), + [anon_sym_help] = ACTIONS(2591), + [anon_sym_length] = ACTIONS(2591), + [anon_sym_output] = ACTIONS(2591), + [anon_sym_output_error] = ACTIONS(2591), + [anon_sym_type] = ACTIONS(2591), + [anon_sym_append] = ACTIONS(2591), + [anon_sym_metadata] = ACTIONS(2591), + [anon_sym_move] = ACTIONS(2591), + [anon_sym_read] = ACTIONS(2591), + [anon_sym_workdir] = ACTIONS(2591), + [anon_sym_write] = ACTIONS(2591), + [anon_sym_from_json] = ACTIONS(2591), + [anon_sym_to_json] = ACTIONS(2591), + [anon_sym_to_string] = ACTIONS(2591), + [anon_sym_to_float] = ACTIONS(2591), + [anon_sym_bash] = ACTIONS(2591), + [anon_sym_fish] = ACTIONS(2591), + [anon_sym_raw] = ACTIONS(2591), + [anon_sym_sh] = ACTIONS(2591), + [anon_sym_zsh] = ACTIONS(2591), + [anon_sym_random] = ACTIONS(2591), + [anon_sym_random_boolean] = ACTIONS(2591), + [anon_sym_random_float] = ACTIONS(2591), + [anon_sym_random_integer] = ACTIONS(2591), + [anon_sym_columns] = ACTIONS(2591), + [anon_sym_rows] = ACTIONS(2591), + [anon_sym_reverse] = ACTIONS(2591), }, [279] = { - [sym_block] = STATE(400), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_expression] = STATE(588), + [sym__expression_kind] = STATE(631), + [aux_sym__expression_list] = STATE(283), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_EQ] = ACTIONS(2447), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_PLUS_EQ] = ACTIONS(2443), + [anon_sym_DASH_EQ] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_elseif] = ACTIONS(2443), + [anon_sym_else] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_asyncfor] = ACTIONS(2443), + [anon_sym_transform] = ACTIONS(2447), + [anon_sym_filter] = ACTIONS(2447), + [anon_sym_find] = ACTIONS(2447), + [anon_sym_remove] = ACTIONS(2447), + [anon_sym_reduce] = ACTIONS(2447), + [anon_sym_select] = ACTIONS(2447), + [anon_sym_insert] = ACTIONS(2447), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [280] = { - [sym_block] = STATE(427), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [sym_expression] = STATE(828), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(361), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment_operator] = STATE(539), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_RBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), }, [281] = { - [sym_block] = STATE(908), - [sym_statement] = STATE(154), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(154), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_expression] = STATE(1601), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(289), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2449), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_EQ] = ACTIONS(2465), + [anon_sym_COLON] = ACTIONS(2449), + [anon_sym_DOT_DOT] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_PLUS_EQ] = ACTIONS(2449), + [anon_sym_DASH_EQ] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_elseif] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_asyncfor] = ACTIONS(2449), + [anon_sym_transform] = ACTIONS(2465), + [anon_sym_filter] = ACTIONS(2465), + [anon_sym_find] = ACTIONS(2465), + [anon_sym_remove] = ACTIONS(2465), + [anon_sym_reduce] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_insert] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), }, [282] = { - [sym_block] = STATE(902), - [sym_statement] = STATE(160), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_expression] = STATE(588), + [sym__expression_kind] = STATE(631), + [aux_sym__expression_list] = STATE(283), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(2477), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_EQ] = ACTIONS(2479), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_PLUS_EQ] = ACTIONS(2477), + [anon_sym_DASH_EQ] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_elseif] = ACTIONS(2477), + [anon_sym_else] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_asyncfor] = ACTIONS(2477), + [anon_sym_transform] = ACTIONS(2479), + [anon_sym_filter] = ACTIONS(2479), + [anon_sym_find] = ACTIONS(2479), + [anon_sym_remove] = ACTIONS(2479), + [anon_sym_reduce] = ACTIONS(2479), + [anon_sym_select] = ACTIONS(2479), + [anon_sym_insert] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [283] = { - [sym_block] = STATE(470), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [sym_expression] = STATE(588), + [sym__expression_kind] = STATE(631), + [aux_sym__expression_list] = STATE(283), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2520), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2523), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_RPAREN] = ACTIONS(2518), + [sym_integer] = ACTIONS(2529), + [sym_float] = ACTIONS(2532), + [sym_string] = ACTIONS(2532), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym_EQ] = ACTIONS(2541), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_PLUS_EQ] = ACTIONS(2518), + [anon_sym_DASH_EQ] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_elseif] = ACTIONS(2518), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_asyncfor] = ACTIONS(2518), + [anon_sym_transform] = ACTIONS(2541), + [anon_sym_filter] = ACTIONS(2541), + [anon_sym_find] = ACTIONS(2541), + [anon_sym_remove] = ACTIONS(2541), + [anon_sym_reduce] = ACTIONS(2541), + [anon_sym_select] = ACTIONS(2541), + [anon_sym_insert] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(2549), + [anon_sym_assert] = ACTIONS(2552), + [anon_sym_assert_equal] = ACTIONS(2552), + [anon_sym_download] = ACTIONS(2552), + [anon_sym_help] = ACTIONS(2552), + [anon_sym_length] = ACTIONS(2552), + [anon_sym_output] = ACTIONS(2552), + [anon_sym_output_error] = ACTIONS(2552), + [anon_sym_type] = ACTIONS(2552), + [anon_sym_append] = ACTIONS(2552), + [anon_sym_metadata] = ACTIONS(2552), + [anon_sym_move] = ACTIONS(2552), + [anon_sym_read] = ACTIONS(2552), + [anon_sym_workdir] = ACTIONS(2552), + [anon_sym_write] = ACTIONS(2552), + [anon_sym_from_json] = ACTIONS(2552), + [anon_sym_to_json] = ACTIONS(2552), + [anon_sym_to_string] = ACTIONS(2552), + [anon_sym_to_float] = ACTIONS(2552), + [anon_sym_bash] = ACTIONS(2552), + [anon_sym_fish] = ACTIONS(2552), + [anon_sym_raw] = ACTIONS(2552), + [anon_sym_sh] = ACTIONS(2552), + [anon_sym_zsh] = ACTIONS(2552), + [anon_sym_random] = ACTIONS(2552), + [anon_sym_random_boolean] = ACTIONS(2552), + [anon_sym_random_float] = ACTIONS(2552), + [anon_sym_random_integer] = ACTIONS(2552), + [anon_sym_columns] = ACTIONS(2552), + [anon_sym_rows] = ACTIONS(2552), + [anon_sym_reverse] = ACTIONS(2552), }, [284] = { - [sym_block] = STATE(908), - [sym_statement] = STATE(160), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_expression] = STATE(642), + [sym__expression_kind] = STATE(706), + [aux_sym__expression_list] = STATE(288), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(2473), + [anon_sym_COMMA] = ACTIONS(2473), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(2473), + [anon_sym_EQ] = ACTIONS(2475), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_DOT_DOT] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_PLUS_EQ] = ACTIONS(2473), + [anon_sym_DASH_EQ] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_asyncfor] = ACTIONS(2473), + [anon_sym_transform] = ACTIONS(2475), + [anon_sym_filter] = ACTIONS(2475), + [anon_sym_find] = ACTIONS(2475), + [anon_sym_remove] = ACTIONS(2475), + [anon_sym_reduce] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_insert] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [285] = { - [sym_block] = STATE(489), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [sym_expression] = STATE(1592), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(285), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_RPAREN] = ACTIONS(2481), + [anon_sym_COMMA] = ACTIONS(2481), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2495), + [sym_string] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_RBRACK] = ACTIONS(2481), + [anon_sym_EQ] = ACTIONS(2504), + [anon_sym_COLON] = ACTIONS(2481), + [anon_sym_DOT_DOT] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_PERCENT] = ACTIONS(2481), + [anon_sym_EQ_EQ] = ACTIONS(2481), + [anon_sym_BANG_EQ] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_PIPE_PIPE] = ACTIONS(2481), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_GT_EQ] = ACTIONS(2481), + [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_PLUS_EQ] = ACTIONS(2481), + [anon_sym_DASH_EQ] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_asyncfor] = ACTIONS(2481), + [anon_sym_transform] = ACTIONS(2504), + [anon_sym_filter] = ACTIONS(2504), + [anon_sym_find] = ACTIONS(2504), + [anon_sym_remove] = ACTIONS(2504), + [anon_sym_reduce] = ACTIONS(2504), + [anon_sym_select] = ACTIONS(2504), + [anon_sym_insert] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_table] = ACTIONS(2512), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_assert_equal] = ACTIONS(2515), + [anon_sym_download] = ACTIONS(2515), + [anon_sym_help] = ACTIONS(2515), + [anon_sym_length] = ACTIONS(2515), + [anon_sym_output] = ACTIONS(2515), + [anon_sym_output_error] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_append] = ACTIONS(2515), + [anon_sym_metadata] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_read] = ACTIONS(2515), + [anon_sym_workdir] = ACTIONS(2515), + [anon_sym_write] = ACTIONS(2515), + [anon_sym_from_json] = ACTIONS(2515), + [anon_sym_to_json] = ACTIONS(2515), + [anon_sym_to_string] = ACTIONS(2515), + [anon_sym_to_float] = ACTIONS(2515), + [anon_sym_bash] = ACTIONS(2515), + [anon_sym_fish] = ACTIONS(2515), + [anon_sym_raw] = ACTIONS(2515), + [anon_sym_sh] = ACTIONS(2515), + [anon_sym_zsh] = ACTIONS(2515), + [anon_sym_random] = ACTIONS(2515), + [anon_sym_random_boolean] = ACTIONS(2515), + [anon_sym_random_float] = ACTIONS(2515), + [anon_sym_random_integer] = ACTIONS(2515), + [anon_sym_columns] = ACTIONS(2515), + [anon_sym_rows] = ACTIONS(2515), + [anon_sym_reverse] = ACTIONS(2515), }, [286] = { - [sym_block] = STATE(587), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_expression] = STATE(588), + [sym__expression_kind] = STATE(631), + [aux_sym__expression_list] = STATE(279), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_EQ] = ACTIONS(2475), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_DOT_DOT] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_PLUS_EQ] = ACTIONS(2473), + [anon_sym_DASH_EQ] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_elseif] = ACTIONS(2473), + [anon_sym_else] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_asyncfor] = ACTIONS(2473), + [anon_sym_transform] = ACTIONS(2475), + [anon_sym_filter] = ACTIONS(2475), + [anon_sym_find] = ACTIONS(2475), + [anon_sym_remove] = ACTIONS(2475), + [anon_sym_reduce] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_insert] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [287] = { - [sym_block] = STATE(427), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_expression] = STATE(642), + [sym__expression_kind] = STATE(706), + [aux_sym__expression_list] = STATE(278), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(2477), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(2477), + [anon_sym_EQ] = ACTIONS(2479), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_PLUS_EQ] = ACTIONS(2477), + [anon_sym_DASH_EQ] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_asyncfor] = ACTIONS(2477), + [anon_sym_transform] = ACTIONS(2479), + [anon_sym_filter] = ACTIONS(2479), + [anon_sym_find] = ACTIONS(2479), + [anon_sym_remove] = ACTIONS(2479), + [anon_sym_reduce] = ACTIONS(2479), + [anon_sym_select] = ACTIONS(2479), + [anon_sym_insert] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [288] = { - [sym_block] = STATE(380), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_expression] = STATE(642), + [sym__expression_kind] = STATE(706), + [aux_sym__expression_list] = STATE(278), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2443), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(2443), + [anon_sym_EQ] = ACTIONS(2447), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_PLUS_EQ] = ACTIONS(2443), + [anon_sym_DASH_EQ] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_asyncfor] = ACTIONS(2443), + [anon_sym_transform] = ACTIONS(2447), + [anon_sym_filter] = ACTIONS(2447), + [anon_sym_find] = ACTIONS(2447), + [anon_sym_remove] = ACTIONS(2447), + [anon_sym_reduce] = ACTIONS(2447), + [anon_sym_select] = ACTIONS(2447), + [anon_sym_insert] = ACTIONS(2447), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [289] = { - [sym_block] = STATE(400), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_expression] = STATE(1601), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(289), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_RPAREN] = ACTIONS(2481), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2495), + [sym_string] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_EQ] = ACTIONS(2504), + [anon_sym_COLON] = ACTIONS(2481), + [anon_sym_DOT_DOT] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_PERCENT] = ACTIONS(2481), + [anon_sym_EQ_EQ] = ACTIONS(2481), + [anon_sym_BANG_EQ] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_PIPE_PIPE] = ACTIONS(2481), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_GT_EQ] = ACTIONS(2481), + [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_PLUS_EQ] = ACTIONS(2481), + [anon_sym_DASH_EQ] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_elseif] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_asyncfor] = ACTIONS(2481), + [anon_sym_transform] = ACTIONS(2504), + [anon_sym_filter] = ACTIONS(2504), + [anon_sym_find] = ACTIONS(2504), + [anon_sym_remove] = ACTIONS(2504), + [anon_sym_reduce] = ACTIONS(2504), + [anon_sym_select] = ACTIONS(2504), + [anon_sym_insert] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_table] = ACTIONS(2512), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_assert_equal] = ACTIONS(2515), + [anon_sym_download] = ACTIONS(2515), + [anon_sym_help] = ACTIONS(2515), + [anon_sym_length] = ACTIONS(2515), + [anon_sym_output] = ACTIONS(2515), + [anon_sym_output_error] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_append] = ACTIONS(2515), + [anon_sym_metadata] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_read] = ACTIONS(2515), + [anon_sym_workdir] = ACTIONS(2515), + [anon_sym_write] = ACTIONS(2515), + [anon_sym_from_json] = ACTIONS(2515), + [anon_sym_to_json] = ACTIONS(2515), + [anon_sym_to_string] = ACTIONS(2515), + [anon_sym_to_float] = ACTIONS(2515), + [anon_sym_bash] = ACTIONS(2515), + [anon_sym_fish] = ACTIONS(2515), + [anon_sym_raw] = ACTIONS(2515), + [anon_sym_sh] = ACTIONS(2515), + [anon_sym_zsh] = ACTIONS(2515), + [anon_sym_random] = ACTIONS(2515), + [anon_sym_random_boolean] = ACTIONS(2515), + [anon_sym_random_float] = ACTIONS(2515), + [anon_sym_random_integer] = ACTIONS(2515), + [anon_sym_columns] = ACTIONS(2515), + [anon_sym_rows] = ACTIONS(2515), + [anon_sym_reverse] = ACTIONS(2515), }, [290] = { - [sym_block] = STATE(484), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_expression] = STATE(783), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(350), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment_operator] = STATE(553), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_elseif] = ACTIONS(2435), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), }, [291] = { - [sym_block] = STATE(470), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_expression] = STATE(1579), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(308), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_COMMA] = ACTIONS(2449), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_RBRACK] = ACTIONS(2449), + [anon_sym_COLON] = ACTIONS(2449), + [anon_sym_DOT_DOT] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_elseif] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_asyncfor] = ACTIONS(2449), + [anon_sym_transform] = ACTIONS(2465), + [anon_sym_filter] = ACTIONS(2465), + [anon_sym_find] = ACTIONS(2465), + [anon_sym_remove] = ACTIONS(2465), + [anon_sym_reduce] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_insert] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), }, [292] = { - [sym_block] = STATE(427), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [sym_expression] = STATE(591), + [sym__expression_kind] = STATE(631), + [aux_sym__expression_list] = STATE(303), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(2477), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_EQ] = ACTIONS(2479), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_PLUS_EQ] = ACTIONS(2477), + [anon_sym_DASH_EQ] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_elseif] = ACTIONS(2477), + [anon_sym_else] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_asyncfor] = ACTIONS(2477), + [anon_sym_transform] = ACTIONS(2479), + [anon_sym_filter] = ACTIONS(2479), + [anon_sym_find] = ACTIONS(2479), + [anon_sym_remove] = ACTIONS(2479), + [anon_sym_reduce] = ACTIONS(2479), + [anon_sym_select] = ACTIONS(2479), + [anon_sym_insert] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [293] = { - [sym_block] = STATE(430), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [sym_expression] = STATE(668), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(293), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2594), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2600), + [anon_sym_RPAREN] = ACTIONS(2518), + [anon_sym_COMMA] = ACTIONS(2518), + [sym_integer] = ACTIONS(2603), + [sym_float] = ACTIONS(2606), + [sym_string] = ACTIONS(2606), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2612), + [anon_sym_RBRACK] = ACTIONS(2518), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_elseif] = ACTIONS(2518), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_asyncfor] = ACTIONS(2518), + [anon_sym_transform] = ACTIONS(2541), + [anon_sym_filter] = ACTIONS(2541), + [anon_sym_find] = ACTIONS(2541), + [anon_sym_remove] = ACTIONS(2541), + [anon_sym_reduce] = ACTIONS(2541), + [anon_sym_select] = ACTIONS(2541), + [anon_sym_insert] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(2618), + [anon_sym_assert] = ACTIONS(2621), + [anon_sym_assert_equal] = ACTIONS(2621), + [anon_sym_download] = ACTIONS(2621), + [anon_sym_help] = ACTIONS(2621), + [anon_sym_length] = ACTIONS(2621), + [anon_sym_output] = ACTIONS(2621), + [anon_sym_output_error] = ACTIONS(2621), + [anon_sym_type] = ACTIONS(2621), + [anon_sym_append] = ACTIONS(2621), + [anon_sym_metadata] = ACTIONS(2621), + [anon_sym_move] = ACTIONS(2621), + [anon_sym_read] = ACTIONS(2621), + [anon_sym_workdir] = ACTIONS(2621), + [anon_sym_write] = ACTIONS(2621), + [anon_sym_from_json] = ACTIONS(2621), + [anon_sym_to_json] = ACTIONS(2621), + [anon_sym_to_string] = ACTIONS(2621), + [anon_sym_to_float] = ACTIONS(2621), + [anon_sym_bash] = ACTIONS(2621), + [anon_sym_fish] = ACTIONS(2621), + [anon_sym_raw] = ACTIONS(2621), + [anon_sym_sh] = ACTIONS(2621), + [anon_sym_zsh] = ACTIONS(2621), + [anon_sym_random] = ACTIONS(2621), + [anon_sym_random_boolean] = ACTIONS(2621), + [anon_sym_random_float] = ACTIONS(2621), + [anon_sym_random_integer] = ACTIONS(2621), + [anon_sym_columns] = ACTIONS(2621), + [anon_sym_rows] = ACTIONS(2621), + [anon_sym_reverse] = ACTIONS(2621), }, [294] = { - [sym_block] = STATE(908), - [sym_statement] = STATE(100), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(100), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_expression] = STATE(833), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(364), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment_operator] = STATE(535), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_DOT_DOT] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), }, [295] = { - [sym_block] = STATE(484), - [sym_statement] = STATE(21), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(21), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [sym_expression] = STATE(668), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(293), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2624), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(233), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2443), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_RBRACK] = ACTIONS(2443), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_elseif] = ACTIONS(2443), + [anon_sym_else] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_asyncfor] = ACTIONS(2443), + [anon_sym_transform] = ACTIONS(2447), + [anon_sym_filter] = ACTIONS(2447), + [anon_sym_find] = ACTIONS(2447), + [anon_sym_remove] = ACTIONS(2447), + [anon_sym_reduce] = ACTIONS(2447), + [anon_sym_select] = ACTIONS(2447), + [anon_sym_insert] = ACTIONS(2447), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), }, [296] = { - [sym_block] = STATE(908), - [sym_statement] = STATE(153), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [sym_expression] = STATE(591), + [sym__expression_kind] = STATE(631), + [aux_sym__expression_list] = STATE(299), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(2473), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_EQ] = ACTIONS(2475), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_PLUS_EQ] = ACTIONS(2473), + [anon_sym_DASH_EQ] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_elseif] = ACTIONS(2473), + [anon_sym_else] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_asyncfor] = ACTIONS(2473), + [anon_sym_transform] = ACTIONS(2475), + [anon_sym_filter] = ACTIONS(2475), + [anon_sym_find] = ACTIONS(2475), + [anon_sym_remove] = ACTIONS(2475), + [anon_sym_reduce] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_insert] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [297] = { - [sym_block] = STATE(484), - [sym_statement] = STATE(157), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(157), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [sym_expression] = STATE(1620), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(297), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_RPAREN] = ACTIONS(2481), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2495), + [sym_string] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_EQ] = ACTIONS(2504), + [anon_sym_COLON] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_PERCENT] = ACTIONS(2481), + [anon_sym_EQ_EQ] = ACTIONS(2481), + [anon_sym_BANG_EQ] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_PIPE_PIPE] = ACTIONS(2481), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_GT_EQ] = ACTIONS(2481), + [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_PLUS_EQ] = ACTIONS(2481), + [anon_sym_DASH_EQ] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_elseif] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_asyncfor] = ACTIONS(2481), + [anon_sym_transform] = ACTIONS(2504), + [anon_sym_filter] = ACTIONS(2504), + [anon_sym_find] = ACTIONS(2504), + [anon_sym_remove] = ACTIONS(2504), + [anon_sym_reduce] = ACTIONS(2504), + [anon_sym_select] = ACTIONS(2504), + [anon_sym_insert] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_table] = ACTIONS(2512), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_assert_equal] = ACTIONS(2515), + [anon_sym_download] = ACTIONS(2515), + [anon_sym_help] = ACTIONS(2515), + [anon_sym_length] = ACTIONS(2515), + [anon_sym_output] = ACTIONS(2515), + [anon_sym_output_error] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_append] = ACTIONS(2515), + [anon_sym_metadata] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_read] = ACTIONS(2515), + [anon_sym_workdir] = ACTIONS(2515), + [anon_sym_write] = ACTIONS(2515), + [anon_sym_from_json] = ACTIONS(2515), + [anon_sym_to_json] = ACTIONS(2515), + [anon_sym_to_string] = ACTIONS(2515), + [anon_sym_to_float] = ACTIONS(2515), + [anon_sym_bash] = ACTIONS(2515), + [anon_sym_fish] = ACTIONS(2515), + [anon_sym_raw] = ACTIONS(2515), + [anon_sym_sh] = ACTIONS(2515), + [anon_sym_zsh] = ACTIONS(2515), + [anon_sym_random] = ACTIONS(2515), + [anon_sym_random_boolean] = ACTIONS(2515), + [anon_sym_random_float] = ACTIONS(2515), + [anon_sym_random_integer] = ACTIONS(2515), + [anon_sym_columns] = ACTIONS(2515), + [anon_sym_rows] = ACTIONS(2515), + [anon_sym_reverse] = ACTIONS(2515), }, [298] = { - [sym_block] = STATE(500), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [sym_expression] = STATE(744), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(316), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment_operator] = STATE(548), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_elseif] = ACTIONS(2435), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), }, [299] = { - [sym_block] = STATE(902), - [sym_statement] = STATE(156), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(156), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [sym_expression] = STATE(591), + [sym__expression_kind] = STATE(631), + [aux_sym__expression_list] = STATE(303), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(2443), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_EQ] = ACTIONS(2447), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_PLUS_EQ] = ACTIONS(2443), + [anon_sym_DASH_EQ] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_elseif] = ACTIONS(2443), + [anon_sym_else] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_asyncfor] = ACTIONS(2443), + [anon_sym_transform] = ACTIONS(2447), + [anon_sym_filter] = ACTIONS(2447), + [anon_sym_find] = ACTIONS(2447), + [anon_sym_remove] = ACTIONS(2447), + [anon_sym_reduce] = ACTIONS(2447), + [anon_sym_select] = ACTIONS(2447), + [anon_sym_insert] = ACTIONS(2447), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [300] = { - [sym_block] = STATE(500), - [sym_statement] = STATE(21), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(21), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [sym_expression] = STATE(664), + [sym__expression_kind] = STATE(706), + [aux_sym__expression_list] = STATE(304), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2443), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(2443), + [anon_sym_EQ] = ACTIONS(2447), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_PLUS_EQ] = ACTIONS(2443), + [anon_sym_DASH_EQ] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_asyncfor] = ACTIONS(2443), + [anon_sym_transform] = ACTIONS(2447), + [anon_sym_filter] = ACTIONS(2447), + [anon_sym_find] = ACTIONS(2447), + [anon_sym_remove] = ACTIONS(2447), + [anon_sym_reduce] = ACTIONS(2447), + [anon_sym_select] = ACTIONS(2447), + [anon_sym_insert] = ACTIONS(2447), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [301] = { - [sym_block] = STATE(902), - [sym_statement] = STATE(155), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(155), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [sym_expression] = STATE(668), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(293), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2624), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(233), + [anon_sym_RPAREN] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(2477), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_RBRACK] = ACTIONS(2477), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_elseif] = ACTIONS(2477), + [anon_sym_else] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_asyncfor] = ACTIONS(2477), + [anon_sym_transform] = ACTIONS(2479), + [anon_sym_filter] = ACTIONS(2479), + [anon_sym_find] = ACTIONS(2479), + [anon_sym_remove] = ACTIONS(2479), + [anon_sym_reduce] = ACTIONS(2479), + [anon_sym_select] = ACTIONS(2479), + [anon_sym_insert] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), }, [302] = { - [sym_block] = STATE(500), - [sym_statement] = STATE(157), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(157), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [sym_expression] = STATE(668), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(295), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2624), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(233), + [anon_sym_RPAREN] = ACTIONS(2473), + [anon_sym_COMMA] = ACTIONS(2473), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_RBRACK] = ACTIONS(2473), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_DOT_DOT] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_elseif] = ACTIONS(2473), + [anon_sym_else] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_asyncfor] = ACTIONS(2473), + [anon_sym_transform] = ACTIONS(2475), + [anon_sym_filter] = ACTIONS(2475), + [anon_sym_find] = ACTIONS(2475), + [anon_sym_remove] = ACTIONS(2475), + [anon_sym_reduce] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_insert] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), }, [303] = { - [sym_block] = STATE(489), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_expression] = STATE(591), + [sym__expression_kind] = STATE(631), + [aux_sym__expression_list] = STATE(303), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2520), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2523), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_RPAREN] = ACTIONS(2518), + [sym_integer] = ACTIONS(2529), + [sym_float] = ACTIONS(2532), + [sym_string] = ACTIONS(2532), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym_EQ] = ACTIONS(2541), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_PLUS_EQ] = ACTIONS(2518), + [anon_sym_DASH_EQ] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_elseif] = ACTIONS(2518), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_asyncfor] = ACTIONS(2518), + [anon_sym_transform] = ACTIONS(2541), + [anon_sym_filter] = ACTIONS(2541), + [anon_sym_find] = ACTIONS(2541), + [anon_sym_remove] = ACTIONS(2541), + [anon_sym_reduce] = ACTIONS(2541), + [anon_sym_select] = ACTIONS(2541), + [anon_sym_insert] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(2558), + [anon_sym_assert] = ACTIONS(2561), + [anon_sym_assert_equal] = ACTIONS(2561), + [anon_sym_download] = ACTIONS(2561), + [anon_sym_help] = ACTIONS(2561), + [anon_sym_length] = ACTIONS(2561), + [anon_sym_output] = ACTIONS(2561), + [anon_sym_output_error] = ACTIONS(2561), + [anon_sym_type] = ACTIONS(2561), + [anon_sym_append] = ACTIONS(2561), + [anon_sym_metadata] = ACTIONS(2561), + [anon_sym_move] = ACTIONS(2561), + [anon_sym_read] = ACTIONS(2561), + [anon_sym_workdir] = ACTIONS(2561), + [anon_sym_write] = ACTIONS(2561), + [anon_sym_from_json] = ACTIONS(2561), + [anon_sym_to_json] = ACTIONS(2561), + [anon_sym_to_string] = ACTIONS(2561), + [anon_sym_to_float] = ACTIONS(2561), + [anon_sym_bash] = ACTIONS(2561), + [anon_sym_fish] = ACTIONS(2561), + [anon_sym_raw] = ACTIONS(2561), + [anon_sym_sh] = ACTIONS(2561), + [anon_sym_zsh] = ACTIONS(2561), + [anon_sym_random] = ACTIONS(2561), + [anon_sym_random_boolean] = ACTIONS(2561), + [anon_sym_random_float] = ACTIONS(2561), + [anon_sym_random_integer] = ACTIONS(2561), + [anon_sym_columns] = ACTIONS(2561), + [anon_sym_rows] = ACTIONS(2561), + [anon_sym_reverse] = ACTIONS(2561), }, [304] = { - [sym_block] = STATE(902), - [sym_statement] = STATE(31), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(31), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [sym_expression] = STATE(664), + [sym__expression_kind] = STATE(706), + [aux_sym__expression_list] = STATE(304), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2564), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2567), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_RPAREN] = ACTIONS(2518), + [anon_sym_COMMA] = ACTIONS(2518), + [sym_integer] = ACTIONS(2573), + [sym_float] = ACTIONS(2576), + [sym_string] = ACTIONS(2576), + [anon_sym_true] = ACTIONS(2579), + [anon_sym_false] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2582), + [anon_sym_RBRACK] = ACTIONS(2518), + [anon_sym_EQ] = ACTIONS(2541), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_PLUS_EQ] = ACTIONS(2518), + [anon_sym_DASH_EQ] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_asyncfor] = ACTIONS(2518), + [anon_sym_transform] = ACTIONS(2541), + [anon_sym_filter] = ACTIONS(2541), + [anon_sym_find] = ACTIONS(2541), + [anon_sym_remove] = ACTIONS(2541), + [anon_sym_reduce] = ACTIONS(2541), + [anon_sym_select] = ACTIONS(2541), + [anon_sym_insert] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(2631), + [anon_sym_assert] = ACTIONS(2634), + [anon_sym_assert_equal] = ACTIONS(2634), + [anon_sym_download] = ACTIONS(2634), + [anon_sym_help] = ACTIONS(2634), + [anon_sym_length] = ACTIONS(2634), + [anon_sym_output] = ACTIONS(2634), + [anon_sym_output_error] = ACTIONS(2634), + [anon_sym_type] = ACTIONS(2634), + [anon_sym_append] = ACTIONS(2634), + [anon_sym_metadata] = ACTIONS(2634), + [anon_sym_move] = ACTIONS(2634), + [anon_sym_read] = ACTIONS(2634), + [anon_sym_workdir] = ACTIONS(2634), + [anon_sym_write] = ACTIONS(2634), + [anon_sym_from_json] = ACTIONS(2634), + [anon_sym_to_json] = ACTIONS(2634), + [anon_sym_to_string] = ACTIONS(2634), + [anon_sym_to_float] = ACTIONS(2634), + [anon_sym_bash] = ACTIONS(2634), + [anon_sym_fish] = ACTIONS(2634), + [anon_sym_raw] = ACTIONS(2634), + [anon_sym_sh] = ACTIONS(2634), + [anon_sym_zsh] = ACTIONS(2634), + [anon_sym_random] = ACTIONS(2634), + [anon_sym_random_boolean] = ACTIONS(2634), + [anon_sym_random_float] = ACTIONS(2634), + [anon_sym_random_integer] = ACTIONS(2634), + [anon_sym_columns] = ACTIONS(2634), + [anon_sym_rows] = ACTIONS(2634), + [anon_sym_reverse] = ACTIONS(2634), }, [305] = { - [sym_block] = STATE(500), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_expression] = STATE(1627), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(305), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_RPAREN] = ACTIONS(2481), + [anon_sym_COMMA] = ACTIONS(2481), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2495), + [sym_string] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_RBRACK] = ACTIONS(2481), + [anon_sym_EQ] = ACTIONS(2504), + [anon_sym_COLON] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_PERCENT] = ACTIONS(2481), + [anon_sym_EQ_EQ] = ACTIONS(2481), + [anon_sym_BANG_EQ] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_PIPE_PIPE] = ACTIONS(2481), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_GT_EQ] = ACTIONS(2481), + [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_PLUS_EQ] = ACTIONS(2481), + [anon_sym_DASH_EQ] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_asyncfor] = ACTIONS(2481), + [anon_sym_transform] = ACTIONS(2504), + [anon_sym_filter] = ACTIONS(2504), + [anon_sym_find] = ACTIONS(2504), + [anon_sym_remove] = ACTIONS(2504), + [anon_sym_reduce] = ACTIONS(2504), + [anon_sym_select] = ACTIONS(2504), + [anon_sym_insert] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_table] = ACTIONS(2512), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_assert_equal] = ACTIONS(2515), + [anon_sym_download] = ACTIONS(2515), + [anon_sym_help] = ACTIONS(2515), + [anon_sym_length] = ACTIONS(2515), + [anon_sym_output] = ACTIONS(2515), + [anon_sym_output_error] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_append] = ACTIONS(2515), + [anon_sym_metadata] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_read] = ACTIONS(2515), + [anon_sym_workdir] = ACTIONS(2515), + [anon_sym_write] = ACTIONS(2515), + [anon_sym_from_json] = ACTIONS(2515), + [anon_sym_to_json] = ACTIONS(2515), + [anon_sym_to_string] = ACTIONS(2515), + [anon_sym_to_float] = ACTIONS(2515), + [anon_sym_bash] = ACTIONS(2515), + [anon_sym_fish] = ACTIONS(2515), + [anon_sym_raw] = ACTIONS(2515), + [anon_sym_sh] = ACTIONS(2515), + [anon_sym_zsh] = ACTIONS(2515), + [anon_sym_random] = ACTIONS(2515), + [anon_sym_random_boolean] = ACTIONS(2515), + [anon_sym_random_float] = ACTIONS(2515), + [anon_sym_random_integer] = ACTIONS(2515), + [anon_sym_columns] = ACTIONS(2515), + [anon_sym_rows] = ACTIONS(2515), + [anon_sym_reverse] = ACTIONS(2515), }, [306] = { - [sym_block] = STATE(908), - [sym_statement] = STATE(156), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(156), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [sym_expression] = STATE(1627), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(305), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_COMMA] = ACTIONS(2449), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_RBRACK] = ACTIONS(2449), + [anon_sym_EQ] = ACTIONS(2465), + [anon_sym_COLON] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_PLUS_EQ] = ACTIONS(2449), + [anon_sym_DASH_EQ] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_asyncfor] = ACTIONS(2449), + [anon_sym_transform] = ACTIONS(2465), + [anon_sym_filter] = ACTIONS(2465), + [anon_sym_find] = ACTIONS(2465), + [anon_sym_remove] = ACTIONS(2465), + [anon_sym_reduce] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_insert] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), }, [307] = { - [sym_block] = STATE(470), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_expression] = STATE(664), + [sym__expression_kind] = STATE(706), + [aux_sym__expression_list] = STATE(304), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(2477), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(2477), + [anon_sym_EQ] = ACTIONS(2479), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_PLUS_EQ] = ACTIONS(2477), + [anon_sym_DASH_EQ] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_asyncfor] = ACTIONS(2477), + [anon_sym_transform] = ACTIONS(2479), + [anon_sym_filter] = ACTIONS(2479), + [anon_sym_find] = ACTIONS(2479), + [anon_sym_remove] = ACTIONS(2479), + [anon_sym_reduce] = ACTIONS(2479), + [anon_sym_select] = ACTIONS(2479), + [anon_sym_insert] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [308] = { - [sym_block] = STATE(698), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_expression] = STATE(1579), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(308), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_RPAREN] = ACTIONS(2481), + [anon_sym_COMMA] = ACTIONS(2481), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2495), + [sym_string] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_RBRACK] = ACTIONS(2481), + [anon_sym_COLON] = ACTIONS(2481), + [anon_sym_DOT_DOT] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_PERCENT] = ACTIONS(2481), + [anon_sym_EQ_EQ] = ACTIONS(2481), + [anon_sym_BANG_EQ] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_PIPE_PIPE] = ACTIONS(2481), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_GT_EQ] = ACTIONS(2481), + [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_elseif] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_asyncfor] = ACTIONS(2481), + [anon_sym_transform] = ACTIONS(2504), + [anon_sym_filter] = ACTIONS(2504), + [anon_sym_find] = ACTIONS(2504), + [anon_sym_remove] = ACTIONS(2504), + [anon_sym_reduce] = ACTIONS(2504), + [anon_sym_select] = ACTIONS(2504), + [anon_sym_insert] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_table] = ACTIONS(2512), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_assert_equal] = ACTIONS(2515), + [anon_sym_download] = ACTIONS(2515), + [anon_sym_help] = ACTIONS(2515), + [anon_sym_length] = ACTIONS(2515), + [anon_sym_output] = ACTIONS(2515), + [anon_sym_output_error] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_append] = ACTIONS(2515), + [anon_sym_metadata] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_read] = ACTIONS(2515), + [anon_sym_workdir] = ACTIONS(2515), + [anon_sym_write] = ACTIONS(2515), + [anon_sym_from_json] = ACTIONS(2515), + [anon_sym_to_json] = ACTIONS(2515), + [anon_sym_to_string] = ACTIONS(2515), + [anon_sym_to_float] = ACTIONS(2515), + [anon_sym_bash] = ACTIONS(2515), + [anon_sym_fish] = ACTIONS(2515), + [anon_sym_raw] = ACTIONS(2515), + [anon_sym_sh] = ACTIONS(2515), + [anon_sym_zsh] = ACTIONS(2515), + [anon_sym_random] = ACTIONS(2515), + [anon_sym_random_boolean] = ACTIONS(2515), + [anon_sym_random_float] = ACTIONS(2515), + [anon_sym_random_integer] = ACTIONS(2515), + [anon_sym_columns] = ACTIONS(2515), + [anon_sym_rows] = ACTIONS(2515), + [anon_sym_reverse] = ACTIONS(2515), }, [309] = { - [sym_block] = STATE(489), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [sym_expression] = STATE(1620), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(297), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2449), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_EQ] = ACTIONS(2465), + [anon_sym_COLON] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_PLUS_EQ] = ACTIONS(2449), + [anon_sym_DASH_EQ] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_elseif] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_asyncfor] = ACTIONS(2449), + [anon_sym_transform] = ACTIONS(2465), + [anon_sym_filter] = ACTIONS(2465), + [anon_sym_find] = ACTIONS(2465), + [anon_sym_remove] = ACTIONS(2465), + [anon_sym_reduce] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_insert] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), }, [310] = { - [sym_block] = STATE(486), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [sym_expression] = STATE(783), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(350), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment_operator] = STATE(540), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_elseif] = ACTIONS(2435), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), }, [311] = { - [sym_statement] = STATE(225), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(225), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [sym_expression] = STATE(664), + [sym__expression_kind] = STATE(706), + [aux_sym__expression_list] = STATE(300), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(2473), + [anon_sym_COMMA] = ACTIONS(2473), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(2473), + [anon_sym_EQ] = ACTIONS(2475), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_PLUS_EQ] = ACTIONS(2473), + [anon_sym_DASH_EQ] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_asyncfor] = ACTIONS(2473), + [anon_sym_transform] = ACTIONS(2475), + [anon_sym_filter] = ACTIONS(2475), + [anon_sym_find] = ACTIONS(2475), + [anon_sym_remove] = ACTIONS(2475), + [anon_sym_reduce] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_insert] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [312] = { - [sym_block] = STATE(486), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_expression] = STATE(1577), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(319), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_COMMA] = ACTIONS(2449), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_RBRACK] = ACTIONS(2449), + [anon_sym_COLON] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_elseif] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_asyncfor] = ACTIONS(2449), + [anon_sym_transform] = ACTIONS(2465), + [anon_sym_filter] = ACTIONS(2465), + [anon_sym_find] = ACTIONS(2465), + [anon_sym_remove] = ACTIONS(2465), + [anon_sym_reduce] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_insert] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), }, [313] = { - [sym_block] = STATE(902), - [sym_statement] = STATE(153), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [sym_expression] = STATE(876), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(375), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment_operator] = STATE(543), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), }, [314] = { - [sym_block] = STATE(908), - [sym_statement] = STATE(31), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(31), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [sym_expression] = STATE(744), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(317), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2624), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(233), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2443), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_RBRACK] = ACTIONS(2443), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_elseif] = ACTIONS(2443), + [anon_sym_else] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_asyncfor] = ACTIONS(2443), + [anon_sym_transform] = ACTIONS(2447), + [anon_sym_filter] = ACTIONS(2447), + [anon_sym_find] = ACTIONS(2447), + [anon_sym_remove] = ACTIONS(2447), + [anon_sym_reduce] = ACTIONS(2447), + [anon_sym_select] = ACTIONS(2447), + [anon_sym_insert] = ACTIONS(2447), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [315] = { - [sym_block] = STATE(484), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [sym_expression] = STATE(744), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(314), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2624), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(233), + [anon_sym_RPAREN] = ACTIONS(2473), + [anon_sym_COMMA] = ACTIONS(2473), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_RBRACK] = ACTIONS(2473), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_elseif] = ACTIONS(2473), + [anon_sym_else] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_asyncfor] = ACTIONS(2473), + [anon_sym_transform] = ACTIONS(2475), + [anon_sym_filter] = ACTIONS(2475), + [anon_sym_find] = ACTIONS(2475), + [anon_sym_remove] = ACTIONS(2475), + [anon_sym_reduce] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_insert] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [316] = { - [sym_block] = STATE(484), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [sym_expression] = STATE(744), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(317), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2624), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(233), + [anon_sym_RPAREN] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(2477), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_RBRACK] = ACTIONS(2477), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_elseif] = ACTIONS(2477), + [anon_sym_else] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_asyncfor] = ACTIONS(2477), + [anon_sym_transform] = ACTIONS(2479), + [anon_sym_filter] = ACTIONS(2479), + [anon_sym_find] = ACTIONS(2479), + [anon_sym_remove] = ACTIONS(2479), + [anon_sym_reduce] = ACTIONS(2479), + [anon_sym_select] = ACTIONS(2479), + [anon_sym_insert] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), + }, + [317] = { + [sym_expression] = STATE(744), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(317), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2594), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2600), + [anon_sym_RPAREN] = ACTIONS(2518), + [anon_sym_COMMA] = ACTIONS(2518), + [sym_integer] = ACTIONS(2603), + [sym_float] = ACTIONS(2606), + [sym_string] = ACTIONS(2606), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2612), + [anon_sym_RBRACK] = ACTIONS(2518), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_elseif] = ACTIONS(2518), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2637), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_asyncfor] = ACTIONS(2518), + [anon_sym_transform] = ACTIONS(2541), + [anon_sym_filter] = ACTIONS(2541), + [anon_sym_find] = ACTIONS(2541), + [anon_sym_remove] = ACTIONS(2541), + [anon_sym_reduce] = ACTIONS(2541), + [anon_sym_select] = ACTIONS(2541), + [anon_sym_insert] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(2640), + [anon_sym_assert] = ACTIONS(2643), + [anon_sym_assert_equal] = ACTIONS(2643), + [anon_sym_download] = ACTIONS(2643), + [anon_sym_help] = ACTIONS(2643), + [anon_sym_length] = ACTIONS(2643), + [anon_sym_output] = ACTIONS(2643), + [anon_sym_output_error] = ACTIONS(2643), + [anon_sym_type] = ACTIONS(2643), + [anon_sym_append] = ACTIONS(2643), + [anon_sym_metadata] = ACTIONS(2643), + [anon_sym_move] = ACTIONS(2643), + [anon_sym_read] = ACTIONS(2643), + [anon_sym_workdir] = ACTIONS(2643), + [anon_sym_write] = ACTIONS(2643), + [anon_sym_from_json] = ACTIONS(2643), + [anon_sym_to_json] = ACTIONS(2643), + [anon_sym_to_string] = ACTIONS(2643), + [anon_sym_to_float] = ACTIONS(2643), + [anon_sym_bash] = ACTIONS(2643), + [anon_sym_fish] = ACTIONS(2643), + [anon_sym_raw] = ACTIONS(2643), + [anon_sym_sh] = ACTIONS(2643), + [anon_sym_zsh] = ACTIONS(2643), + [anon_sym_random] = ACTIONS(2643), + [anon_sym_random_boolean] = ACTIONS(2643), + [anon_sym_random_float] = ACTIONS(2643), + [anon_sym_random_integer] = ACTIONS(2643), + [anon_sym_columns] = ACTIONS(2643), + [anon_sym_rows] = ACTIONS(2643), + [anon_sym_reverse] = ACTIONS(2643), + }, + [318] = { + [sym_expression] = STATE(1590), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(322), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2449), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_EQ] = ACTIONS(2465), + [anon_sym_COLON] = ACTIONS(2449), + [anon_sym_DOT_DOT] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_PLUS_EQ] = ACTIONS(2449), + [anon_sym_DASH_EQ] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_asyncfor] = ACTIONS(2449), + [anon_sym_transform] = ACTIONS(2465), + [anon_sym_filter] = ACTIONS(2465), + [anon_sym_find] = ACTIONS(2465), + [anon_sym_remove] = ACTIONS(2465), + [anon_sym_reduce] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_insert] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [319] = { + [sym_expression] = STATE(1577), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(319), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_RPAREN] = ACTIONS(2481), + [anon_sym_COMMA] = ACTIONS(2481), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2495), + [sym_string] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_RBRACK] = ACTIONS(2481), + [anon_sym_COLON] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_PERCENT] = ACTIONS(2481), + [anon_sym_EQ_EQ] = ACTIONS(2481), + [anon_sym_BANG_EQ] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_PIPE_PIPE] = ACTIONS(2481), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_GT_EQ] = ACTIONS(2481), + [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_elseif] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_asyncfor] = ACTIONS(2481), + [anon_sym_transform] = ACTIONS(2504), + [anon_sym_filter] = ACTIONS(2504), + [anon_sym_find] = ACTIONS(2504), + [anon_sym_remove] = ACTIONS(2504), + [anon_sym_reduce] = ACTIONS(2504), + [anon_sym_select] = ACTIONS(2504), + [anon_sym_insert] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_table] = ACTIONS(2512), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_assert_equal] = ACTIONS(2515), + [anon_sym_download] = ACTIONS(2515), + [anon_sym_help] = ACTIONS(2515), + [anon_sym_length] = ACTIONS(2515), + [anon_sym_output] = ACTIONS(2515), + [anon_sym_output_error] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_append] = ACTIONS(2515), + [anon_sym_metadata] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_read] = ACTIONS(2515), + [anon_sym_workdir] = ACTIONS(2515), + [anon_sym_write] = ACTIONS(2515), + [anon_sym_from_json] = ACTIONS(2515), + [anon_sym_to_json] = ACTIONS(2515), + [anon_sym_to_string] = ACTIONS(2515), + [anon_sym_to_float] = ACTIONS(2515), + [anon_sym_bash] = ACTIONS(2515), + [anon_sym_fish] = ACTIONS(2515), + [anon_sym_raw] = ACTIONS(2515), + [anon_sym_sh] = ACTIONS(2515), + [anon_sym_zsh] = ACTIONS(2515), + [anon_sym_random] = ACTIONS(2515), + [anon_sym_random_boolean] = ACTIONS(2515), + [anon_sym_random_float] = ACTIONS(2515), + [anon_sym_random_integer] = ACTIONS(2515), + [anon_sym_columns] = ACTIONS(2515), + [anon_sym_rows] = ACTIONS(2515), + [anon_sym_reverse] = ACTIONS(2515), + }, + [320] = { + [sym_expression] = STATE(680), + [sym__expression_kind] = STATE(706), + [aux_sym__expression_list] = STATE(323), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(2473), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_EQ] = ACTIONS(2475), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_DOT_DOT] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_PLUS_EQ] = ACTIONS(2473), + [anon_sym_DASH_EQ] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_asyncfor] = ACTIONS(2473), + [anon_sym_transform] = ACTIONS(2475), + [anon_sym_filter] = ACTIONS(2475), + [anon_sym_find] = ACTIONS(2475), + [anon_sym_remove] = ACTIONS(2475), + [anon_sym_reduce] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_insert] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), + }, + [321] = { + [sym_expression] = STATE(680), + [sym__expression_kind] = STATE(706), + [aux_sym__expression_list] = STATE(324), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(2477), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_EQ] = ACTIONS(2479), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_PLUS_EQ] = ACTIONS(2477), + [anon_sym_DASH_EQ] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_asyncfor] = ACTIONS(2477), + [anon_sym_transform] = ACTIONS(2479), + [anon_sym_filter] = ACTIONS(2479), + [anon_sym_find] = ACTIONS(2479), + [anon_sym_remove] = ACTIONS(2479), + [anon_sym_reduce] = ACTIONS(2479), + [anon_sym_select] = ACTIONS(2479), + [anon_sym_insert] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), + }, + [322] = { + [sym_expression] = STATE(1590), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(322), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_RPAREN] = ACTIONS(2481), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2495), + [sym_string] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_EQ] = ACTIONS(2504), + [anon_sym_COLON] = ACTIONS(2481), + [anon_sym_DOT_DOT] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_PERCENT] = ACTIONS(2481), + [anon_sym_EQ_EQ] = ACTIONS(2481), + [anon_sym_BANG_EQ] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_PIPE_PIPE] = ACTIONS(2481), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_GT_EQ] = ACTIONS(2481), + [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_PLUS_EQ] = ACTIONS(2481), + [anon_sym_DASH_EQ] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_asyncfor] = ACTIONS(2481), + [anon_sym_transform] = ACTIONS(2504), + [anon_sym_filter] = ACTIONS(2504), + [anon_sym_find] = ACTIONS(2504), + [anon_sym_remove] = ACTIONS(2504), + [anon_sym_reduce] = ACTIONS(2504), + [anon_sym_select] = ACTIONS(2504), + [anon_sym_insert] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_table] = ACTIONS(2512), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_assert_equal] = ACTIONS(2515), + [anon_sym_download] = ACTIONS(2515), + [anon_sym_help] = ACTIONS(2515), + [anon_sym_length] = ACTIONS(2515), + [anon_sym_output] = ACTIONS(2515), + [anon_sym_output_error] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_append] = ACTIONS(2515), + [anon_sym_metadata] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_read] = ACTIONS(2515), + [anon_sym_workdir] = ACTIONS(2515), + [anon_sym_write] = ACTIONS(2515), + [anon_sym_from_json] = ACTIONS(2515), + [anon_sym_to_json] = ACTIONS(2515), + [anon_sym_to_string] = ACTIONS(2515), + [anon_sym_to_float] = ACTIONS(2515), + [anon_sym_bash] = ACTIONS(2515), + [anon_sym_fish] = ACTIONS(2515), + [anon_sym_raw] = ACTIONS(2515), + [anon_sym_sh] = ACTIONS(2515), + [anon_sym_zsh] = ACTIONS(2515), + [anon_sym_random] = ACTIONS(2515), + [anon_sym_random_boolean] = ACTIONS(2515), + [anon_sym_random_float] = ACTIONS(2515), + [anon_sym_random_integer] = ACTIONS(2515), + [anon_sym_columns] = ACTIONS(2515), + [anon_sym_rows] = ACTIONS(2515), + [anon_sym_reverse] = ACTIONS(2515), + }, + [323] = { + [sym_expression] = STATE(680), + [sym__expression_kind] = STATE(706), + [aux_sym__expression_list] = STATE(324), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(2443), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_EQ] = ACTIONS(2447), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_PLUS_EQ] = ACTIONS(2443), + [anon_sym_DASH_EQ] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_asyncfor] = ACTIONS(2443), + [anon_sym_transform] = ACTIONS(2447), + [anon_sym_filter] = ACTIONS(2447), + [anon_sym_find] = ACTIONS(2447), + [anon_sym_remove] = ACTIONS(2447), + [anon_sym_reduce] = ACTIONS(2447), + [anon_sym_select] = ACTIONS(2447), + [anon_sym_insert] = ACTIONS(2447), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), + }, + [324] = { + [sym_expression] = STATE(680), + [sym__expression_kind] = STATE(706), + [aux_sym__expression_list] = STATE(324), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2564), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2567), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_RPAREN] = ACTIONS(2518), + [sym_integer] = ACTIONS(2573), + [sym_float] = ACTIONS(2576), + [sym_string] = ACTIONS(2576), + [anon_sym_true] = ACTIONS(2579), + [anon_sym_false] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2582), + [anon_sym_EQ] = ACTIONS(2541), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_PLUS_EQ] = ACTIONS(2518), + [anon_sym_DASH_EQ] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_asyncfor] = ACTIONS(2518), + [anon_sym_transform] = ACTIONS(2541), + [anon_sym_filter] = ACTIONS(2541), + [anon_sym_find] = ACTIONS(2541), + [anon_sym_remove] = ACTIONS(2541), + [anon_sym_reduce] = ACTIONS(2541), + [anon_sym_select] = ACTIONS(2541), + [anon_sym_insert] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(2588), + [anon_sym_assert] = ACTIONS(2591), + [anon_sym_assert_equal] = ACTIONS(2591), + [anon_sym_download] = ACTIONS(2591), + [anon_sym_help] = ACTIONS(2591), + [anon_sym_length] = ACTIONS(2591), + [anon_sym_output] = ACTIONS(2591), + [anon_sym_output_error] = ACTIONS(2591), + [anon_sym_type] = ACTIONS(2591), + [anon_sym_append] = ACTIONS(2591), + [anon_sym_metadata] = ACTIONS(2591), + [anon_sym_move] = ACTIONS(2591), + [anon_sym_read] = ACTIONS(2591), + [anon_sym_workdir] = ACTIONS(2591), + [anon_sym_write] = ACTIONS(2591), + [anon_sym_from_json] = ACTIONS(2591), + [anon_sym_to_json] = ACTIONS(2591), + [anon_sym_to_string] = ACTIONS(2591), + [anon_sym_to_float] = ACTIONS(2591), + [anon_sym_bash] = ACTIONS(2591), + [anon_sym_fish] = ACTIONS(2591), + [anon_sym_raw] = ACTIONS(2591), + [anon_sym_sh] = ACTIONS(2591), + [anon_sym_zsh] = ACTIONS(2591), + [anon_sym_random] = ACTIONS(2591), + [anon_sym_random_boolean] = ACTIONS(2591), + [anon_sym_random_float] = ACTIONS(2591), + [anon_sym_random_integer] = ACTIONS(2591), + [anon_sym_columns] = ACTIONS(2591), + [anon_sym_rows] = ACTIONS(2591), + [anon_sym_reverse] = ACTIONS(2591), + }, + [325] = { + [sym_expression] = STATE(718), + [sym__expression_kind] = STATE(706), + [aux_sym__expression_list] = STATE(343), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(2473), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_EQ] = ACTIONS(2475), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_PLUS_EQ] = ACTIONS(2473), + [anon_sym_DASH_EQ] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_asyncfor] = ACTIONS(2473), + [anon_sym_transform] = ACTIONS(2475), + [anon_sym_filter] = ACTIONS(2475), + [anon_sym_find] = ACTIONS(2475), + [anon_sym_remove] = ACTIONS(2475), + [anon_sym_reduce] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_insert] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), + }, + [326] = { + [sym_expression] = STATE(702), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(326), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2594), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2600), + [anon_sym_RPAREN] = ACTIONS(2518), + [sym_integer] = ACTIONS(2603), + [sym_float] = ACTIONS(2606), + [sym_string] = ACTIONS(2606), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2612), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_elseif] = ACTIONS(2518), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_asyncfor] = ACTIONS(2518), + [anon_sym_transform] = ACTIONS(2541), + [anon_sym_filter] = ACTIONS(2541), + [anon_sym_find] = ACTIONS(2541), + [anon_sym_remove] = ACTIONS(2541), + [anon_sym_reduce] = ACTIONS(2541), + [anon_sym_select] = ACTIONS(2541), + [anon_sym_insert] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(2618), + [anon_sym_assert] = ACTIONS(2621), + [anon_sym_assert_equal] = ACTIONS(2621), + [anon_sym_download] = ACTIONS(2621), + [anon_sym_help] = ACTIONS(2621), + [anon_sym_length] = ACTIONS(2621), + [anon_sym_output] = ACTIONS(2621), + [anon_sym_output_error] = ACTIONS(2621), + [anon_sym_type] = ACTIONS(2621), + [anon_sym_append] = ACTIONS(2621), + [anon_sym_metadata] = ACTIONS(2621), + [anon_sym_move] = ACTIONS(2621), + [anon_sym_read] = ACTIONS(2621), + [anon_sym_workdir] = ACTIONS(2621), + [anon_sym_write] = ACTIONS(2621), + [anon_sym_from_json] = ACTIONS(2621), + [anon_sym_to_json] = ACTIONS(2621), + [anon_sym_to_string] = ACTIONS(2621), + [anon_sym_to_float] = ACTIONS(2621), + [anon_sym_bash] = ACTIONS(2621), + [anon_sym_fish] = ACTIONS(2621), + [anon_sym_raw] = ACTIONS(2621), + [anon_sym_sh] = ACTIONS(2621), + [anon_sym_zsh] = ACTIONS(2621), + [anon_sym_random] = ACTIONS(2621), + [anon_sym_random_boolean] = ACTIONS(2621), + [anon_sym_random_float] = ACTIONS(2621), + [anon_sym_random_integer] = ACTIONS(2621), + [anon_sym_columns] = ACTIONS(2621), + [anon_sym_rows] = ACTIONS(2621), + [anon_sym_reverse] = ACTIONS(2621), + }, + [327] = { + [sym_expression] = STATE(1587), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(328), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2449), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_EQ] = ACTIONS(2465), + [anon_sym_COLON] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_PLUS_EQ] = ACTIONS(2449), + [anon_sym_DASH_EQ] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_asyncfor] = ACTIONS(2449), + [anon_sym_transform] = ACTIONS(2465), + [anon_sym_filter] = ACTIONS(2465), + [anon_sym_find] = ACTIONS(2465), + [anon_sym_remove] = ACTIONS(2465), + [anon_sym_reduce] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_insert] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [328] = { + [sym_expression] = STATE(1587), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(328), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_RPAREN] = ACTIONS(2481), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2495), + [sym_string] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_EQ] = ACTIONS(2504), + [anon_sym_COLON] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_PERCENT] = ACTIONS(2481), + [anon_sym_EQ_EQ] = ACTIONS(2481), + [anon_sym_BANG_EQ] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_PIPE_PIPE] = ACTIONS(2481), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_GT_EQ] = ACTIONS(2481), + [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_PLUS_EQ] = ACTIONS(2481), + [anon_sym_DASH_EQ] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_asyncfor] = ACTIONS(2481), + [anon_sym_transform] = ACTIONS(2504), + [anon_sym_filter] = ACTIONS(2504), + [anon_sym_find] = ACTIONS(2504), + [anon_sym_remove] = ACTIONS(2504), + [anon_sym_reduce] = ACTIONS(2504), + [anon_sym_select] = ACTIONS(2504), + [anon_sym_insert] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_table] = ACTIONS(2512), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_assert_equal] = ACTIONS(2515), + [anon_sym_download] = ACTIONS(2515), + [anon_sym_help] = ACTIONS(2515), + [anon_sym_length] = ACTIONS(2515), + [anon_sym_output] = ACTIONS(2515), + [anon_sym_output_error] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_append] = ACTIONS(2515), + [anon_sym_metadata] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_read] = ACTIONS(2515), + [anon_sym_workdir] = ACTIONS(2515), + [anon_sym_write] = ACTIONS(2515), + [anon_sym_from_json] = ACTIONS(2515), + [anon_sym_to_json] = ACTIONS(2515), + [anon_sym_to_string] = ACTIONS(2515), + [anon_sym_to_float] = ACTIONS(2515), + [anon_sym_bash] = ACTIONS(2515), + [anon_sym_fish] = ACTIONS(2515), + [anon_sym_raw] = ACTIONS(2515), + [anon_sym_sh] = ACTIONS(2515), + [anon_sym_zsh] = ACTIONS(2515), + [anon_sym_random] = ACTIONS(2515), + [anon_sym_random_boolean] = ACTIONS(2515), + [anon_sym_random_float] = ACTIONS(2515), + [anon_sym_random_integer] = ACTIONS(2515), + [anon_sym_columns] = ACTIONS(2515), + [anon_sym_rows] = ACTIONS(2515), + [anon_sym_reverse] = ACTIONS(2515), + }, + [329] = { + [sym_expression] = STATE(702), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(326), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2624), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(233), + [anon_sym_RPAREN] = ACTIONS(2443), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_elseif] = ACTIONS(2443), + [anon_sym_else] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_asyncfor] = ACTIONS(2443), + [anon_sym_transform] = ACTIONS(2447), + [anon_sym_filter] = ACTIONS(2447), + [anon_sym_find] = ACTIONS(2447), + [anon_sym_remove] = ACTIONS(2447), + [anon_sym_reduce] = ACTIONS(2447), + [anon_sym_select] = ACTIONS(2447), + [anon_sym_insert] = ACTIONS(2447), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), + }, + [330] = { + [sym_expression] = STATE(876), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(375), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment_operator] = STATE(536), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), + }, + [331] = { + [sym_expression] = STATE(718), + [sym__expression_kind] = STATE(706), + [aux_sym__expression_list] = STATE(335), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(2477), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_EQ] = ACTIONS(2479), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_PLUS_EQ] = ACTIONS(2477), + [anon_sym_DASH_EQ] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_asyncfor] = ACTIONS(2477), + [anon_sym_transform] = ACTIONS(2479), + [anon_sym_filter] = ACTIONS(2479), + [anon_sym_find] = ACTIONS(2479), + [anon_sym_remove] = ACTIONS(2479), + [anon_sym_reduce] = ACTIONS(2479), + [anon_sym_select] = ACTIONS(2479), + [anon_sym_insert] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), + }, + [332] = { + [sym_expression] = STATE(1586), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(332), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_RPAREN] = ACTIONS(2481), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2495), + [sym_string] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_COLON] = ACTIONS(2481), + [anon_sym_DOT_DOT] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_PERCENT] = ACTIONS(2481), + [anon_sym_EQ_EQ] = ACTIONS(2481), + [anon_sym_BANG_EQ] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_PIPE_PIPE] = ACTIONS(2481), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_GT_EQ] = ACTIONS(2481), + [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_elseif] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_asyncfor] = ACTIONS(2481), + [anon_sym_transform] = ACTIONS(2504), + [anon_sym_filter] = ACTIONS(2504), + [anon_sym_find] = ACTIONS(2504), + [anon_sym_remove] = ACTIONS(2504), + [anon_sym_reduce] = ACTIONS(2504), + [anon_sym_select] = ACTIONS(2504), + [anon_sym_insert] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_table] = ACTIONS(2512), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_assert_equal] = ACTIONS(2515), + [anon_sym_download] = ACTIONS(2515), + [anon_sym_help] = ACTIONS(2515), + [anon_sym_length] = ACTIONS(2515), + [anon_sym_output] = ACTIONS(2515), + [anon_sym_output_error] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_append] = ACTIONS(2515), + [anon_sym_metadata] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_read] = ACTIONS(2515), + [anon_sym_workdir] = ACTIONS(2515), + [anon_sym_write] = ACTIONS(2515), + [anon_sym_from_json] = ACTIONS(2515), + [anon_sym_to_json] = ACTIONS(2515), + [anon_sym_to_string] = ACTIONS(2515), + [anon_sym_to_float] = ACTIONS(2515), + [anon_sym_bash] = ACTIONS(2515), + [anon_sym_fish] = ACTIONS(2515), + [anon_sym_raw] = ACTIONS(2515), + [anon_sym_sh] = ACTIONS(2515), + [anon_sym_zsh] = ACTIONS(2515), + [anon_sym_random] = ACTIONS(2515), + [anon_sym_random_boolean] = ACTIONS(2515), + [anon_sym_random_float] = ACTIONS(2515), + [anon_sym_random_integer] = ACTIONS(2515), + [anon_sym_columns] = ACTIONS(2515), + [anon_sym_rows] = ACTIONS(2515), + [anon_sym_reverse] = ACTIONS(2515), + }, + [333] = { + [sym_expression] = STATE(1586), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(332), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2449), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(2449), + [anon_sym_DOT_DOT] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_elseif] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_asyncfor] = ACTIONS(2449), + [anon_sym_transform] = ACTIONS(2465), + [anon_sym_filter] = ACTIONS(2465), + [anon_sym_find] = ACTIONS(2465), + [anon_sym_remove] = ACTIONS(2465), + [anon_sym_reduce] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_insert] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [334] = { + [sym_expression] = STATE(755), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(334), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2646), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2518), + [anon_sym_COMMA] = ACTIONS(2518), + [sym_integer] = ACTIONS(2655), + [sym_float] = ACTIONS(2658), + [sym_string] = ACTIONS(2658), + [anon_sym_true] = ACTIONS(2661), + [anon_sym_false] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_RBRACK] = ACTIONS(2518), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2667), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_asyncfor] = ACTIONS(2518), + [anon_sym_transform] = ACTIONS(2541), + [anon_sym_filter] = ACTIONS(2541), + [anon_sym_find] = ACTIONS(2541), + [anon_sym_remove] = ACTIONS(2541), + [anon_sym_reduce] = ACTIONS(2541), + [anon_sym_select] = ACTIONS(2541), + [anon_sym_insert] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(2670), + [anon_sym_assert] = ACTIONS(2673), + [anon_sym_assert_equal] = ACTIONS(2673), + [anon_sym_download] = ACTIONS(2673), + [anon_sym_help] = ACTIONS(2673), + [anon_sym_length] = ACTIONS(2673), + [anon_sym_output] = ACTIONS(2673), + [anon_sym_output_error] = ACTIONS(2673), + [anon_sym_type] = ACTIONS(2673), + [anon_sym_append] = ACTIONS(2673), + [anon_sym_metadata] = ACTIONS(2673), + [anon_sym_move] = ACTIONS(2673), + [anon_sym_read] = ACTIONS(2673), + [anon_sym_workdir] = ACTIONS(2673), + [anon_sym_write] = ACTIONS(2673), + [anon_sym_from_json] = ACTIONS(2673), + [anon_sym_to_json] = ACTIONS(2673), + [anon_sym_to_string] = ACTIONS(2673), + [anon_sym_to_float] = ACTIONS(2673), + [anon_sym_bash] = ACTIONS(2673), + [anon_sym_fish] = ACTIONS(2673), + [anon_sym_raw] = ACTIONS(2673), + [anon_sym_sh] = ACTIONS(2673), + [anon_sym_zsh] = ACTIONS(2673), + [anon_sym_random] = ACTIONS(2673), + [anon_sym_random_boolean] = ACTIONS(2673), + [anon_sym_random_float] = ACTIONS(2673), + [anon_sym_random_integer] = ACTIONS(2673), + [anon_sym_columns] = ACTIONS(2673), + [anon_sym_rows] = ACTIONS(2673), + [anon_sym_reverse] = ACTIONS(2673), + }, + [335] = { + [sym_expression] = STATE(718), + [sym__expression_kind] = STATE(706), + [aux_sym__expression_list] = STATE(335), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2564), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2567), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_RPAREN] = ACTIONS(2518), + [sym_integer] = ACTIONS(2573), + [sym_float] = ACTIONS(2576), + [sym_string] = ACTIONS(2576), + [anon_sym_true] = ACTIONS(2579), + [anon_sym_false] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2582), + [anon_sym_EQ] = ACTIONS(2541), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_PLUS_EQ] = ACTIONS(2518), + [anon_sym_DASH_EQ] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_asyncfor] = ACTIONS(2518), + [anon_sym_transform] = ACTIONS(2541), + [anon_sym_filter] = ACTIONS(2541), + [anon_sym_find] = ACTIONS(2541), + [anon_sym_remove] = ACTIONS(2541), + [anon_sym_reduce] = ACTIONS(2541), + [anon_sym_select] = ACTIONS(2541), + [anon_sym_insert] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(2631), + [anon_sym_assert] = ACTIONS(2634), + [anon_sym_assert_equal] = ACTIONS(2634), + [anon_sym_download] = ACTIONS(2634), + [anon_sym_help] = ACTIONS(2634), + [anon_sym_length] = ACTIONS(2634), + [anon_sym_output] = ACTIONS(2634), + [anon_sym_output_error] = ACTIONS(2634), + [anon_sym_type] = ACTIONS(2634), + [anon_sym_append] = ACTIONS(2634), + [anon_sym_metadata] = ACTIONS(2634), + [anon_sym_move] = ACTIONS(2634), + [anon_sym_read] = ACTIONS(2634), + [anon_sym_workdir] = ACTIONS(2634), + [anon_sym_write] = ACTIONS(2634), + [anon_sym_from_json] = ACTIONS(2634), + [anon_sym_to_json] = ACTIONS(2634), + [anon_sym_to_string] = ACTIONS(2634), + [anon_sym_to_float] = ACTIONS(2634), + [anon_sym_bash] = ACTIONS(2634), + [anon_sym_fish] = ACTIONS(2634), + [anon_sym_raw] = ACTIONS(2634), + [anon_sym_sh] = ACTIONS(2634), + [anon_sym_zsh] = ACTIONS(2634), + [anon_sym_random] = ACTIONS(2634), + [anon_sym_random_boolean] = ACTIONS(2634), + [anon_sym_random_float] = ACTIONS(2634), + [anon_sym_random_integer] = ACTIONS(2634), + [anon_sym_columns] = ACTIONS(2634), + [anon_sym_rows] = ACTIONS(2634), + [anon_sym_reverse] = ACTIONS(2634), + }, + [336] = { + [sym_expression] = STATE(755), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(334), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2676), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2443), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), [sym_string] = ACTIONS(13), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [anon_sym_RBRACK] = ACTIONS(2443), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_asyncfor] = ACTIONS(2443), + [anon_sym_transform] = ACTIONS(2447), + [anon_sym_filter] = ACTIONS(2447), + [anon_sym_find] = ACTIONS(2447), + [anon_sym_remove] = ACTIONS(2447), + [anon_sym_reduce] = ACTIONS(2447), + [anon_sym_select] = ACTIONS(2447), + [anon_sym_insert] = ACTIONS(2447), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), }, - [317] = { - [sym_block] = STATE(718), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), + [337] = { + [sym_expression] = STATE(755), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(334), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2676), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(2477), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(2477), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_asyncfor] = ACTIONS(2477), + [anon_sym_transform] = ACTIONS(2479), + [anon_sym_filter] = ACTIONS(2479), + [anon_sym_find] = ACTIONS(2479), + [anon_sym_remove] = ACTIONS(2479), + [anon_sym_reduce] = ACTIONS(2479), + [anon_sym_select] = ACTIONS(2479), + [anon_sym_insert] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), + }, + [338] = { + [sym_expression] = STATE(755), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(336), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2676), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(2473), + [anon_sym_COMMA] = ACTIONS(2473), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(2473), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_DOT_DOT] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_asyncfor] = ACTIONS(2473), + [anon_sym_transform] = ACTIONS(2475), + [anon_sym_filter] = ACTIONS(2475), + [anon_sym_find] = ACTIONS(2475), + [anon_sym_remove] = ACTIONS(2475), + [anon_sym_reduce] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_insert] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), + }, + [339] = { + [sym_expression] = STATE(1593), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(339), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_RPAREN] = ACTIONS(2481), + [anon_sym_COMMA] = ACTIONS(2481), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2495), + [sym_string] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_RBRACK] = ACTIONS(2481), + [anon_sym_COLON] = ACTIONS(2481), + [anon_sym_DOT_DOT] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_PERCENT] = ACTIONS(2481), + [anon_sym_EQ_EQ] = ACTIONS(2481), + [anon_sym_BANG_EQ] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_PIPE_PIPE] = ACTIONS(2481), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_GT_EQ] = ACTIONS(2481), + [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_asyncfor] = ACTIONS(2481), + [anon_sym_transform] = ACTIONS(2504), + [anon_sym_filter] = ACTIONS(2504), + [anon_sym_find] = ACTIONS(2504), + [anon_sym_remove] = ACTIONS(2504), + [anon_sym_reduce] = ACTIONS(2504), + [anon_sym_select] = ACTIONS(2504), + [anon_sym_insert] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_table] = ACTIONS(2512), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_assert_equal] = ACTIONS(2515), + [anon_sym_download] = ACTIONS(2515), + [anon_sym_help] = ACTIONS(2515), + [anon_sym_length] = ACTIONS(2515), + [anon_sym_output] = ACTIONS(2515), + [anon_sym_output_error] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_append] = ACTIONS(2515), + [anon_sym_metadata] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_read] = ACTIONS(2515), + [anon_sym_workdir] = ACTIONS(2515), + [anon_sym_write] = ACTIONS(2515), + [anon_sym_from_json] = ACTIONS(2515), + [anon_sym_to_json] = ACTIONS(2515), + [anon_sym_to_string] = ACTIONS(2515), + [anon_sym_to_float] = ACTIONS(2515), + [anon_sym_bash] = ACTIONS(2515), + [anon_sym_fish] = ACTIONS(2515), + [anon_sym_raw] = ACTIONS(2515), + [anon_sym_sh] = ACTIONS(2515), + [anon_sym_zsh] = ACTIONS(2515), + [anon_sym_random] = ACTIONS(2515), + [anon_sym_random_boolean] = ACTIONS(2515), + [anon_sym_random_float] = ACTIONS(2515), + [anon_sym_random_integer] = ACTIONS(2515), + [anon_sym_columns] = ACTIONS(2515), + [anon_sym_rows] = ACTIONS(2515), + [anon_sym_reverse] = ACTIONS(2515), + }, + [340] = { + [sym_expression] = STATE(828), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(361), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment_operator] = STATE(554), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), + }, + [341] = { + [sym_expression] = STATE(702), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(329), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2624), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(233), + [anon_sym_RPAREN] = ACTIONS(2473), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_DOT_DOT] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_elseif] = ACTIONS(2473), + [anon_sym_else] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_asyncfor] = ACTIONS(2473), + [anon_sym_transform] = ACTIONS(2475), + [anon_sym_filter] = ACTIONS(2475), + [anon_sym_find] = ACTIONS(2475), + [anon_sym_remove] = ACTIONS(2475), + [anon_sym_reduce] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_insert] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), + }, + [342] = { + [sym_expression] = STATE(1593), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(339), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_COMMA] = ACTIONS(2449), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_RBRACK] = ACTIONS(2449), + [anon_sym_COLON] = ACTIONS(2449), + [anon_sym_DOT_DOT] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_asyncfor] = ACTIONS(2449), + [anon_sym_transform] = ACTIONS(2465), + [anon_sym_filter] = ACTIONS(2465), + [anon_sym_find] = ACTIONS(2465), + [anon_sym_remove] = ACTIONS(2465), + [anon_sym_reduce] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_insert] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [343] = { + [sym_expression] = STATE(718), + [sym__expression_kind] = STATE(706), + [aux_sym__expression_list] = STATE(335), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(2443), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_EQ] = ACTIONS(2447), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_PLUS_EQ] = ACTIONS(2443), + [anon_sym_DASH_EQ] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_asyncfor] = ACTIONS(2443), + [anon_sym_transform] = ACTIONS(2447), + [anon_sym_filter] = ACTIONS(2447), + [anon_sym_find] = ACTIONS(2447), + [anon_sym_remove] = ACTIONS(2447), + [anon_sym_reduce] = ACTIONS(2447), + [anon_sym_select] = ACTIONS(2447), + [anon_sym_insert] = ACTIONS(2447), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), + }, + [344] = { + [sym_expression] = STATE(702), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(326), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2624), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(233), + [anon_sym_RPAREN] = ACTIONS(2477), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_elseif] = ACTIONS(2477), + [anon_sym_else] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_asyncfor] = ACTIONS(2477), + [anon_sym_transform] = ACTIONS(2479), + [anon_sym_filter] = ACTIONS(2479), + [anon_sym_find] = ACTIONS(2479), + [anon_sym_remove] = ACTIONS(2479), + [anon_sym_reduce] = ACTIONS(2479), + [anon_sym_select] = ACTIONS(2479), + [anon_sym_insert] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), + }, + [345] = { + [sym_expression] = STATE(1609), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(345), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_RPAREN] = ACTIONS(2481), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2495), + [sym_string] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_COLON] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_PERCENT] = ACTIONS(2481), + [anon_sym_EQ_EQ] = ACTIONS(2481), + [anon_sym_BANG_EQ] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_PIPE_PIPE] = ACTIONS(2481), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_GT_EQ] = ACTIONS(2481), + [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_elseif] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_asyncfor] = ACTIONS(2481), + [anon_sym_transform] = ACTIONS(2504), + [anon_sym_filter] = ACTIONS(2504), + [anon_sym_find] = ACTIONS(2504), + [anon_sym_remove] = ACTIONS(2504), + [anon_sym_reduce] = ACTIONS(2504), + [anon_sym_select] = ACTIONS(2504), + [anon_sym_insert] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_table] = ACTIONS(2512), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_assert_equal] = ACTIONS(2515), + [anon_sym_download] = ACTIONS(2515), + [anon_sym_help] = ACTIONS(2515), + [anon_sym_length] = ACTIONS(2515), + [anon_sym_output] = ACTIONS(2515), + [anon_sym_output_error] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_append] = ACTIONS(2515), + [anon_sym_metadata] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_read] = ACTIONS(2515), + [anon_sym_workdir] = ACTIONS(2515), + [anon_sym_write] = ACTIONS(2515), + [anon_sym_from_json] = ACTIONS(2515), + [anon_sym_to_json] = ACTIONS(2515), + [anon_sym_to_string] = ACTIONS(2515), + [anon_sym_to_float] = ACTIONS(2515), + [anon_sym_bash] = ACTIONS(2515), + [anon_sym_fish] = ACTIONS(2515), + [anon_sym_raw] = ACTIONS(2515), + [anon_sym_sh] = ACTIONS(2515), + [anon_sym_zsh] = ACTIONS(2515), + [anon_sym_random] = ACTIONS(2515), + [anon_sym_random_boolean] = ACTIONS(2515), + [anon_sym_random_float] = ACTIONS(2515), + [anon_sym_random_integer] = ACTIONS(2515), + [anon_sym_columns] = ACTIONS(2515), + [anon_sym_rows] = ACTIONS(2515), + [anon_sym_reverse] = ACTIONS(2515), + }, + [346] = { + [sym_expression] = STATE(1578), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(346), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_RPAREN] = ACTIONS(2481), + [anon_sym_COMMA] = ACTIONS(2481), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2495), + [sym_string] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_RBRACK] = ACTIONS(2481), + [anon_sym_COLON] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_PERCENT] = ACTIONS(2481), + [anon_sym_EQ_EQ] = ACTIONS(2481), + [anon_sym_BANG_EQ] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_PIPE_PIPE] = ACTIONS(2481), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_GT_EQ] = ACTIONS(2481), + [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_asyncfor] = ACTIONS(2481), + [anon_sym_transform] = ACTIONS(2504), + [anon_sym_filter] = ACTIONS(2504), + [anon_sym_find] = ACTIONS(2504), + [anon_sym_remove] = ACTIONS(2504), + [anon_sym_reduce] = ACTIONS(2504), + [anon_sym_select] = ACTIONS(2504), + [anon_sym_insert] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_table] = ACTIONS(2512), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_assert_equal] = ACTIONS(2515), + [anon_sym_download] = ACTIONS(2515), + [anon_sym_help] = ACTIONS(2515), + [anon_sym_length] = ACTIONS(2515), + [anon_sym_output] = ACTIONS(2515), + [anon_sym_output_error] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_append] = ACTIONS(2515), + [anon_sym_metadata] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_read] = ACTIONS(2515), + [anon_sym_workdir] = ACTIONS(2515), + [anon_sym_write] = ACTIONS(2515), + [anon_sym_from_json] = ACTIONS(2515), + [anon_sym_to_json] = ACTIONS(2515), + [anon_sym_to_string] = ACTIONS(2515), + [anon_sym_to_float] = ACTIONS(2515), + [anon_sym_bash] = ACTIONS(2515), + [anon_sym_fish] = ACTIONS(2515), + [anon_sym_raw] = ACTIONS(2515), + [anon_sym_sh] = ACTIONS(2515), + [anon_sym_zsh] = ACTIONS(2515), + [anon_sym_random] = ACTIONS(2515), + [anon_sym_random_boolean] = ACTIONS(2515), + [anon_sym_random_float] = ACTIONS(2515), + [anon_sym_random_integer] = ACTIONS(2515), + [anon_sym_columns] = ACTIONS(2515), + [anon_sym_rows] = ACTIONS(2515), + [anon_sym_reverse] = ACTIONS(2515), + }, + [347] = { + [sym_expression] = STATE(1578), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(346), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_COMMA] = ACTIONS(2449), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_RBRACK] = ACTIONS(2449), + [anon_sym_COLON] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_asyncfor] = ACTIONS(2449), + [anon_sym_transform] = ACTIONS(2465), + [anon_sym_filter] = ACTIONS(2465), + [anon_sym_find] = ACTIONS(2465), + [anon_sym_remove] = ACTIONS(2465), + [anon_sym_reduce] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_insert] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [348] = { + [sym_statement] = STATE(348), + [sym_expression] = STATE(859), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(754), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(985), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(2678), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(1322), + [anon_sym_COMMA] = ACTIONS(343), + [sym_integer] = ACTIONS(1325), + [sym_float] = ACTIONS(1328), + [sym_string] = ACTIONS(1328), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(2681), + [anon_sym_elseif] = ACTIONS(343), + [anon_sym_else] = ACTIONS(366), + [anon_sym_match] = ACTIONS(2684), + [anon_sym_EQ_GT] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2690), + [anon_sym_asyncfor] = ACTIONS(2693), + [anon_sym_transform] = ACTIONS(2696), + [anon_sym_filter] = ACTIONS(2699), + [anon_sym_find] = ACTIONS(2702), + [anon_sym_remove] = ACTIONS(2705), + [anon_sym_reduce] = ACTIONS(2708), + [anon_sym_select] = ACTIONS(2711), + [anon_sym_insert] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2717), + [anon_sym_table] = ACTIONS(1430), + [anon_sym_assert] = ACTIONS(1433), + [anon_sym_assert_equal] = ACTIONS(1433), + [anon_sym_download] = ACTIONS(1433), + [anon_sym_help] = ACTIONS(1433), + [anon_sym_length] = ACTIONS(1433), + [anon_sym_output] = ACTIONS(1433), + [anon_sym_output_error] = ACTIONS(1433), + [anon_sym_type] = ACTIONS(1433), + [anon_sym_append] = ACTIONS(1433), + [anon_sym_metadata] = ACTIONS(1433), + [anon_sym_move] = ACTIONS(1433), + [anon_sym_read] = ACTIONS(1433), + [anon_sym_workdir] = ACTIONS(1433), + [anon_sym_write] = ACTIONS(1433), + [anon_sym_from_json] = ACTIONS(1433), + [anon_sym_to_json] = ACTIONS(1433), + [anon_sym_to_string] = ACTIONS(1433), + [anon_sym_to_float] = ACTIONS(1433), + [anon_sym_bash] = ACTIONS(1433), + [anon_sym_fish] = ACTIONS(1433), + [anon_sym_raw] = ACTIONS(1433), + [anon_sym_sh] = ACTIONS(1433), + [anon_sym_zsh] = ACTIONS(1433), + [anon_sym_random] = ACTIONS(1433), + [anon_sym_random_boolean] = ACTIONS(1433), + [anon_sym_random_float] = ACTIONS(1433), + [anon_sym_random_integer] = ACTIONS(1433), + [anon_sym_columns] = ACTIONS(1433), + [anon_sym_rows] = ACTIONS(1433), + [anon_sym_reverse] = ACTIONS(1433), + }, + [349] = { + [sym_expression] = STATE(876), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(375), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment_operator] = STATE(536), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2720), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), + }, + [350] = { + [sym_expression] = STATE(783), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(357), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2624), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(233), + [anon_sym_RPAREN] = ACTIONS(2477), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_elseif] = ACTIONS(2477), + [anon_sym_else] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_asyncfor] = ACTIONS(2477), + [anon_sym_transform] = ACTIONS(2479), + [anon_sym_filter] = ACTIONS(2479), + [anon_sym_find] = ACTIONS(2479), + [anon_sym_remove] = ACTIONS(2479), + [anon_sym_reduce] = ACTIONS(2479), + [anon_sym_select] = ACTIONS(2479), + [anon_sym_insert] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), + }, + [351] = { + [sym_expression] = STATE(783), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(355), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2624), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(233), + [anon_sym_RPAREN] = ACTIONS(2473), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_elseif] = ACTIONS(2473), + [anon_sym_else] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_asyncfor] = ACTIONS(2473), + [anon_sym_transform] = ACTIONS(2475), + [anon_sym_filter] = ACTIONS(2475), + [anon_sym_find] = ACTIONS(2475), + [anon_sym_remove] = ACTIONS(2475), + [anon_sym_reduce] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_insert] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), + }, + [352] = { + [sym_statement] = STATE(359), + [sym_expression] = STATE(877), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(782), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(978), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(359), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(2722), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(997), + [sym_integer] = ACTIONS(1000), + [sym_float] = ACTIONS(1003), + [sym_string] = ACTIONS(1003), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_elseif] = ACTIONS(419), + [anon_sym_else] = ACTIONS(442), + [anon_sym_match] = ACTIONS(2728), + [anon_sym_EQ_GT] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2731), + [anon_sym_for] = ACTIONS(2734), + [anon_sym_asyncfor] = ACTIONS(2737), + [anon_sym_transform] = ACTIONS(2740), + [anon_sym_filter] = ACTIONS(2743), + [anon_sym_find] = ACTIONS(2746), + [anon_sym_remove] = ACTIONS(2749), + [anon_sym_reduce] = ACTIONS(2752), + [anon_sym_select] = ACTIONS(2755), + [anon_sym_insert] = ACTIONS(2150), + [anon_sym_async] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2761), + [anon_sym_table] = ACTIONS(2156), + [anon_sym_assert] = ACTIONS(2159), + [anon_sym_assert_equal] = ACTIONS(2159), + [anon_sym_download] = ACTIONS(2159), + [anon_sym_help] = ACTIONS(2159), + [anon_sym_length] = ACTIONS(2159), + [anon_sym_output] = ACTIONS(2159), + [anon_sym_output_error] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_append] = ACTIONS(2159), + [anon_sym_metadata] = ACTIONS(2159), + [anon_sym_move] = ACTIONS(2159), + [anon_sym_read] = ACTIONS(2159), + [anon_sym_workdir] = ACTIONS(2159), + [anon_sym_write] = ACTIONS(2159), + [anon_sym_from_json] = ACTIONS(2159), + [anon_sym_to_json] = ACTIONS(2159), + [anon_sym_to_string] = ACTIONS(2159), + [anon_sym_to_float] = ACTIONS(2159), + [anon_sym_bash] = ACTIONS(2159), + [anon_sym_fish] = ACTIONS(2159), + [anon_sym_raw] = ACTIONS(2159), + [anon_sym_sh] = ACTIONS(2159), + [anon_sym_zsh] = ACTIONS(2159), + [anon_sym_random] = ACTIONS(2159), + [anon_sym_random_boolean] = ACTIONS(2159), + [anon_sym_random_float] = ACTIONS(2159), + [anon_sym_random_integer] = ACTIONS(2159), + [anon_sym_columns] = ACTIONS(2159), + [anon_sym_rows] = ACTIONS(2159), + [anon_sym_reverse] = ACTIONS(2159), + }, + [353] = { + [sym_expression] = STATE(828), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(353), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2646), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2518), + [anon_sym_COMMA] = ACTIONS(2518), + [sym_integer] = ACTIONS(2655), + [sym_float] = ACTIONS(2658), + [sym_string] = ACTIONS(2658), + [anon_sym_true] = ACTIONS(2661), + [anon_sym_false] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_RBRACK] = ACTIONS(2518), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2764), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_asyncfor] = ACTIONS(2518), + [anon_sym_transform] = ACTIONS(2541), + [anon_sym_filter] = ACTIONS(2541), + [anon_sym_find] = ACTIONS(2541), + [anon_sym_remove] = ACTIONS(2541), + [anon_sym_reduce] = ACTIONS(2541), + [anon_sym_select] = ACTIONS(2541), + [anon_sym_insert] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(2767), + [anon_sym_assert] = ACTIONS(2770), + [anon_sym_assert_equal] = ACTIONS(2770), + [anon_sym_download] = ACTIONS(2770), + [anon_sym_help] = ACTIONS(2770), + [anon_sym_length] = ACTIONS(2770), + [anon_sym_output] = ACTIONS(2770), + [anon_sym_output_error] = ACTIONS(2770), + [anon_sym_type] = ACTIONS(2770), + [anon_sym_append] = ACTIONS(2770), + [anon_sym_metadata] = ACTIONS(2770), + [anon_sym_move] = ACTIONS(2770), + [anon_sym_read] = ACTIONS(2770), + [anon_sym_workdir] = ACTIONS(2770), + [anon_sym_write] = ACTIONS(2770), + [anon_sym_from_json] = ACTIONS(2770), + [anon_sym_to_json] = ACTIONS(2770), + [anon_sym_to_string] = ACTIONS(2770), + [anon_sym_to_float] = ACTIONS(2770), + [anon_sym_bash] = ACTIONS(2770), + [anon_sym_fish] = ACTIONS(2770), + [anon_sym_raw] = ACTIONS(2770), + [anon_sym_sh] = ACTIONS(2770), + [anon_sym_zsh] = ACTIONS(2770), + [anon_sym_random] = ACTIONS(2770), + [anon_sym_random_boolean] = ACTIONS(2770), + [anon_sym_random_float] = ACTIONS(2770), + [anon_sym_random_integer] = ACTIONS(2770), + [anon_sym_columns] = ACTIONS(2770), + [anon_sym_rows] = ACTIONS(2770), + [anon_sym_reverse] = ACTIONS(2770), + }, + [354] = { + [sym_statement] = STATE(348), + [sym_expression] = STATE(859), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(754), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(985), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(2773), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(233), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_elseif] = ACTIONS(419), + [anon_sym_else] = ACTIONS(442), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_asyncfor] = ACTIONS(1578), + [anon_sym_transform] = ACTIONS(1580), + [anon_sym_filter] = ACTIONS(1582), + [anon_sym_find] = ACTIONS(1584), + [anon_sym_remove] = ACTIONS(1586), + [anon_sym_reduce] = ACTIONS(1588), + [anon_sym_select] = ACTIONS(1590), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), + }, + [355] = { + [sym_expression] = STATE(783), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(357), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2624), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(233), + [anon_sym_RPAREN] = ACTIONS(2443), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_elseif] = ACTIONS(2443), + [anon_sym_else] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_asyncfor] = ACTIONS(2443), + [anon_sym_transform] = ACTIONS(2447), + [anon_sym_filter] = ACTIONS(2447), + [anon_sym_find] = ACTIONS(2447), + [anon_sym_remove] = ACTIONS(2447), + [anon_sym_reduce] = ACTIONS(2447), + [anon_sym_select] = ACTIONS(2447), + [anon_sym_insert] = ACTIONS(2447), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), + }, + [356] = { + [sym_expression] = STATE(1609), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(345), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2449), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_elseif] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_asyncfor] = ACTIONS(2449), + [anon_sym_transform] = ACTIONS(2465), + [anon_sym_filter] = ACTIONS(2465), + [anon_sym_find] = ACTIONS(2465), + [anon_sym_remove] = ACTIONS(2465), + [anon_sym_reduce] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_insert] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [357] = { + [sym_expression] = STATE(783), + [sym__expression_kind] = STATE(759), + [aux_sym__expression_list] = STATE(357), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(759), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2594), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2600), + [anon_sym_RPAREN] = ACTIONS(2518), + [sym_integer] = ACTIONS(2603), + [sym_float] = ACTIONS(2606), + [sym_string] = ACTIONS(2606), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2612), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_elseif] = ACTIONS(2518), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2637), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_asyncfor] = ACTIONS(2518), + [anon_sym_transform] = ACTIONS(2541), + [anon_sym_filter] = ACTIONS(2541), + [anon_sym_find] = ACTIONS(2541), + [anon_sym_remove] = ACTIONS(2541), + [anon_sym_reduce] = ACTIONS(2541), + [anon_sym_select] = ACTIONS(2541), + [anon_sym_insert] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(2640), + [anon_sym_assert] = ACTIONS(2643), + [anon_sym_assert_equal] = ACTIONS(2643), + [anon_sym_download] = ACTIONS(2643), + [anon_sym_help] = ACTIONS(2643), + [anon_sym_length] = ACTIONS(2643), + [anon_sym_output] = ACTIONS(2643), + [anon_sym_output_error] = ACTIONS(2643), + [anon_sym_type] = ACTIONS(2643), + [anon_sym_append] = ACTIONS(2643), + [anon_sym_metadata] = ACTIONS(2643), + [anon_sym_move] = ACTIONS(2643), + [anon_sym_read] = ACTIONS(2643), + [anon_sym_workdir] = ACTIONS(2643), + [anon_sym_write] = ACTIONS(2643), + [anon_sym_from_json] = ACTIONS(2643), + [anon_sym_to_json] = ACTIONS(2643), + [anon_sym_to_string] = ACTIONS(2643), + [anon_sym_to_float] = ACTIONS(2643), + [anon_sym_bash] = ACTIONS(2643), + [anon_sym_fish] = ACTIONS(2643), + [anon_sym_raw] = ACTIONS(2643), + [anon_sym_sh] = ACTIONS(2643), + [anon_sym_zsh] = ACTIONS(2643), + [anon_sym_random] = ACTIONS(2643), + [anon_sym_random_boolean] = ACTIONS(2643), + [anon_sym_random_float] = ACTIONS(2643), + [anon_sym_random_integer] = ACTIONS(2643), + [anon_sym_columns] = ACTIONS(2643), + [anon_sym_rows] = ACTIONS(2643), + [anon_sym_reverse] = ACTIONS(2643), + }, + [358] = { + [sym_statement] = STATE(348), + [sym_expression] = STATE(859), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(754), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(985), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(2773), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(997), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(1000), + [sym_float] = ACTIONS(1003), + [sym_string] = ACTIONS(1003), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(2776), + [anon_sym_elseif] = ACTIONS(419), + [anon_sym_else] = ACTIONS(442), + [anon_sym_match] = ACTIONS(2779), + [anon_sym_EQ_GT] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(2782), + [anon_sym_for] = ACTIONS(2785), + [anon_sym_asyncfor] = ACTIONS(2788), + [anon_sym_transform] = ACTIONS(2791), + [anon_sym_filter] = ACTIONS(2794), + [anon_sym_find] = ACTIONS(2797), + [anon_sym_remove] = ACTIONS(2800), + [anon_sym_reduce] = ACTIONS(2803), + [anon_sym_select] = ACTIONS(2806), + [anon_sym_insert] = ACTIONS(1554), + [anon_sym_async] = ACTIONS(2809), + [anon_sym_PIPE] = ACTIONS(2761), + [anon_sym_table] = ACTIONS(1560), + [anon_sym_assert] = ACTIONS(1563), + [anon_sym_assert_equal] = ACTIONS(1563), + [anon_sym_download] = ACTIONS(1563), + [anon_sym_help] = ACTIONS(1563), + [anon_sym_length] = ACTIONS(1563), + [anon_sym_output] = ACTIONS(1563), + [anon_sym_output_error] = ACTIONS(1563), + [anon_sym_type] = ACTIONS(1563), + [anon_sym_append] = ACTIONS(1563), + [anon_sym_metadata] = ACTIONS(1563), + [anon_sym_move] = ACTIONS(1563), + [anon_sym_read] = ACTIONS(1563), + [anon_sym_workdir] = ACTIONS(1563), + [anon_sym_write] = ACTIONS(1563), + [anon_sym_from_json] = ACTIONS(1563), + [anon_sym_to_json] = ACTIONS(1563), + [anon_sym_to_string] = ACTIONS(1563), + [anon_sym_to_float] = ACTIONS(1563), + [anon_sym_bash] = ACTIONS(1563), + [anon_sym_fish] = ACTIONS(1563), + [anon_sym_raw] = ACTIONS(1563), + [anon_sym_sh] = ACTIONS(1563), + [anon_sym_zsh] = ACTIONS(1563), + [anon_sym_random] = ACTIONS(1563), + [anon_sym_random_boolean] = ACTIONS(1563), + [anon_sym_random_float] = ACTIONS(1563), + [anon_sym_random_integer] = ACTIONS(1563), + [anon_sym_columns] = ACTIONS(1563), + [anon_sym_rows] = ACTIONS(1563), + [anon_sym_reverse] = ACTIONS(1563), + }, + [359] = { + [sym_statement] = STATE(359), + [sym_expression] = STATE(877), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(782), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(978), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(359), + [ts_builtin_sym_end] = ACTIONS(343), + [sym_identifier] = ACTIONS(2812), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(1322), + [sym_integer] = ACTIONS(1325), + [sym_float] = ACTIONS(1328), + [sym_string] = ACTIONS(1328), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_elseif] = ACTIONS(343), + [anon_sym_else] = ACTIONS(366), + [anon_sym_match] = ACTIONS(2818), + [anon_sym_EQ_GT] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2821), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_asyncfor] = ACTIONS(2827), + [anon_sym_transform] = ACTIONS(2830), + [anon_sym_filter] = ACTIONS(2833), + [anon_sym_find] = ACTIONS(2836), + [anon_sym_remove] = ACTIONS(2839), + [anon_sym_reduce] = ACTIONS(2842), + [anon_sym_select] = ACTIONS(2845), + [anon_sym_insert] = ACTIONS(2227), + [anon_sym_async] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2717), + [anon_sym_table] = ACTIONS(2233), + [anon_sym_assert] = ACTIONS(2236), + [anon_sym_assert_equal] = ACTIONS(2236), + [anon_sym_download] = ACTIONS(2236), + [anon_sym_help] = ACTIONS(2236), + [anon_sym_length] = ACTIONS(2236), + [anon_sym_output] = ACTIONS(2236), + [anon_sym_output_error] = ACTIONS(2236), + [anon_sym_type] = ACTIONS(2236), + [anon_sym_append] = ACTIONS(2236), + [anon_sym_metadata] = ACTIONS(2236), + [anon_sym_move] = ACTIONS(2236), + [anon_sym_read] = ACTIONS(2236), + [anon_sym_workdir] = ACTIONS(2236), + [anon_sym_write] = ACTIONS(2236), + [anon_sym_from_json] = ACTIONS(2236), + [anon_sym_to_json] = ACTIONS(2236), + [anon_sym_to_string] = ACTIONS(2236), + [anon_sym_to_float] = ACTIONS(2236), + [anon_sym_bash] = ACTIONS(2236), + [anon_sym_fish] = ACTIONS(2236), + [anon_sym_raw] = ACTIONS(2236), + [anon_sym_sh] = ACTIONS(2236), + [anon_sym_zsh] = ACTIONS(2236), + [anon_sym_random] = ACTIONS(2236), + [anon_sym_random_boolean] = ACTIONS(2236), + [anon_sym_random_float] = ACTIONS(2236), + [anon_sym_random_integer] = ACTIONS(2236), + [anon_sym_columns] = ACTIONS(2236), + [anon_sym_rows] = ACTIONS(2236), + [anon_sym_reverse] = ACTIONS(2236), + }, + [360] = { + [sym_expression] = STATE(828), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(362), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2676), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(2473), + [anon_sym_COMMA] = ACTIONS(2473), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(2473), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_asyncfor] = ACTIONS(2473), + [anon_sym_transform] = ACTIONS(2475), + [anon_sym_filter] = ACTIONS(2475), + [anon_sym_find] = ACTIONS(2475), + [anon_sym_remove] = ACTIONS(2475), + [anon_sym_reduce] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_insert] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), + }, + [361] = { + [sym_expression] = STATE(828), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(353), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2676), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(2477), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(2477), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_asyncfor] = ACTIONS(2477), + [anon_sym_transform] = ACTIONS(2479), + [anon_sym_filter] = ACTIONS(2479), + [anon_sym_find] = ACTIONS(2479), + [anon_sym_remove] = ACTIONS(2479), + [anon_sym_reduce] = ACTIONS(2479), + [anon_sym_select] = ACTIONS(2479), + [anon_sym_insert] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), + }, + [362] = { + [sym_expression] = STATE(828), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(353), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2676), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2443), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(2443), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_asyncfor] = ACTIONS(2443), + [anon_sym_transform] = ACTIONS(2447), + [anon_sym_filter] = ACTIONS(2447), + [anon_sym_find] = ACTIONS(2447), + [anon_sym_remove] = ACTIONS(2447), + [anon_sym_reduce] = ACTIONS(2447), + [anon_sym_select] = ACTIONS(2447), + [anon_sym_insert] = ACTIONS(2447), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), + }, + [363] = { + [sym_expression] = STATE(1604), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(363), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_RPAREN] = ACTIONS(2481), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2495), + [sym_string] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_COLON] = ACTIONS(2481), + [anon_sym_DOT_DOT] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_PERCENT] = ACTIONS(2481), + [anon_sym_EQ_EQ] = ACTIONS(2481), + [anon_sym_BANG_EQ] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_PIPE_PIPE] = ACTIONS(2481), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_GT_EQ] = ACTIONS(2481), + [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_asyncfor] = ACTIONS(2481), + [anon_sym_transform] = ACTIONS(2504), + [anon_sym_filter] = ACTIONS(2504), + [anon_sym_find] = ACTIONS(2504), + [anon_sym_remove] = ACTIONS(2504), + [anon_sym_reduce] = ACTIONS(2504), + [anon_sym_select] = ACTIONS(2504), + [anon_sym_insert] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_table] = ACTIONS(2512), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_assert_equal] = ACTIONS(2515), + [anon_sym_download] = ACTIONS(2515), + [anon_sym_help] = ACTIONS(2515), + [anon_sym_length] = ACTIONS(2515), + [anon_sym_output] = ACTIONS(2515), + [anon_sym_output_error] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_append] = ACTIONS(2515), + [anon_sym_metadata] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_read] = ACTIONS(2515), + [anon_sym_workdir] = ACTIONS(2515), + [anon_sym_write] = ACTIONS(2515), + [anon_sym_from_json] = ACTIONS(2515), + [anon_sym_to_json] = ACTIONS(2515), + [anon_sym_to_string] = ACTIONS(2515), + [anon_sym_to_float] = ACTIONS(2515), + [anon_sym_bash] = ACTIONS(2515), + [anon_sym_fish] = ACTIONS(2515), + [anon_sym_raw] = ACTIONS(2515), + [anon_sym_sh] = ACTIONS(2515), + [anon_sym_zsh] = ACTIONS(2515), + [anon_sym_random] = ACTIONS(2515), + [anon_sym_random_boolean] = ACTIONS(2515), + [anon_sym_random_float] = ACTIONS(2515), + [anon_sym_random_integer] = ACTIONS(2515), + [anon_sym_columns] = ACTIONS(2515), + [anon_sym_rows] = ACTIONS(2515), + [anon_sym_reverse] = ACTIONS(2515), + }, + [364] = { + [sym_expression] = STATE(833), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(368), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2676), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(2477), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_asyncfor] = ACTIONS(2477), + [anon_sym_transform] = ACTIONS(2479), + [anon_sym_filter] = ACTIONS(2479), + [anon_sym_find] = ACTIONS(2479), + [anon_sym_remove] = ACTIONS(2479), + [anon_sym_reduce] = ACTIONS(2479), + [anon_sym_select] = ACTIONS(2479), + [anon_sym_insert] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), + }, + [365] = { + [sym_expression] = STATE(833), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(368), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2676), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(2443), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_asyncfor] = ACTIONS(2443), + [anon_sym_transform] = ACTIONS(2447), + [anon_sym_filter] = ACTIONS(2447), + [anon_sym_find] = ACTIONS(2447), + [anon_sym_remove] = ACTIONS(2447), + [anon_sym_reduce] = ACTIONS(2447), + [anon_sym_select] = ACTIONS(2447), + [anon_sym_insert] = ACTIONS(2447), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), + }, + [366] = { + [sym_expression] = STATE(833), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(365), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2676), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(2473), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_DOT_DOT] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_asyncfor] = ACTIONS(2473), + [anon_sym_transform] = ACTIONS(2475), + [anon_sym_filter] = ACTIONS(2475), + [anon_sym_find] = ACTIONS(2475), + [anon_sym_remove] = ACTIONS(2475), + [anon_sym_reduce] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_insert] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), + }, + [367] = { + [sym_expression] = STATE(1604), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(363), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2449), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(2449), + [anon_sym_DOT_DOT] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_asyncfor] = ACTIONS(2449), + [anon_sym_transform] = ACTIONS(2465), + [anon_sym_filter] = ACTIONS(2465), + [anon_sym_find] = ACTIONS(2465), + [anon_sym_remove] = ACTIONS(2465), + [anon_sym_reduce] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_insert] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [368] = { + [sym_expression] = STATE(833), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(368), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2646), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2518), + [sym_integer] = ACTIONS(2655), + [sym_float] = ACTIONS(2658), + [sym_string] = ACTIONS(2658), + [anon_sym_true] = ACTIONS(2661), + [anon_sym_false] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2667), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_asyncfor] = ACTIONS(2518), + [anon_sym_transform] = ACTIONS(2541), + [anon_sym_filter] = ACTIONS(2541), + [anon_sym_find] = ACTIONS(2541), + [anon_sym_remove] = ACTIONS(2541), + [anon_sym_reduce] = ACTIONS(2541), + [anon_sym_select] = ACTIONS(2541), + [anon_sym_insert] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(2670), + [anon_sym_assert] = ACTIONS(2673), + [anon_sym_assert_equal] = ACTIONS(2673), + [anon_sym_download] = ACTIONS(2673), + [anon_sym_help] = ACTIONS(2673), + [anon_sym_length] = ACTIONS(2673), + [anon_sym_output] = ACTIONS(2673), + [anon_sym_output_error] = ACTIONS(2673), + [anon_sym_type] = ACTIONS(2673), + [anon_sym_append] = ACTIONS(2673), + [anon_sym_metadata] = ACTIONS(2673), + [anon_sym_move] = ACTIONS(2673), + [anon_sym_read] = ACTIONS(2673), + [anon_sym_workdir] = ACTIONS(2673), + [anon_sym_write] = ACTIONS(2673), + [anon_sym_from_json] = ACTIONS(2673), + [anon_sym_to_json] = ACTIONS(2673), + [anon_sym_to_string] = ACTIONS(2673), + [anon_sym_to_float] = ACTIONS(2673), + [anon_sym_bash] = ACTIONS(2673), + [anon_sym_fish] = ACTIONS(2673), + [anon_sym_raw] = ACTIONS(2673), + [anon_sym_sh] = ACTIONS(2673), + [anon_sym_zsh] = ACTIONS(2673), + [anon_sym_random] = ACTIONS(2673), + [anon_sym_random_boolean] = ACTIONS(2673), + [anon_sym_random_float] = ACTIONS(2673), + [anon_sym_random_integer] = ACTIONS(2673), + [anon_sym_columns] = ACTIONS(2673), + [anon_sym_rows] = ACTIONS(2673), + [anon_sym_reverse] = ACTIONS(2673), + }, + [369] = { + [sym_expression] = STATE(876), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(372), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2676), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(2443), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_asyncfor] = ACTIONS(2443), + [anon_sym_transform] = ACTIONS(2447), + [anon_sym_filter] = ACTIONS(2447), + [anon_sym_find] = ACTIONS(2447), + [anon_sym_remove] = ACTIONS(2447), + [anon_sym_reduce] = ACTIONS(2447), + [anon_sym_select] = ACTIONS(2447), + [anon_sym_insert] = ACTIONS(2447), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), + }, + [370] = { + [sym_statement] = STATE(374), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(374), + [sym_identifier] = ACTIONS(2851), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(1789), + [sym_float] = ACTIONS(1792), + [sym_string] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1795), + [anon_sym_false] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(2021), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2761), + [anon_sym_table] = ACTIONS(2057), + [anon_sym_assert] = ACTIONS(2060), + [anon_sym_assert_equal] = ACTIONS(2060), + [anon_sym_download] = ACTIONS(2060), + [anon_sym_help] = ACTIONS(2060), + [anon_sym_length] = ACTIONS(2060), + [anon_sym_output] = ACTIONS(2060), + [anon_sym_output_error] = ACTIONS(2060), + [anon_sym_type] = ACTIONS(2060), + [anon_sym_append] = ACTIONS(2060), + [anon_sym_metadata] = ACTIONS(2060), + [anon_sym_move] = ACTIONS(2060), + [anon_sym_read] = ACTIONS(2060), + [anon_sym_workdir] = ACTIONS(2060), + [anon_sym_write] = ACTIONS(2060), + [anon_sym_from_json] = ACTIONS(2060), + [anon_sym_to_json] = ACTIONS(2060), + [anon_sym_to_string] = ACTIONS(2060), + [anon_sym_to_float] = ACTIONS(2060), + [anon_sym_bash] = ACTIONS(2060), + [anon_sym_fish] = ACTIONS(2060), + [anon_sym_raw] = ACTIONS(2060), + [anon_sym_sh] = ACTIONS(2060), + [anon_sym_zsh] = ACTIONS(2060), + [anon_sym_random] = ACTIONS(2060), + [anon_sym_random_boolean] = ACTIONS(2060), + [anon_sym_random_float] = ACTIONS(2060), + [anon_sym_random_integer] = ACTIONS(2060), + [anon_sym_columns] = ACTIONS(2060), + [anon_sym_rows] = ACTIONS(2060), + [anon_sym_reverse] = ACTIONS(2060), + }, + [371] = { + [sym_statement] = STATE(374), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(374), + [sym_identifier] = ACTIONS(2851), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), + }, + [372] = { + [sym_expression] = STATE(876), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(372), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2646), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2518), + [sym_integer] = ACTIONS(2655), + [sym_float] = ACTIONS(2658), + [sym_string] = ACTIONS(2658), + [anon_sym_true] = ACTIONS(2661), + [anon_sym_false] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2764), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_asyncfor] = ACTIONS(2518), + [anon_sym_transform] = ACTIONS(2541), + [anon_sym_filter] = ACTIONS(2541), + [anon_sym_find] = ACTIONS(2541), + [anon_sym_remove] = ACTIONS(2541), + [anon_sym_reduce] = ACTIONS(2541), + [anon_sym_select] = ACTIONS(2541), + [anon_sym_insert] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(2767), + [anon_sym_assert] = ACTIONS(2770), + [anon_sym_assert_equal] = ACTIONS(2770), + [anon_sym_download] = ACTIONS(2770), + [anon_sym_help] = ACTIONS(2770), + [anon_sym_length] = ACTIONS(2770), + [anon_sym_output] = ACTIONS(2770), + [anon_sym_output_error] = ACTIONS(2770), + [anon_sym_type] = ACTIONS(2770), + [anon_sym_append] = ACTIONS(2770), + [anon_sym_metadata] = ACTIONS(2770), + [anon_sym_move] = ACTIONS(2770), + [anon_sym_read] = ACTIONS(2770), + [anon_sym_workdir] = ACTIONS(2770), + [anon_sym_write] = ACTIONS(2770), + [anon_sym_from_json] = ACTIONS(2770), + [anon_sym_to_json] = ACTIONS(2770), + [anon_sym_to_string] = ACTIONS(2770), + [anon_sym_to_float] = ACTIONS(2770), + [anon_sym_bash] = ACTIONS(2770), + [anon_sym_fish] = ACTIONS(2770), + [anon_sym_raw] = ACTIONS(2770), + [anon_sym_sh] = ACTIONS(2770), + [anon_sym_zsh] = ACTIONS(2770), + [anon_sym_random] = ACTIONS(2770), + [anon_sym_random_boolean] = ACTIONS(2770), + [anon_sym_random_float] = ACTIONS(2770), + [anon_sym_random_integer] = ACTIONS(2770), + [anon_sym_columns] = ACTIONS(2770), + [anon_sym_rows] = ACTIONS(2770), + [anon_sym_reverse] = ACTIONS(2770), + }, + [373] = { + [sym_expression] = STATE(1575), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(379), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2449), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2449), + [anon_sym_PERCENT] = ACTIONS(2449), + [anon_sym_EQ_EQ] = ACTIONS(2449), + [anon_sym_BANG_EQ] = ACTIONS(2449), + [anon_sym_AMP_AMP] = ACTIONS(2449), + [anon_sym_PIPE_PIPE] = ACTIONS(2449), + [anon_sym_GT] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_GT_EQ] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_asyncfor] = ACTIONS(2449), + [anon_sym_transform] = ACTIONS(2465), + [anon_sym_filter] = ACTIONS(2465), + [anon_sym_find] = ACTIONS(2465), + [anon_sym_remove] = ACTIONS(2465), + [anon_sym_reduce] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_insert] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [374] = { + [sym_statement] = STATE(374), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(374), + [sym_identifier] = ACTIONS(2854), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_COMMA] = ACTIONS(343), + [sym_integer] = ACTIONS(1672), + [sym_float] = ACTIONS(1675), + [sym_string] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1678), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1681), + [anon_sym_if] = ACTIONS(2681), + [anon_sym_match] = ACTIONS(2857), + [anon_sym_EQ_GT] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2863), + [anon_sym_asyncfor] = ACTIONS(2866), + [anon_sym_transform] = ACTIONS(2869), + [anon_sym_filter] = ACTIONS(2872), + [anon_sym_find] = ACTIONS(2875), + [anon_sym_remove] = ACTIONS(2878), + [anon_sym_reduce] = ACTIONS(2881), + [anon_sym_select] = ACTIONS(2884), + [anon_sym_insert] = ACTIONS(2099), + [anon_sym_async] = ACTIONS(2887), + [anon_sym_PIPE] = ACTIONS(2717), + [anon_sym_table] = ACTIONS(2105), + [anon_sym_assert] = ACTIONS(2108), + [anon_sym_assert_equal] = ACTIONS(2108), + [anon_sym_download] = ACTIONS(2108), + [anon_sym_help] = ACTIONS(2108), + [anon_sym_length] = ACTIONS(2108), + [anon_sym_output] = ACTIONS(2108), + [anon_sym_output_error] = ACTIONS(2108), + [anon_sym_type] = ACTIONS(2108), + [anon_sym_append] = ACTIONS(2108), + [anon_sym_metadata] = ACTIONS(2108), + [anon_sym_move] = ACTIONS(2108), + [anon_sym_read] = ACTIONS(2108), + [anon_sym_workdir] = ACTIONS(2108), + [anon_sym_write] = ACTIONS(2108), + [anon_sym_from_json] = ACTIONS(2108), + [anon_sym_to_json] = ACTIONS(2108), + [anon_sym_to_string] = ACTIONS(2108), + [anon_sym_to_float] = ACTIONS(2108), + [anon_sym_bash] = ACTIONS(2108), + [anon_sym_fish] = ACTIONS(2108), + [anon_sym_raw] = ACTIONS(2108), + [anon_sym_sh] = ACTIONS(2108), + [anon_sym_zsh] = ACTIONS(2108), + [anon_sym_random] = ACTIONS(2108), + [anon_sym_random_boolean] = ACTIONS(2108), + [anon_sym_random_float] = ACTIONS(2108), + [anon_sym_random_integer] = ACTIONS(2108), + [anon_sym_columns] = ACTIONS(2108), + [anon_sym_rows] = ACTIONS(2108), + [anon_sym_reverse] = ACTIONS(2108), + }, + [375] = { + [sym_expression] = STATE(876), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(372), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2676), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(2477), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_asyncfor] = ACTIONS(2477), + [anon_sym_transform] = ACTIONS(2479), + [anon_sym_filter] = ACTIONS(2479), + [anon_sym_find] = ACTIONS(2479), + [anon_sym_remove] = ACTIONS(2479), + [anon_sym_reduce] = ACTIONS(2479), + [anon_sym_select] = ACTIONS(2479), + [anon_sym_insert] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), + }, + [376] = { + [sym_statement] = STATE(376), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(376), + [ts_builtin_sym_end] = ACTIONS(343), + [sym_identifier] = ACTIONS(2890), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(1669), + [sym_integer] = ACTIONS(1672), + [sym_float] = ACTIONS(1675), + [sym_string] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1678), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1681), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_match] = ACTIONS(2893), + [anon_sym_EQ_GT] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2896), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_asyncfor] = ACTIONS(2902), + [anon_sym_transform] = ACTIONS(2905), + [anon_sym_filter] = ACTIONS(2908), + [anon_sym_find] = ACTIONS(2911), + [anon_sym_remove] = ACTIONS(2914), + [anon_sym_reduce] = ACTIONS(2917), + [anon_sym_select] = ACTIONS(2920), + [anon_sym_insert] = ACTIONS(2371), + [anon_sym_async] = ACTIONS(2923), + [anon_sym_PIPE] = ACTIONS(2717), + [anon_sym_table] = ACTIONS(2377), + [anon_sym_assert] = ACTIONS(2380), + [anon_sym_assert_equal] = ACTIONS(2380), + [anon_sym_download] = ACTIONS(2380), + [anon_sym_help] = ACTIONS(2380), + [anon_sym_length] = ACTIONS(2380), + [anon_sym_output] = ACTIONS(2380), + [anon_sym_output_error] = ACTIONS(2380), + [anon_sym_type] = ACTIONS(2380), + [anon_sym_append] = ACTIONS(2380), + [anon_sym_metadata] = ACTIONS(2380), + [anon_sym_move] = ACTIONS(2380), + [anon_sym_read] = ACTIONS(2380), + [anon_sym_workdir] = ACTIONS(2380), + [anon_sym_write] = ACTIONS(2380), + [anon_sym_from_json] = ACTIONS(2380), + [anon_sym_to_json] = ACTIONS(2380), + [anon_sym_to_string] = ACTIONS(2380), + [anon_sym_to_float] = ACTIONS(2380), + [anon_sym_bash] = ACTIONS(2380), + [anon_sym_fish] = ACTIONS(2380), + [anon_sym_raw] = ACTIONS(2380), + [anon_sym_sh] = ACTIONS(2380), + [anon_sym_zsh] = ACTIONS(2380), + [anon_sym_random] = ACTIONS(2380), + [anon_sym_random_boolean] = ACTIONS(2380), + [anon_sym_random_float] = ACTIONS(2380), + [anon_sym_random_integer] = ACTIONS(2380), + [anon_sym_columns] = ACTIONS(2380), + [anon_sym_rows] = ACTIONS(2380), + [anon_sym_reverse] = ACTIONS(2380), + }, + [377] = { + [sym_block] = STATE(377), + [sym_statement] = STATE(381), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_root_repeat1] = STATE(377), + [aux_sym_block_repeat1] = STATE(381), + [ts_builtin_sym_end] = ACTIONS(2926), + [sym_identifier] = ACTIONS(2928), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2934), + [sym_integer] = ACTIONS(2937), + [sym_float] = ACTIONS(2940), + [sym_string] = ACTIONS(2940), + [anon_sym_true] = ACTIONS(2943), + [anon_sym_false] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2946), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_match] = ACTIONS(2952), + [anon_sym_EQ_GT] = ACTIONS(2955), + [anon_sym_while] = ACTIONS(2958), + [anon_sym_for] = ACTIONS(2961), + [anon_sym_asyncfor] = ACTIONS(2964), + [anon_sym_transform] = ACTIONS(2967), + [anon_sym_filter] = ACTIONS(2970), + [anon_sym_find] = ACTIONS(2973), + [anon_sym_remove] = ACTIONS(2976), + [anon_sym_reduce] = ACTIONS(2979), + [anon_sym_select] = ACTIONS(2982), + [anon_sym_insert] = ACTIONS(2985), + [anon_sym_async] = ACTIONS(2988), + [anon_sym_PIPE] = ACTIONS(2991), + [anon_sym_table] = ACTIONS(2994), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_assert_equal] = ACTIONS(2997), + [anon_sym_download] = ACTIONS(2997), + [anon_sym_help] = ACTIONS(2997), + [anon_sym_length] = ACTIONS(2997), + [anon_sym_output] = ACTIONS(2997), + [anon_sym_output_error] = ACTIONS(2997), + [anon_sym_type] = ACTIONS(2997), + [anon_sym_append] = ACTIONS(2997), + [anon_sym_metadata] = ACTIONS(2997), + [anon_sym_move] = ACTIONS(2997), + [anon_sym_read] = ACTIONS(2997), + [anon_sym_workdir] = ACTIONS(2997), + [anon_sym_write] = ACTIONS(2997), + [anon_sym_from_json] = ACTIONS(2997), + [anon_sym_to_json] = ACTIONS(2997), + [anon_sym_to_string] = ACTIONS(2997), + [anon_sym_to_float] = ACTIONS(2997), + [anon_sym_bash] = ACTIONS(2997), + [anon_sym_fish] = ACTIONS(2997), + [anon_sym_raw] = ACTIONS(2997), + [anon_sym_sh] = ACTIONS(2997), + [anon_sym_zsh] = ACTIONS(2997), + [anon_sym_random] = ACTIONS(2997), + [anon_sym_random_boolean] = ACTIONS(2997), + [anon_sym_random_float] = ACTIONS(2997), + [anon_sym_random_integer] = ACTIONS(2997), + [anon_sym_columns] = ACTIONS(2997), + [anon_sym_rows] = ACTIONS(2997), + [anon_sym_reverse] = ACTIONS(2997), + }, + [378] = { + [sym_block] = STATE(377), + [sym_statement] = STATE(381), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_root_repeat1] = STATE(377), + [aux_sym_block_repeat1] = STATE(381), + [ts_builtin_sym_end] = ACTIONS(3000), [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), + [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), @@ -36278,174 +46184,458 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(23), [anon_sym_while] = ACTIONS(25), [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, - [318] = { - [sym_block] = STATE(500), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [379] = { + [sym_expression] = STATE(1575), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(379), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_RPAREN] = ACTIONS(2481), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2495), + [sym_string] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_COLON] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_PERCENT] = ACTIONS(2481), + [anon_sym_EQ_EQ] = ACTIONS(2481), + [anon_sym_BANG_EQ] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_PIPE_PIPE] = ACTIONS(2481), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_GT_EQ] = ACTIONS(2481), + [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_asyncfor] = ACTIONS(2481), + [anon_sym_transform] = ACTIONS(2504), + [anon_sym_filter] = ACTIONS(2504), + [anon_sym_find] = ACTIONS(2504), + [anon_sym_remove] = ACTIONS(2504), + [anon_sym_reduce] = ACTIONS(2504), + [anon_sym_select] = ACTIONS(2504), + [anon_sym_insert] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_table] = ACTIONS(2512), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_assert_equal] = ACTIONS(2515), + [anon_sym_download] = ACTIONS(2515), + [anon_sym_help] = ACTIONS(2515), + [anon_sym_length] = ACTIONS(2515), + [anon_sym_output] = ACTIONS(2515), + [anon_sym_output_error] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_append] = ACTIONS(2515), + [anon_sym_metadata] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_read] = ACTIONS(2515), + [anon_sym_workdir] = ACTIONS(2515), + [anon_sym_write] = ACTIONS(2515), + [anon_sym_from_json] = ACTIONS(2515), + [anon_sym_to_json] = ACTIONS(2515), + [anon_sym_to_string] = ACTIONS(2515), + [anon_sym_to_float] = ACTIONS(2515), + [anon_sym_bash] = ACTIONS(2515), + [anon_sym_fish] = ACTIONS(2515), + [anon_sym_raw] = ACTIONS(2515), + [anon_sym_sh] = ACTIONS(2515), + [anon_sym_zsh] = ACTIONS(2515), + [anon_sym_random] = ACTIONS(2515), + [anon_sym_random_boolean] = ACTIONS(2515), + [anon_sym_random_float] = ACTIONS(2515), + [anon_sym_random_integer] = ACTIONS(2515), + [anon_sym_columns] = ACTIONS(2515), + [anon_sym_rows] = ACTIONS(2515), + [anon_sym_reverse] = ACTIONS(2515), + }, + [380] = { + [sym_expression] = STATE(876), + [sym__expression_kind] = STATE(866), + [aux_sym__expression_list] = STATE(369), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(866), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2676), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(2473), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), [sym_string] = ACTIONS(13), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_asyncfor] = ACTIONS(2473), + [anon_sym_transform] = ACTIONS(2475), + [anon_sym_filter] = ACTIONS(2475), + [anon_sym_find] = ACTIONS(2475), + [anon_sym_remove] = ACTIONS(2475), + [anon_sym_reduce] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_insert] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, - [319] = { - [sym_statement] = STATE(225), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(225), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1782), + [381] = { + [sym_statement] = STATE(376), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(376), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(3002), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(1786), + [sym_integer] = ACTIONS(1789), + [sym_float] = ACTIONS(1792), + [sym_string] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1795), + [anon_sym_false] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_EQ_GT] = ACTIONS(2391), + [anon_sym_while] = ACTIONS(3008), + [anon_sym_for] = ACTIONS(3011), + [anon_sym_asyncfor] = ACTIONS(3014), + [anon_sym_transform] = ACTIONS(3017), + [anon_sym_filter] = ACTIONS(3020), + [anon_sym_find] = ACTIONS(3023), + [anon_sym_remove] = ACTIONS(3026), + [anon_sym_reduce] = ACTIONS(3029), + [anon_sym_select] = ACTIONS(3032), + [anon_sym_insert] = ACTIONS(2421), + [anon_sym_async] = ACTIONS(3035), + [anon_sym_PIPE] = ACTIONS(2761), + [anon_sym_table] = ACTIONS(2427), + [anon_sym_assert] = ACTIONS(2430), + [anon_sym_assert_equal] = ACTIONS(2430), + [anon_sym_download] = ACTIONS(2430), + [anon_sym_help] = ACTIONS(2430), + [anon_sym_length] = ACTIONS(2430), + [anon_sym_output] = ACTIONS(2430), + [anon_sym_output_error] = ACTIONS(2430), + [anon_sym_type] = ACTIONS(2430), + [anon_sym_append] = ACTIONS(2430), + [anon_sym_metadata] = ACTIONS(2430), + [anon_sym_move] = ACTIONS(2430), + [anon_sym_read] = ACTIONS(2430), + [anon_sym_workdir] = ACTIONS(2430), + [anon_sym_write] = ACTIONS(2430), + [anon_sym_from_json] = ACTIONS(2430), + [anon_sym_to_json] = ACTIONS(2430), + [anon_sym_to_string] = ACTIONS(2430), + [anon_sym_to_float] = ACTIONS(2430), + [anon_sym_bash] = ACTIONS(2430), + [anon_sym_fish] = ACTIONS(2430), + [anon_sym_raw] = ACTIONS(2430), + [anon_sym_sh] = ACTIONS(2430), + [anon_sym_zsh] = ACTIONS(2430), + [anon_sym_random] = ACTIONS(2430), + [anon_sym_random_boolean] = ACTIONS(2430), + [anon_sym_random_float] = ACTIONS(2430), + [anon_sym_random_integer] = ACTIONS(2430), + [anon_sym_columns] = ACTIONS(2430), + [anon_sym_rows] = ACTIONS(2430), + [anon_sym_reverse] = ACTIONS(2430), + }, + [382] = { + [sym_statement] = STATE(374), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(374), + [sym_identifier] = ACTIONS(2851), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(419), + [sym_integer] = ACTIONS(1789), + [sym_float] = ACTIONS(1792), + [sym_string] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1795), + [anon_sym_false] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_if] = ACTIONS(2776), + [anon_sym_match] = ACTIONS(3038), + [anon_sym_EQ_GT] = ACTIONS(2021), + [anon_sym_while] = ACTIONS(3041), + [anon_sym_for] = ACTIONS(3044), + [anon_sym_asyncfor] = ACTIONS(3047), + [anon_sym_transform] = ACTIONS(3050), + [anon_sym_filter] = ACTIONS(3053), + [anon_sym_find] = ACTIONS(3056), + [anon_sym_remove] = ACTIONS(3059), + [anon_sym_reduce] = ACTIONS(3062), + [anon_sym_select] = ACTIONS(3065), + [anon_sym_insert] = ACTIONS(2051), + [anon_sym_async] = ACTIONS(3068), + [anon_sym_PIPE] = ACTIONS(2761), + [anon_sym_table] = ACTIONS(2057), + [anon_sym_assert] = ACTIONS(2060), + [anon_sym_assert_equal] = ACTIONS(2060), + [anon_sym_download] = ACTIONS(2060), + [anon_sym_help] = ACTIONS(2060), + [anon_sym_length] = ACTIONS(2060), + [anon_sym_output] = ACTIONS(2060), + [anon_sym_output_error] = ACTIONS(2060), + [anon_sym_type] = ACTIONS(2060), + [anon_sym_append] = ACTIONS(2060), + [anon_sym_metadata] = ACTIONS(2060), + [anon_sym_move] = ACTIONS(2060), + [anon_sym_read] = ACTIONS(2060), + [anon_sym_workdir] = ACTIONS(2060), + [anon_sym_write] = ACTIONS(2060), + [anon_sym_from_json] = ACTIONS(2060), + [anon_sym_to_json] = ACTIONS(2060), + [anon_sym_to_string] = ACTIONS(2060), + [anon_sym_to_float] = ACTIONS(2060), + [anon_sym_bash] = ACTIONS(2060), + [anon_sym_fish] = ACTIONS(2060), + [anon_sym_raw] = ACTIONS(2060), + [anon_sym_sh] = ACTIONS(2060), + [anon_sym_zsh] = ACTIONS(2060), + [anon_sym_random] = ACTIONS(2060), + [anon_sym_random_boolean] = ACTIONS(2060), + [anon_sym_random_float] = ACTIONS(2060), + [anon_sym_random_integer] = ACTIONS(2060), + [anon_sym_columns] = ACTIONS(2060), + [anon_sym_rows] = ACTIONS(2060), + [anon_sym_reverse] = ACTIONS(2060), + }, + [383] = { + [sym_statement] = STATE(459), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(459), + [aux_sym_map_repeat1] = STATE(1677), + [sym_identifier] = ACTIONS(3071), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3073), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -36458,84 +46648,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(23), [anon_sym_while] = ACTIONS(25), [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, - [320] = { - [sym_block] = STATE(486), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [384] = { + [sym_statement] = STATE(400), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(400), + [aux_sym_map_repeat1] = STATE(1677), + [sym_identifier] = ACTIONS(3071), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3073), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -36543,89 +46735,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, - [321] = { - [sym_block] = STATE(902), - [sym_statement] = STATE(154), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(154), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), + [385] = { + [sym_statement] = STATE(493), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(493), + [aux_sym_map_repeat1] = STATE(1677), + [sym_identifier] = ACTIONS(3071), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3073), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -36633,89 +46827,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, - [322] = { - [sym_block] = STATE(500), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [386] = { + [sym_statement] = STATE(472), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(472), + [aux_sym_map_repeat1] = STATE(1675), + [sym_identifier] = ACTIONS(3071), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3075), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -36723,353 +46919,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, - [323] = { - [sym_block] = STATE(380), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), - }, - [324] = { - [sym_statement] = STATE(984), - [sym_expression] = STATE(914), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(979), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1052), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1784), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_EQ_GT] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_transform] = ACTIONS(1796), - [anon_sym_filter] = ACTIONS(1798), - [anon_sym_find] = ACTIONS(1800), - [anon_sym_remove] = ACTIONS(1802), - [anon_sym_reduce] = ACTIONS(1804), - [anon_sym_select] = ACTIONS(1806), - [anon_sym_insert] = ACTIONS(1808), - [anon_sym_async] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(1812), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [325] = { - [sym_statement] = STATE(777), - [sym_expression] = STATE(914), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(979), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1052), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1784), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_EQ_GT] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_transform] = ACTIONS(1796), - [anon_sym_filter] = ACTIONS(1798), - [anon_sym_find] = ACTIONS(1800), - [anon_sym_remove] = ACTIONS(1802), - [anon_sym_reduce] = ACTIONS(1804), - [anon_sym_select] = ACTIONS(1806), - [anon_sym_insert] = ACTIONS(1808), - [anon_sym_async] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(1812), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [326] = { - [sym_statement] = STATE(777), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [387] = { + [sym_statement] = STATE(454), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(454), + [aux_sym_map_repeat1] = STATE(1675), + [sym_identifier] = ACTIONS(3071), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3075), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -37077,263 +47011,1007 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), + }, + [388] = { + [sym_statement] = STATE(468), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(468), + [aux_sym_map_repeat1] = STATE(1675), + [sym_identifier] = ACTIONS(3071), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), + }, + [389] = { + [sym_statement] = STATE(495), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(495), + [aux_sym_map_repeat1] = STATE(1663), + [sym_identifier] = ACTIONS(3071), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), + }, + [390] = { + [sym_statement] = STATE(491), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(491), + [aux_sym_map_repeat1] = STATE(1663), + [sym_identifier] = ACTIONS(3071), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), + }, + [391] = { + [sym_statement] = STATE(513), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(513), + [aux_sym_map_repeat1] = STATE(1663), + [sym_identifier] = ACTIONS(3071), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), + }, + [392] = { + [sym_statement] = STATE(531), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(531), + [aux_sym_map_repeat1] = STATE(1679), + [sym_identifier] = ACTIONS(3071), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), + }, + [393] = { + [sym_statement] = STATE(427), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(427), + [aux_sym_map_repeat1] = STATE(1663), + [sym_identifier] = ACTIONS(3071), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), + }, + [394] = { + [sym_statement] = STATE(420), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(420), + [aux_sym_map_repeat1] = STATE(1663), + [sym_identifier] = ACTIONS(3071), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), + }, + [395] = { + [sym_block] = STATE(799), + [sym_statement] = STATE(33), + [sym_expression] = STATE(732), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(620), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(654), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(33), + [sym_identifier] = ACTIONS(623), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(629), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_asyncfor] = ACTIONS(637), + [anon_sym_transform] = ACTIONS(639), + [anon_sym_filter] = ACTIONS(641), + [anon_sym_find] = ACTIONS(643), + [anon_sym_remove] = ACTIONS(645), + [anon_sym_reduce] = ACTIONS(647), + [anon_sym_select] = ACTIONS(649), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), + }, + [396] = { + [sym_block] = STATE(723), + [sym_statement] = STATE(17), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), + }, + [397] = { + [sym_block] = STATE(803), + [sym_statement] = STATE(38), + [sym_expression] = STATE(779), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(655), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(724), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1860), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(341), + [aux_sym_block_repeat1] = STATE(38), + [sym_identifier] = ACTIONS(839), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(845), + [anon_sym_EQ_GT] = ACTIONS(847), + [anon_sym_while] = ACTIONS(849), + [anon_sym_for] = ACTIONS(851), + [anon_sym_asyncfor] = ACTIONS(853), [anon_sym_transform] = ACTIONS(855), [anon_sym_filter] = ACTIONS(857), [anon_sym_find] = ACTIONS(859), [anon_sym_remove] = ACTIONS(861), [anon_sym_reduce] = ACTIONS(863), [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_insert] = ACTIONS(867), + [anon_sym_async] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(871), + [anon_sym_assert] = ACTIONS(873), + [anon_sym_assert_equal] = ACTIONS(873), + [anon_sym_download] = ACTIONS(873), + [anon_sym_help] = ACTIONS(873), + [anon_sym_length] = ACTIONS(873), + [anon_sym_output] = ACTIONS(873), + [anon_sym_output_error] = ACTIONS(873), + [anon_sym_type] = ACTIONS(873), + [anon_sym_append] = ACTIONS(873), + [anon_sym_metadata] = ACTIONS(873), + [anon_sym_move] = ACTIONS(873), + [anon_sym_read] = ACTIONS(873), + [anon_sym_workdir] = ACTIONS(873), + [anon_sym_write] = ACTIONS(873), + [anon_sym_from_json] = ACTIONS(873), + [anon_sym_to_json] = ACTIONS(873), + [anon_sym_to_string] = ACTIONS(873), + [anon_sym_to_float] = ACTIONS(873), + [anon_sym_bash] = ACTIONS(873), + [anon_sym_fish] = ACTIONS(873), + [anon_sym_raw] = ACTIONS(873), + [anon_sym_sh] = ACTIONS(873), + [anon_sym_zsh] = ACTIONS(873), + [anon_sym_random] = ACTIONS(873), + [anon_sym_random_boolean] = ACTIONS(873), + [anon_sym_random_float] = ACTIONS(873), + [anon_sym_random_integer] = ACTIONS(873), + [anon_sym_columns] = ACTIONS(873), + [anon_sym_rows] = ACTIONS(873), + [anon_sym_reverse] = ACTIONS(873), }, - [327] = { - [sym_statement] = STATE(574), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), - }, - [328] = { - [sym_statement] = STATE(428), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), - }, - [329] = { - [sym_statement] = STATE(476), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [398] = { + [sym_block] = STATE(1659), + [sym_statement] = STATE(371), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -37341,175 +48019,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, - [330] = { - [sym_statement] = STATE(428), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [399] = { + [sym_block] = STATE(848), + [sym_statement] = STATE(57), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, - [331] = { - [sym_statement] = STATE(777), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), + [400] = { + [sym_statement] = STATE(376), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(376), [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3081), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -37522,14691 +48206,10459 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(23), [anon_sym_while] = ACTIONS(25), [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [332] = { - [sym_statement] = STATE(476), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), - }, - [333] = { - [sym_statement] = STATE(428), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), - }, - [334] = { - [sym_statement] = STATE(574), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [335] = { - [sym_statement] = STATE(428), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), - }, - [336] = { - [sym_statement] = STATE(476), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [337] = { - [sym_statement] = STATE(476), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [338] = { - [sym_statement] = STATE(984), - [sym_expression] = STATE(914), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(979), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1052), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1816), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1822), - [sym_integer] = ACTIONS(1825), - [sym_float] = ACTIONS(1828), - [sym_string] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_EQ_GT] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1849), - [anon_sym_transform] = ACTIONS(1852), - [anon_sym_filter] = ACTIONS(1855), - [anon_sym_find] = ACTIONS(1858), - [anon_sym_remove] = ACTIONS(1861), - [anon_sym_reduce] = ACTIONS(1864), - [anon_sym_select] = ACTIONS(1867), - [anon_sym_insert] = ACTIONS(1870), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_table] = ACTIONS(1879), - [anon_sym_assert] = ACTIONS(1882), - [anon_sym_assert_equal] = ACTIONS(1882), - [anon_sym_download] = ACTIONS(1882), - [anon_sym_help] = ACTIONS(1882), - [anon_sym_length] = ACTIONS(1882), - [anon_sym_output] = ACTIONS(1882), - [anon_sym_output_error] = ACTIONS(1882), - [anon_sym_type] = ACTIONS(1882), - [anon_sym_append] = ACTIONS(1882), - [anon_sym_metadata] = ACTIONS(1882), - [anon_sym_move] = ACTIONS(1882), - [anon_sym_read] = ACTIONS(1882), - [anon_sym_workdir] = ACTIONS(1882), - [anon_sym_write] = ACTIONS(1882), - [anon_sym_from_json] = ACTIONS(1882), - [anon_sym_to_json] = ACTIONS(1882), - [anon_sym_to_string] = ACTIONS(1882), - [anon_sym_to_float] = ACTIONS(1882), - [anon_sym_bash] = ACTIONS(1882), - [anon_sym_fish] = ACTIONS(1882), - [anon_sym_raw] = ACTIONS(1882), - [anon_sym_sh] = ACTIONS(1882), - [anon_sym_zsh] = ACTIONS(1882), - [anon_sym_random] = ACTIONS(1882), - [anon_sym_random_boolean] = ACTIONS(1882), - [anon_sym_random_float] = ACTIONS(1882), - [anon_sym_random_integer] = ACTIONS(1882), - [anon_sym_columns] = ACTIONS(1882), - [anon_sym_rows] = ACTIONS(1882), - [anon_sym_reverse] = ACTIONS(1882), - }, - [339] = { - [sym_else_if] = STATE(357), - [sym_else] = STATE(404), - [aux_sym_if_else_repeat1] = STATE(357), - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(1885), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [sym_string] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_RBRACK] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_elseif] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1891), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_transform] = ACTIONS(1887), - [anon_sym_filter] = ACTIONS(1887), - [anon_sym_find] = ACTIONS(1887), - [anon_sym_remove] = ACTIONS(1887), - [anon_sym_reduce] = ACTIONS(1887), - [anon_sym_select] = ACTIONS(1887), - [anon_sym_insert] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_table] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_assert_equal] = ACTIONS(1887), - [anon_sym_download] = ACTIONS(1887), - [anon_sym_help] = ACTIONS(1887), - [anon_sym_length] = ACTIONS(1887), - [anon_sym_output] = ACTIONS(1887), - [anon_sym_output_error] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_append] = ACTIONS(1887), - [anon_sym_metadata] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_read] = ACTIONS(1887), - [anon_sym_workdir] = ACTIONS(1887), - [anon_sym_write] = ACTIONS(1887), - [anon_sym_from_json] = ACTIONS(1887), - [anon_sym_to_json] = ACTIONS(1887), - [anon_sym_to_string] = ACTIONS(1887), - [anon_sym_to_float] = ACTIONS(1887), - [anon_sym_bash] = ACTIONS(1887), - [anon_sym_fish] = ACTIONS(1887), - [anon_sym_raw] = ACTIONS(1887), - [anon_sym_sh] = ACTIONS(1887), - [anon_sym_zsh] = ACTIONS(1887), - [anon_sym_random] = ACTIONS(1887), - [anon_sym_random_boolean] = ACTIONS(1887), - [anon_sym_random_float] = ACTIONS(1887), - [anon_sym_random_integer] = ACTIONS(1887), - [anon_sym_columns] = ACTIONS(1887), - [anon_sym_rows] = ACTIONS(1887), - [anon_sym_reverse] = ACTIONS(1887), - }, - [340] = { - [sym_expression] = STATE(559), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(376), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment_operator] = STATE(325), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(1237), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [341] = { - [sym_else_if] = STATE(357), - [sym_else] = STATE(469), - [aux_sym_if_else_repeat1] = STATE(357), - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(1885), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [sym_string] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_RBRACK] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_elseif] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1897), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_transform] = ACTIONS(1887), - [anon_sym_filter] = ACTIONS(1887), - [anon_sym_find] = ACTIONS(1887), - [anon_sym_remove] = ACTIONS(1887), - [anon_sym_reduce] = ACTIONS(1887), - [anon_sym_select] = ACTIONS(1887), - [anon_sym_insert] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_table] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_assert_equal] = ACTIONS(1887), - [anon_sym_download] = ACTIONS(1887), - [anon_sym_help] = ACTIONS(1887), - [anon_sym_length] = ACTIONS(1887), - [anon_sym_output] = ACTIONS(1887), - [anon_sym_output_error] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_append] = ACTIONS(1887), - [anon_sym_metadata] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_read] = ACTIONS(1887), - [anon_sym_workdir] = ACTIONS(1887), - [anon_sym_write] = ACTIONS(1887), - [anon_sym_from_json] = ACTIONS(1887), - [anon_sym_to_json] = ACTIONS(1887), - [anon_sym_to_string] = ACTIONS(1887), - [anon_sym_to_float] = ACTIONS(1887), - [anon_sym_bash] = ACTIONS(1887), - [anon_sym_fish] = ACTIONS(1887), - [anon_sym_raw] = ACTIONS(1887), - [anon_sym_sh] = ACTIONS(1887), - [anon_sym_zsh] = ACTIONS(1887), - [anon_sym_random] = ACTIONS(1887), - [anon_sym_random_boolean] = ACTIONS(1887), - [anon_sym_random_float] = ACTIONS(1887), - [anon_sym_random_integer] = ACTIONS(1887), - [anon_sym_columns] = ACTIONS(1887), - [anon_sym_rows] = ACTIONS(1887), - [anon_sym_reverse] = ACTIONS(1887), - }, - [342] = { - [sym_else_if] = STATE(341), - [sym_else] = STATE(495), - [aux_sym_if_else_repeat1] = STATE(341), - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [sym_integer] = ACTIONS(1901), - [sym_float] = ACTIONS(1899), - [sym_string] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_RBRACK] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_elseif] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1897), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_EQ_GT] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_transform] = ACTIONS(1901), - [anon_sym_filter] = ACTIONS(1901), - [anon_sym_find] = ACTIONS(1901), - [anon_sym_remove] = ACTIONS(1901), - [anon_sym_reduce] = ACTIONS(1901), - [anon_sym_select] = ACTIONS(1901), - [anon_sym_insert] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_table] = ACTIONS(1901), - [anon_sym_assert] = ACTIONS(1901), - [anon_sym_assert_equal] = ACTIONS(1901), - [anon_sym_download] = ACTIONS(1901), - [anon_sym_help] = ACTIONS(1901), - [anon_sym_length] = ACTIONS(1901), - [anon_sym_output] = ACTIONS(1901), - [anon_sym_output_error] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_append] = ACTIONS(1901), - [anon_sym_metadata] = ACTIONS(1901), - [anon_sym_move] = ACTIONS(1901), - [anon_sym_read] = ACTIONS(1901), - [anon_sym_workdir] = ACTIONS(1901), - [anon_sym_write] = ACTIONS(1901), - [anon_sym_from_json] = ACTIONS(1901), - [anon_sym_to_json] = ACTIONS(1901), - [anon_sym_to_string] = ACTIONS(1901), - [anon_sym_to_float] = ACTIONS(1901), - [anon_sym_bash] = ACTIONS(1901), - [anon_sym_fish] = ACTIONS(1901), - [anon_sym_raw] = ACTIONS(1901), - [anon_sym_sh] = ACTIONS(1901), - [anon_sym_zsh] = ACTIONS(1901), - [anon_sym_random] = ACTIONS(1901), - [anon_sym_random_boolean] = ACTIONS(1901), - [anon_sym_random_float] = ACTIONS(1901), - [anon_sym_random_integer] = ACTIONS(1901), - [anon_sym_columns] = ACTIONS(1901), - [anon_sym_rows] = ACTIONS(1901), - [anon_sym_reverse] = ACTIONS(1901), - }, - [343] = { - [sym_else_if] = STATE(339), - [sym_else] = STATE(423), - [aux_sym_if_else_repeat1] = STATE(339), - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [sym_integer] = ACTIONS(1901), - [sym_float] = ACTIONS(1899), - [sym_string] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_RBRACK] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_elseif] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1891), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_EQ_GT] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_transform] = ACTIONS(1901), - [anon_sym_filter] = ACTIONS(1901), - [anon_sym_find] = ACTIONS(1901), - [anon_sym_remove] = ACTIONS(1901), - [anon_sym_reduce] = ACTIONS(1901), - [anon_sym_select] = ACTIONS(1901), - [anon_sym_insert] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_table] = ACTIONS(1901), - [anon_sym_assert] = ACTIONS(1901), - [anon_sym_assert_equal] = ACTIONS(1901), - [anon_sym_download] = ACTIONS(1901), - [anon_sym_help] = ACTIONS(1901), - [anon_sym_length] = ACTIONS(1901), - [anon_sym_output] = ACTIONS(1901), - [anon_sym_output_error] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_append] = ACTIONS(1901), - [anon_sym_metadata] = ACTIONS(1901), - [anon_sym_move] = ACTIONS(1901), - [anon_sym_read] = ACTIONS(1901), - [anon_sym_workdir] = ACTIONS(1901), - [anon_sym_write] = ACTIONS(1901), - [anon_sym_from_json] = ACTIONS(1901), - [anon_sym_to_json] = ACTIONS(1901), - [anon_sym_to_string] = ACTIONS(1901), - [anon_sym_to_float] = ACTIONS(1901), - [anon_sym_bash] = ACTIONS(1901), - [anon_sym_fish] = ACTIONS(1901), - [anon_sym_raw] = ACTIONS(1901), - [anon_sym_sh] = ACTIONS(1901), - [anon_sym_zsh] = ACTIONS(1901), - [anon_sym_random] = ACTIONS(1901), - [anon_sym_random_boolean] = ACTIONS(1901), - [anon_sym_random_float] = ACTIONS(1901), - [anon_sym_random_integer] = ACTIONS(1901), - [anon_sym_columns] = ACTIONS(1901), - [anon_sym_rows] = ACTIONS(1901), - [anon_sym_reverse] = ACTIONS(1901), - }, - [344] = { - [sym_expression] = STATE(553), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(348), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1318), - [anon_sym_COMMA] = ACTIONS(1318), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1318), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_EQ_GT] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_assert_equal] = ACTIONS(1907), - [anon_sym_download] = ACTIONS(1907), - [anon_sym_help] = ACTIONS(1907), - [anon_sym_length] = ACTIONS(1907), - [anon_sym_output] = ACTIONS(1907), - [anon_sym_output_error] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_append] = ACTIONS(1907), - [anon_sym_metadata] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_read] = ACTIONS(1907), - [anon_sym_workdir] = ACTIONS(1907), - [anon_sym_write] = ACTIONS(1907), - [anon_sym_from_json] = ACTIONS(1907), - [anon_sym_to_json] = ACTIONS(1907), - [anon_sym_to_string] = ACTIONS(1907), - [anon_sym_to_float] = ACTIONS(1907), - [anon_sym_bash] = ACTIONS(1907), - [anon_sym_fish] = ACTIONS(1907), - [anon_sym_raw] = ACTIONS(1907), - [anon_sym_sh] = ACTIONS(1907), - [anon_sym_zsh] = ACTIONS(1907), - [anon_sym_random] = ACTIONS(1907), - [anon_sym_random_boolean] = ACTIONS(1907), - [anon_sym_random_float] = ACTIONS(1907), - [anon_sym_random_integer] = ACTIONS(1907), - [anon_sym_columns] = ACTIONS(1907), - [anon_sym_rows] = ACTIONS(1907), - [anon_sym_reverse] = ACTIONS(1907), - }, - [345] = { - [sym_else_if] = STATE(347), - [sym_else] = STATE(423), - [aux_sym_if_else_repeat1] = STATE(347), - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [sym_integer] = ACTIONS(1901), - [sym_float] = ACTIONS(1899), - [sym_string] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_RBRACK] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_elseif] = ACTIONS(1909), - [anon_sym_else] = ACTIONS(1911), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_EQ_GT] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_transform] = ACTIONS(1901), - [anon_sym_filter] = ACTIONS(1901), - [anon_sym_find] = ACTIONS(1901), - [anon_sym_remove] = ACTIONS(1901), - [anon_sym_reduce] = ACTIONS(1901), - [anon_sym_select] = ACTIONS(1901), - [anon_sym_insert] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_table] = ACTIONS(1901), - [anon_sym_assert] = ACTIONS(1901), - [anon_sym_assert_equal] = ACTIONS(1901), - [anon_sym_download] = ACTIONS(1901), - [anon_sym_help] = ACTIONS(1901), - [anon_sym_length] = ACTIONS(1901), - [anon_sym_output] = ACTIONS(1901), - [anon_sym_output_error] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_append] = ACTIONS(1901), - [anon_sym_metadata] = ACTIONS(1901), - [anon_sym_move] = ACTIONS(1901), - [anon_sym_read] = ACTIONS(1901), - [anon_sym_workdir] = ACTIONS(1901), - [anon_sym_write] = ACTIONS(1901), - [anon_sym_from_json] = ACTIONS(1901), - [anon_sym_to_json] = ACTIONS(1901), - [anon_sym_to_string] = ACTIONS(1901), - [anon_sym_to_float] = ACTIONS(1901), - [anon_sym_bash] = ACTIONS(1901), - [anon_sym_fish] = ACTIONS(1901), - [anon_sym_raw] = ACTIONS(1901), - [anon_sym_sh] = ACTIONS(1901), - [anon_sym_zsh] = ACTIONS(1901), - [anon_sym_random] = ACTIONS(1901), - [anon_sym_random_boolean] = ACTIONS(1901), - [anon_sym_random_float] = ACTIONS(1901), - [anon_sym_random_integer] = ACTIONS(1901), - [anon_sym_columns] = ACTIONS(1901), - [anon_sym_rows] = ACTIONS(1901), - [anon_sym_reverse] = ACTIONS(1901), - }, - [346] = { - [sym_math_operator] = STATE(845), - [sym_logic_operator] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [sym_string] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_elseif] = ACTIONS(1913), - [anon_sym_else] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_transform] = ACTIONS(1915), - [anon_sym_filter] = ACTIONS(1915), - [anon_sym_find] = ACTIONS(1915), - [anon_sym_remove] = ACTIONS(1915), - [anon_sym_reduce] = ACTIONS(1915), - [anon_sym_select] = ACTIONS(1915), - [anon_sym_insert] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_table] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_assert_equal] = ACTIONS(1915), - [anon_sym_download] = ACTIONS(1915), - [anon_sym_help] = ACTIONS(1915), - [anon_sym_length] = ACTIONS(1915), - [anon_sym_output] = ACTIONS(1915), - [anon_sym_output_error] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_append] = ACTIONS(1915), - [anon_sym_metadata] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_read] = ACTIONS(1915), - [anon_sym_workdir] = ACTIONS(1915), - [anon_sym_write] = ACTIONS(1915), - [anon_sym_from_json] = ACTIONS(1915), - [anon_sym_to_json] = ACTIONS(1915), - [anon_sym_to_string] = ACTIONS(1915), - [anon_sym_to_float] = ACTIONS(1915), - [anon_sym_bash] = ACTIONS(1915), - [anon_sym_fish] = ACTIONS(1915), - [anon_sym_raw] = ACTIONS(1915), - [anon_sym_sh] = ACTIONS(1915), - [anon_sym_zsh] = ACTIONS(1915), - [anon_sym_random] = ACTIONS(1915), - [anon_sym_random_boolean] = ACTIONS(1915), - [anon_sym_random_float] = ACTIONS(1915), - [anon_sym_random_integer] = ACTIONS(1915), - [anon_sym_columns] = ACTIONS(1915), - [anon_sym_rows] = ACTIONS(1915), - [anon_sym_reverse] = ACTIONS(1915), - }, - [347] = { - [sym_else_if] = STATE(366), - [sym_else] = STATE(404), - [aux_sym_if_else_repeat1] = STATE(366), - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(1885), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [sym_string] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_RBRACK] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_elseif] = ACTIONS(1909), - [anon_sym_else] = ACTIONS(1911), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_transform] = ACTIONS(1887), - [anon_sym_filter] = ACTIONS(1887), - [anon_sym_find] = ACTIONS(1887), - [anon_sym_remove] = ACTIONS(1887), - [anon_sym_reduce] = ACTIONS(1887), - [anon_sym_select] = ACTIONS(1887), - [anon_sym_insert] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_table] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_assert_equal] = ACTIONS(1887), - [anon_sym_download] = ACTIONS(1887), - [anon_sym_help] = ACTIONS(1887), - [anon_sym_length] = ACTIONS(1887), - [anon_sym_output] = ACTIONS(1887), - [anon_sym_output_error] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_append] = ACTIONS(1887), - [anon_sym_metadata] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_read] = ACTIONS(1887), - [anon_sym_workdir] = ACTIONS(1887), - [anon_sym_write] = ACTIONS(1887), - [anon_sym_from_json] = ACTIONS(1887), - [anon_sym_to_json] = ACTIONS(1887), - [anon_sym_to_string] = ACTIONS(1887), - [anon_sym_to_float] = ACTIONS(1887), - [anon_sym_bash] = ACTIONS(1887), - [anon_sym_fish] = ACTIONS(1887), - [anon_sym_raw] = ACTIONS(1887), - [anon_sym_sh] = ACTIONS(1887), - [anon_sym_zsh] = ACTIONS(1887), - [anon_sym_random] = ACTIONS(1887), - [anon_sym_random_boolean] = ACTIONS(1887), - [anon_sym_random_float] = ACTIONS(1887), - [anon_sym_random_integer] = ACTIONS(1887), - [anon_sym_columns] = ACTIONS(1887), - [anon_sym_rows] = ACTIONS(1887), - [anon_sym_reverse] = ACTIONS(1887), - }, - [348] = { - [sym_expression] = STATE(553), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(348), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1368), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_COMMA] = ACTIONS(1322), - [sym_integer] = ACTIONS(1377), - [sym_float] = ACTIONS(1380), - [sym_string] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_EQ_GT] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1920), - [anon_sym_assert] = ACTIONS(1923), - [anon_sym_assert_equal] = ACTIONS(1923), - [anon_sym_download] = ACTIONS(1923), - [anon_sym_help] = ACTIONS(1923), - [anon_sym_length] = ACTIONS(1923), - [anon_sym_output] = ACTIONS(1923), - [anon_sym_output_error] = ACTIONS(1923), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_append] = ACTIONS(1923), - [anon_sym_metadata] = ACTIONS(1923), - [anon_sym_move] = ACTIONS(1923), - [anon_sym_read] = ACTIONS(1923), - [anon_sym_workdir] = ACTIONS(1923), - [anon_sym_write] = ACTIONS(1923), - [anon_sym_from_json] = ACTIONS(1923), - [anon_sym_to_json] = ACTIONS(1923), - [anon_sym_to_string] = ACTIONS(1923), - [anon_sym_to_float] = ACTIONS(1923), - [anon_sym_bash] = ACTIONS(1923), - [anon_sym_fish] = ACTIONS(1923), - [anon_sym_raw] = ACTIONS(1923), - [anon_sym_sh] = ACTIONS(1923), - [anon_sym_zsh] = ACTIONS(1923), - [anon_sym_random] = ACTIONS(1923), - [anon_sym_random_boolean] = ACTIONS(1923), - [anon_sym_random_float] = ACTIONS(1923), - [anon_sym_random_integer] = ACTIONS(1923), - [anon_sym_columns] = ACTIONS(1923), - [anon_sym_rows] = ACTIONS(1923), - [anon_sym_reverse] = ACTIONS(1923), - }, - [349] = { - [sym_math_operator] = STATE(845), - [sym_logic_operator] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1926), - [anon_sym_COMMA] = ACTIONS(1926), - [sym_integer] = ACTIONS(1928), - [sym_float] = ACTIONS(1926), - [sym_string] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_RBRACK] = ACTIONS(1926), - [anon_sym_COLON] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(1926), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_elseif] = ACTIONS(1926), - [anon_sym_else] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_transform] = ACTIONS(1928), - [anon_sym_filter] = ACTIONS(1928), - [anon_sym_find] = ACTIONS(1928), - [anon_sym_remove] = ACTIONS(1928), - [anon_sym_reduce] = ACTIONS(1928), - [anon_sym_select] = ACTIONS(1928), - [anon_sym_insert] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_table] = ACTIONS(1928), - [anon_sym_assert] = ACTIONS(1928), - [anon_sym_assert_equal] = ACTIONS(1928), - [anon_sym_download] = ACTIONS(1928), - [anon_sym_help] = ACTIONS(1928), - [anon_sym_length] = ACTIONS(1928), - [anon_sym_output] = ACTIONS(1928), - [anon_sym_output_error] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_append] = ACTIONS(1928), - [anon_sym_metadata] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_read] = ACTIONS(1928), - [anon_sym_workdir] = ACTIONS(1928), - [anon_sym_write] = ACTIONS(1928), - [anon_sym_from_json] = ACTIONS(1928), - [anon_sym_to_json] = ACTIONS(1928), - [anon_sym_to_string] = ACTIONS(1928), - [anon_sym_to_float] = ACTIONS(1928), - [anon_sym_bash] = ACTIONS(1928), - [anon_sym_fish] = ACTIONS(1928), - [anon_sym_raw] = ACTIONS(1928), - [anon_sym_sh] = ACTIONS(1928), - [anon_sym_zsh] = ACTIONS(1928), - [anon_sym_random] = ACTIONS(1928), - [anon_sym_random_boolean] = ACTIONS(1928), - [anon_sym_random_float] = ACTIONS(1928), - [anon_sym_random_integer] = ACTIONS(1928), - [anon_sym_columns] = ACTIONS(1928), - [anon_sym_rows] = ACTIONS(1928), - [anon_sym_reverse] = ACTIONS(1928), - }, - [350] = { - [sym_math_operator] = STATE(845), - [sym_logic_operator] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [anon_sym_COMMA] = ACTIONS(1930), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1930), - [sym_string] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_RBRACK] = ACTIONS(1930), - [anon_sym_COLON] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1930), - [anon_sym_PIPE_PIPE] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_elseif] = ACTIONS(1930), - [anon_sym_else] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_transform] = ACTIONS(1932), - [anon_sym_filter] = ACTIONS(1932), - [anon_sym_find] = ACTIONS(1932), - [anon_sym_remove] = ACTIONS(1932), - [anon_sym_reduce] = ACTIONS(1932), - [anon_sym_select] = ACTIONS(1932), - [anon_sym_insert] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_table] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_assert_equal] = ACTIONS(1932), - [anon_sym_download] = ACTIONS(1932), - [anon_sym_help] = ACTIONS(1932), - [anon_sym_length] = ACTIONS(1932), - [anon_sym_output] = ACTIONS(1932), - [anon_sym_output_error] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_append] = ACTIONS(1932), - [anon_sym_metadata] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_read] = ACTIONS(1932), - [anon_sym_workdir] = ACTIONS(1932), - [anon_sym_write] = ACTIONS(1932), - [anon_sym_from_json] = ACTIONS(1932), - [anon_sym_to_json] = ACTIONS(1932), - [anon_sym_to_string] = ACTIONS(1932), - [anon_sym_to_float] = ACTIONS(1932), - [anon_sym_bash] = ACTIONS(1932), - [anon_sym_fish] = ACTIONS(1932), - [anon_sym_raw] = ACTIONS(1932), - [anon_sym_sh] = ACTIONS(1932), - [anon_sym_zsh] = ACTIONS(1932), - [anon_sym_random] = ACTIONS(1932), - [anon_sym_random_boolean] = ACTIONS(1932), - [anon_sym_random_float] = ACTIONS(1932), - [anon_sym_random_integer] = ACTIONS(1932), - [anon_sym_columns] = ACTIONS(1932), - [anon_sym_rows] = ACTIONS(1932), - [anon_sym_reverse] = ACTIONS(1932), - }, - [351] = { - [sym_math_operator] = STATE(845), - [sym_logic_operator] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1934), - [anon_sym_COMMA] = ACTIONS(1934), - [sym_integer] = ACTIONS(1936), - [sym_float] = ACTIONS(1934), - [sym_string] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_RBRACK] = ACTIONS(1934), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_DOT_DOT] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_EQ_EQ] = ACTIONS(1934), - [anon_sym_BANG_EQ] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_PIPE_PIPE] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_elseif] = ACTIONS(1934), - [anon_sym_else] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_transform] = ACTIONS(1936), - [anon_sym_filter] = ACTIONS(1936), - [anon_sym_find] = ACTIONS(1936), - [anon_sym_remove] = ACTIONS(1936), - [anon_sym_reduce] = ACTIONS(1936), - [anon_sym_select] = ACTIONS(1936), - [anon_sym_insert] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_table] = ACTIONS(1936), - [anon_sym_assert] = ACTIONS(1936), - [anon_sym_assert_equal] = ACTIONS(1936), - [anon_sym_download] = ACTIONS(1936), - [anon_sym_help] = ACTIONS(1936), - [anon_sym_length] = ACTIONS(1936), - [anon_sym_output] = ACTIONS(1936), - [anon_sym_output_error] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_append] = ACTIONS(1936), - [anon_sym_metadata] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_read] = ACTIONS(1936), - [anon_sym_workdir] = ACTIONS(1936), - [anon_sym_write] = ACTIONS(1936), - [anon_sym_from_json] = ACTIONS(1936), - [anon_sym_to_json] = ACTIONS(1936), - [anon_sym_to_string] = ACTIONS(1936), - [anon_sym_to_float] = ACTIONS(1936), - [anon_sym_bash] = ACTIONS(1936), - [anon_sym_fish] = ACTIONS(1936), - [anon_sym_raw] = ACTIONS(1936), - [anon_sym_sh] = ACTIONS(1936), - [anon_sym_zsh] = ACTIONS(1936), - [anon_sym_random] = ACTIONS(1936), - [anon_sym_random_boolean] = ACTIONS(1936), - [anon_sym_random_float] = ACTIONS(1936), - [anon_sym_random_integer] = ACTIONS(1936), - [anon_sym_columns] = ACTIONS(1936), - [anon_sym_rows] = ACTIONS(1936), - [anon_sym_reverse] = ACTIONS(1936), - }, - [352] = { - [sym_expression] = STATE(553), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(344), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1253), - [anon_sym_COMMA] = ACTIONS(1253), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1253), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_EQ_GT] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_assert_equal] = ACTIONS(1907), - [anon_sym_download] = ACTIONS(1907), - [anon_sym_help] = ACTIONS(1907), - [anon_sym_length] = ACTIONS(1907), - [anon_sym_output] = ACTIONS(1907), - [anon_sym_output_error] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_append] = ACTIONS(1907), - [anon_sym_metadata] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_read] = ACTIONS(1907), - [anon_sym_workdir] = ACTIONS(1907), - [anon_sym_write] = ACTIONS(1907), - [anon_sym_from_json] = ACTIONS(1907), - [anon_sym_to_json] = ACTIONS(1907), - [anon_sym_to_string] = ACTIONS(1907), - [anon_sym_to_float] = ACTIONS(1907), - [anon_sym_bash] = ACTIONS(1907), - [anon_sym_fish] = ACTIONS(1907), - [anon_sym_raw] = ACTIONS(1907), - [anon_sym_sh] = ACTIONS(1907), - [anon_sym_zsh] = ACTIONS(1907), - [anon_sym_random] = ACTIONS(1907), - [anon_sym_random_boolean] = ACTIONS(1907), - [anon_sym_random_float] = ACTIONS(1907), - [anon_sym_random_integer] = ACTIONS(1907), - [anon_sym_columns] = ACTIONS(1907), - [anon_sym_rows] = ACTIONS(1907), - [anon_sym_reverse] = ACTIONS(1907), - }, - [353] = { - [sym_math_operator] = STATE(845), - [sym_logic_operator] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(1942), - [sym_integer] = ACTIONS(1940), - [sym_float] = ACTIONS(1938), - [sym_string] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_RBRACK] = ACTIONS(1938), - [anon_sym_COLON] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_elseif] = ACTIONS(1938), - [anon_sym_else] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_transform] = ACTIONS(1940), - [anon_sym_filter] = ACTIONS(1940), - [anon_sym_find] = ACTIONS(1940), - [anon_sym_remove] = ACTIONS(1940), - [anon_sym_reduce] = ACTIONS(1940), - [anon_sym_select] = ACTIONS(1940), - [anon_sym_insert] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_table] = ACTIONS(1940), - [anon_sym_assert] = ACTIONS(1940), - [anon_sym_assert_equal] = ACTIONS(1940), - [anon_sym_download] = ACTIONS(1940), - [anon_sym_help] = ACTIONS(1940), - [anon_sym_length] = ACTIONS(1940), - [anon_sym_output] = ACTIONS(1940), - [anon_sym_output_error] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_append] = ACTIONS(1940), - [anon_sym_metadata] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_read] = ACTIONS(1940), - [anon_sym_workdir] = ACTIONS(1940), - [anon_sym_write] = ACTIONS(1940), - [anon_sym_from_json] = ACTIONS(1940), - [anon_sym_to_json] = ACTIONS(1940), - [anon_sym_to_string] = ACTIONS(1940), - [anon_sym_to_float] = ACTIONS(1940), - [anon_sym_bash] = ACTIONS(1940), - [anon_sym_fish] = ACTIONS(1940), - [anon_sym_raw] = ACTIONS(1940), - [anon_sym_sh] = ACTIONS(1940), - [anon_sym_zsh] = ACTIONS(1940), - [anon_sym_random] = ACTIONS(1940), - [anon_sym_random_boolean] = ACTIONS(1940), - [anon_sym_random_float] = ACTIONS(1940), - [anon_sym_random_integer] = ACTIONS(1940), - [anon_sym_columns] = ACTIONS(1940), - [anon_sym_rows] = ACTIONS(1940), - [anon_sym_reverse] = ACTIONS(1940), - }, - [354] = { - [sym_else_if] = STATE(361), - [sym_else] = STATE(495), - [aux_sym_if_else_repeat1] = STATE(361), - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [sym_integer] = ACTIONS(1901), - [sym_float] = ACTIONS(1899), - [sym_string] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_RBRACK] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_elseif] = ACTIONS(1909), - [anon_sym_else] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_EQ_GT] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_transform] = ACTIONS(1901), - [anon_sym_filter] = ACTIONS(1901), - [anon_sym_find] = ACTIONS(1901), - [anon_sym_remove] = ACTIONS(1901), - [anon_sym_reduce] = ACTIONS(1901), - [anon_sym_select] = ACTIONS(1901), - [anon_sym_insert] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_table] = ACTIONS(1901), - [anon_sym_assert] = ACTIONS(1901), - [anon_sym_assert_equal] = ACTIONS(1901), - [anon_sym_download] = ACTIONS(1901), - [anon_sym_help] = ACTIONS(1901), - [anon_sym_length] = ACTIONS(1901), - [anon_sym_output] = ACTIONS(1901), - [anon_sym_output_error] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_append] = ACTIONS(1901), - [anon_sym_metadata] = ACTIONS(1901), - [anon_sym_move] = ACTIONS(1901), - [anon_sym_read] = ACTIONS(1901), - [anon_sym_workdir] = ACTIONS(1901), - [anon_sym_write] = ACTIONS(1901), - [anon_sym_from_json] = ACTIONS(1901), - [anon_sym_to_json] = ACTIONS(1901), - [anon_sym_to_string] = ACTIONS(1901), - [anon_sym_to_float] = ACTIONS(1901), - [anon_sym_bash] = ACTIONS(1901), - [anon_sym_fish] = ACTIONS(1901), - [anon_sym_raw] = ACTIONS(1901), - [anon_sym_sh] = ACTIONS(1901), - [anon_sym_zsh] = ACTIONS(1901), - [anon_sym_random] = ACTIONS(1901), - [anon_sym_random_boolean] = ACTIONS(1901), - [anon_sym_random_float] = ACTIONS(1901), - [anon_sym_random_integer] = ACTIONS(1901), - [anon_sym_columns] = ACTIONS(1901), - [anon_sym_rows] = ACTIONS(1901), - [anon_sym_reverse] = ACTIONS(1901), - }, - [355] = { - [sym_math_operator] = STATE(845), - [sym_logic_operator] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1949), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_COMMA] = ACTIONS(1947), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1947), - [sym_string] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_RBRACK] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_elseif] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_transform] = ACTIONS(1949), - [anon_sym_filter] = ACTIONS(1949), - [anon_sym_find] = ACTIONS(1949), - [anon_sym_remove] = ACTIONS(1949), - [anon_sym_reduce] = ACTIONS(1949), - [anon_sym_select] = ACTIONS(1949), - [anon_sym_insert] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_table] = ACTIONS(1949), - [anon_sym_assert] = ACTIONS(1949), - [anon_sym_assert_equal] = ACTIONS(1949), - [anon_sym_download] = ACTIONS(1949), - [anon_sym_help] = ACTIONS(1949), - [anon_sym_length] = ACTIONS(1949), - [anon_sym_output] = ACTIONS(1949), - [anon_sym_output_error] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_append] = ACTIONS(1949), - [anon_sym_metadata] = ACTIONS(1949), - [anon_sym_move] = ACTIONS(1949), - [anon_sym_read] = ACTIONS(1949), - [anon_sym_workdir] = ACTIONS(1949), - [anon_sym_write] = ACTIONS(1949), - [anon_sym_from_json] = ACTIONS(1949), - [anon_sym_to_json] = ACTIONS(1949), - [anon_sym_to_string] = ACTIONS(1949), - [anon_sym_to_float] = ACTIONS(1949), - [anon_sym_bash] = ACTIONS(1949), - [anon_sym_fish] = ACTIONS(1949), - [anon_sym_raw] = ACTIONS(1949), - [anon_sym_sh] = ACTIONS(1949), - [anon_sym_zsh] = ACTIONS(1949), - [anon_sym_random] = ACTIONS(1949), - [anon_sym_random_boolean] = ACTIONS(1949), - [anon_sym_random_float] = ACTIONS(1949), - [anon_sym_random_integer] = ACTIONS(1949), - [anon_sym_columns] = ACTIONS(1949), - [anon_sym_rows] = ACTIONS(1949), - [anon_sym_reverse] = ACTIONS(1949), - }, - [356] = { - [sym_math_operator] = STATE(845), - [sym_logic_operator] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(1951), - [sym_identifier] = ACTIONS(1953), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1951), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1951), - [sym_string] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_RBRACK] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_elseif] = ACTIONS(1951), - [anon_sym_else] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_transform] = ACTIONS(1953), - [anon_sym_filter] = ACTIONS(1953), - [anon_sym_find] = ACTIONS(1953), - [anon_sym_remove] = ACTIONS(1953), - [anon_sym_reduce] = ACTIONS(1953), - [anon_sym_select] = ACTIONS(1953), - [anon_sym_insert] = ACTIONS(1953), - [anon_sym_async] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_table] = ACTIONS(1953), - [anon_sym_assert] = ACTIONS(1953), - [anon_sym_assert_equal] = ACTIONS(1953), - [anon_sym_download] = ACTIONS(1953), - [anon_sym_help] = ACTIONS(1953), - [anon_sym_length] = ACTIONS(1953), - [anon_sym_output] = ACTIONS(1953), - [anon_sym_output_error] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_append] = ACTIONS(1953), - [anon_sym_metadata] = ACTIONS(1953), - [anon_sym_move] = ACTIONS(1953), - [anon_sym_read] = ACTIONS(1953), - [anon_sym_workdir] = ACTIONS(1953), - [anon_sym_write] = ACTIONS(1953), - [anon_sym_from_json] = ACTIONS(1953), - [anon_sym_to_json] = ACTIONS(1953), - [anon_sym_to_string] = ACTIONS(1953), - [anon_sym_to_float] = ACTIONS(1953), - [anon_sym_bash] = ACTIONS(1953), - [anon_sym_fish] = ACTIONS(1953), - [anon_sym_raw] = ACTIONS(1953), - [anon_sym_sh] = ACTIONS(1953), - [anon_sym_zsh] = ACTIONS(1953), - [anon_sym_random] = ACTIONS(1953), - [anon_sym_random_boolean] = ACTIONS(1953), - [anon_sym_random_float] = ACTIONS(1953), - [anon_sym_random_integer] = ACTIONS(1953), - [anon_sym_columns] = ACTIONS(1953), - [anon_sym_rows] = ACTIONS(1953), - [anon_sym_reverse] = ACTIONS(1953), - }, - [357] = { - [sym_else_if] = STATE(357), - [aux_sym_if_else_repeat1] = STATE(357), - [ts_builtin_sym_end] = ACTIONS(1955), - [sym_identifier] = ACTIONS(1957), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_COMMA] = ACTIONS(1955), - [sym_integer] = ACTIONS(1957), - [sym_float] = ACTIONS(1955), - [sym_string] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1957), - [anon_sym_false] = ACTIONS(1957), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_RBRACK] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(1955), - [anon_sym_SLASH] = ACTIONS(1955), - [anon_sym_PERCENT] = ACTIONS(1955), - [anon_sym_EQ_EQ] = ACTIONS(1955), - [anon_sym_BANG_EQ] = ACTIONS(1955), - [anon_sym_AMP_AMP] = ACTIONS(1955), - [anon_sym_PIPE_PIPE] = ACTIONS(1955), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_GT_EQ] = ACTIONS(1955), - [anon_sym_LT_EQ] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_elseif] = ACTIONS(1959), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_EQ_GT] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_transform] = ACTIONS(1957), - [anon_sym_filter] = ACTIONS(1957), - [anon_sym_find] = ACTIONS(1957), - [anon_sym_remove] = ACTIONS(1957), - [anon_sym_reduce] = ACTIONS(1957), - [anon_sym_select] = ACTIONS(1957), - [anon_sym_insert] = ACTIONS(1957), - [anon_sym_async] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_table] = ACTIONS(1957), - [anon_sym_assert] = ACTIONS(1957), - [anon_sym_assert_equal] = ACTIONS(1957), - [anon_sym_download] = ACTIONS(1957), - [anon_sym_help] = ACTIONS(1957), - [anon_sym_length] = ACTIONS(1957), - [anon_sym_output] = ACTIONS(1957), - [anon_sym_output_error] = ACTIONS(1957), - [anon_sym_type] = ACTIONS(1957), - [anon_sym_append] = ACTIONS(1957), - [anon_sym_metadata] = ACTIONS(1957), - [anon_sym_move] = ACTIONS(1957), - [anon_sym_read] = ACTIONS(1957), - [anon_sym_workdir] = ACTIONS(1957), - [anon_sym_write] = ACTIONS(1957), - [anon_sym_from_json] = ACTIONS(1957), - [anon_sym_to_json] = ACTIONS(1957), - [anon_sym_to_string] = ACTIONS(1957), - [anon_sym_to_float] = ACTIONS(1957), - [anon_sym_bash] = ACTIONS(1957), - [anon_sym_fish] = ACTIONS(1957), - [anon_sym_raw] = ACTIONS(1957), - [anon_sym_sh] = ACTIONS(1957), - [anon_sym_zsh] = ACTIONS(1957), - [anon_sym_random] = ACTIONS(1957), - [anon_sym_random_boolean] = ACTIONS(1957), - [anon_sym_random_float] = ACTIONS(1957), - [anon_sym_random_integer] = ACTIONS(1957), - [anon_sym_columns] = ACTIONS(1957), - [anon_sym_rows] = ACTIONS(1957), - [anon_sym_reverse] = ACTIONS(1957), - }, - [358] = { - [sym_math_operator] = STATE(845), - [sym_logic_operator] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [sym_string] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_elseif] = ACTIONS(1913), - [anon_sym_else] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_transform] = ACTIONS(1915), - [anon_sym_filter] = ACTIONS(1915), - [anon_sym_find] = ACTIONS(1915), - [anon_sym_remove] = ACTIONS(1915), - [anon_sym_reduce] = ACTIONS(1915), - [anon_sym_select] = ACTIONS(1915), - [anon_sym_insert] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_table] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_assert_equal] = ACTIONS(1915), - [anon_sym_download] = ACTIONS(1915), - [anon_sym_help] = ACTIONS(1915), - [anon_sym_length] = ACTIONS(1915), - [anon_sym_output] = ACTIONS(1915), - [anon_sym_output_error] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_append] = ACTIONS(1915), - [anon_sym_metadata] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_read] = ACTIONS(1915), - [anon_sym_workdir] = ACTIONS(1915), - [anon_sym_write] = ACTIONS(1915), - [anon_sym_from_json] = ACTIONS(1915), - [anon_sym_to_json] = ACTIONS(1915), - [anon_sym_to_string] = ACTIONS(1915), - [anon_sym_to_float] = ACTIONS(1915), - [anon_sym_bash] = ACTIONS(1915), - [anon_sym_fish] = ACTIONS(1915), - [anon_sym_raw] = ACTIONS(1915), - [anon_sym_sh] = ACTIONS(1915), - [anon_sym_zsh] = ACTIONS(1915), - [anon_sym_random] = ACTIONS(1915), - [anon_sym_random_boolean] = ACTIONS(1915), - [anon_sym_random_float] = ACTIONS(1915), - [anon_sym_random_integer] = ACTIONS(1915), - [anon_sym_columns] = ACTIONS(1915), - [anon_sym_rows] = ACTIONS(1915), - [anon_sym_reverse] = ACTIONS(1915), - }, - [359] = { - [sym_expression] = STATE(553), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(348), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1245), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1245), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_EQ_GT] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_assert_equal] = ACTIONS(1907), - [anon_sym_download] = ACTIONS(1907), - [anon_sym_help] = ACTIONS(1907), - [anon_sym_length] = ACTIONS(1907), - [anon_sym_output] = ACTIONS(1907), - [anon_sym_output_error] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_append] = ACTIONS(1907), - [anon_sym_metadata] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_read] = ACTIONS(1907), - [anon_sym_workdir] = ACTIONS(1907), - [anon_sym_write] = ACTIONS(1907), - [anon_sym_from_json] = ACTIONS(1907), - [anon_sym_to_json] = ACTIONS(1907), - [anon_sym_to_string] = ACTIONS(1907), - [anon_sym_to_float] = ACTIONS(1907), - [anon_sym_bash] = ACTIONS(1907), - [anon_sym_fish] = ACTIONS(1907), - [anon_sym_raw] = ACTIONS(1907), - [anon_sym_sh] = ACTIONS(1907), - [anon_sym_zsh] = ACTIONS(1907), - [anon_sym_random] = ACTIONS(1907), - [anon_sym_random_boolean] = ACTIONS(1907), - [anon_sym_random_float] = ACTIONS(1907), - [anon_sym_random_integer] = ACTIONS(1907), - [anon_sym_columns] = ACTIONS(1907), - [anon_sym_rows] = ACTIONS(1907), - [anon_sym_reverse] = ACTIONS(1907), - }, - [360] = { - [sym_math_operator] = STATE(845), - [sym_logic_operator] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_RBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(1964), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_elseif] = ACTIONS(1964), - [anon_sym_else] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), - }, - [361] = { - [sym_else_if] = STATE(366), - [sym_else] = STATE(469), - [aux_sym_if_else_repeat1] = STATE(366), - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(1885), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [sym_string] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_RBRACK] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_elseif] = ACTIONS(1909), - [anon_sym_else] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_transform] = ACTIONS(1887), - [anon_sym_filter] = ACTIONS(1887), - [anon_sym_find] = ACTIONS(1887), - [anon_sym_remove] = ACTIONS(1887), - [anon_sym_reduce] = ACTIONS(1887), - [anon_sym_select] = ACTIONS(1887), - [anon_sym_insert] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_table] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_assert_equal] = ACTIONS(1887), - [anon_sym_download] = ACTIONS(1887), - [anon_sym_help] = ACTIONS(1887), - [anon_sym_length] = ACTIONS(1887), - [anon_sym_output] = ACTIONS(1887), - [anon_sym_output_error] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_append] = ACTIONS(1887), - [anon_sym_metadata] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_read] = ACTIONS(1887), - [anon_sym_workdir] = ACTIONS(1887), - [anon_sym_write] = ACTIONS(1887), - [anon_sym_from_json] = ACTIONS(1887), - [anon_sym_to_json] = ACTIONS(1887), - [anon_sym_to_string] = ACTIONS(1887), - [anon_sym_to_float] = ACTIONS(1887), - [anon_sym_bash] = ACTIONS(1887), - [anon_sym_fish] = ACTIONS(1887), - [anon_sym_raw] = ACTIONS(1887), - [anon_sym_sh] = ACTIONS(1887), - [anon_sym_zsh] = ACTIONS(1887), - [anon_sym_random] = ACTIONS(1887), - [anon_sym_random_boolean] = ACTIONS(1887), - [anon_sym_random_float] = ACTIONS(1887), - [anon_sym_random_integer] = ACTIONS(1887), - [anon_sym_columns] = ACTIONS(1887), - [anon_sym_rows] = ACTIONS(1887), - [anon_sym_reverse] = ACTIONS(1887), - }, - [362] = { - [sym_expression] = STATE(559), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(371), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1318), - [anon_sym_COMMA] = ACTIONS(1318), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1318), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [363] = { - [sym_math_operator] = STATE(736), - [sym_logic_operator] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1926), - [anon_sym_COMMA] = ACTIONS(1926), - [sym_integer] = ACTIONS(1928), - [sym_float] = ACTIONS(1926), - [sym_string] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_RBRACK] = ACTIONS(1926), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_elseif] = ACTIONS(1926), - [anon_sym_else] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_transform] = ACTIONS(1928), - [anon_sym_filter] = ACTIONS(1928), - [anon_sym_find] = ACTIONS(1928), - [anon_sym_remove] = ACTIONS(1928), - [anon_sym_reduce] = ACTIONS(1928), - [anon_sym_select] = ACTIONS(1928), - [anon_sym_insert] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_table] = ACTIONS(1928), - [anon_sym_assert] = ACTIONS(1928), - [anon_sym_assert_equal] = ACTIONS(1928), - [anon_sym_download] = ACTIONS(1928), - [anon_sym_help] = ACTIONS(1928), - [anon_sym_length] = ACTIONS(1928), - [anon_sym_output] = ACTIONS(1928), - [anon_sym_output_error] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_append] = ACTIONS(1928), - [anon_sym_metadata] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_read] = ACTIONS(1928), - [anon_sym_workdir] = ACTIONS(1928), - [anon_sym_write] = ACTIONS(1928), - [anon_sym_from_json] = ACTIONS(1928), - [anon_sym_to_json] = ACTIONS(1928), - [anon_sym_to_string] = ACTIONS(1928), - [anon_sym_to_float] = ACTIONS(1928), - [anon_sym_bash] = ACTIONS(1928), - [anon_sym_fish] = ACTIONS(1928), - [anon_sym_raw] = ACTIONS(1928), - [anon_sym_sh] = ACTIONS(1928), - [anon_sym_zsh] = ACTIONS(1928), - [anon_sym_random] = ACTIONS(1928), - [anon_sym_random_boolean] = ACTIONS(1928), - [anon_sym_random_float] = ACTIONS(1928), - [anon_sym_random_integer] = ACTIONS(1928), - [anon_sym_columns] = ACTIONS(1928), - [anon_sym_rows] = ACTIONS(1928), - [anon_sym_reverse] = ACTIONS(1928), - }, - [364] = { - [sym_expression] = STATE(559), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(362), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1253), - [anon_sym_COMMA] = ACTIONS(1253), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1253), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [365] = { - [sym_math_operator] = STATE(736), - [sym_logic_operator] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(1951), - [sym_identifier] = ACTIONS(1953), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1951), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1951), - [sym_string] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_RBRACK] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_elseif] = ACTIONS(1951), - [anon_sym_else] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_transform] = ACTIONS(1953), - [anon_sym_filter] = ACTIONS(1953), - [anon_sym_find] = ACTIONS(1953), - [anon_sym_remove] = ACTIONS(1953), - [anon_sym_reduce] = ACTIONS(1953), - [anon_sym_select] = ACTIONS(1953), - [anon_sym_insert] = ACTIONS(1953), - [anon_sym_async] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_table] = ACTIONS(1953), - [anon_sym_assert] = ACTIONS(1953), - [anon_sym_assert_equal] = ACTIONS(1953), - [anon_sym_download] = ACTIONS(1953), - [anon_sym_help] = ACTIONS(1953), - [anon_sym_length] = ACTIONS(1953), - [anon_sym_output] = ACTIONS(1953), - [anon_sym_output_error] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_append] = ACTIONS(1953), - [anon_sym_metadata] = ACTIONS(1953), - [anon_sym_move] = ACTIONS(1953), - [anon_sym_read] = ACTIONS(1953), - [anon_sym_workdir] = ACTIONS(1953), - [anon_sym_write] = ACTIONS(1953), - [anon_sym_from_json] = ACTIONS(1953), - [anon_sym_to_json] = ACTIONS(1953), - [anon_sym_to_string] = ACTIONS(1953), - [anon_sym_to_float] = ACTIONS(1953), - [anon_sym_bash] = ACTIONS(1953), - [anon_sym_fish] = ACTIONS(1953), - [anon_sym_raw] = ACTIONS(1953), - [anon_sym_sh] = ACTIONS(1953), - [anon_sym_zsh] = ACTIONS(1953), - [anon_sym_random] = ACTIONS(1953), - [anon_sym_random_boolean] = ACTIONS(1953), - [anon_sym_random_float] = ACTIONS(1953), - [anon_sym_random_integer] = ACTIONS(1953), - [anon_sym_columns] = ACTIONS(1953), - [anon_sym_rows] = ACTIONS(1953), - [anon_sym_reverse] = ACTIONS(1953), - }, - [366] = { - [sym_else_if] = STATE(366), - [aux_sym_if_else_repeat1] = STATE(366), - [ts_builtin_sym_end] = ACTIONS(1955), - [sym_identifier] = ACTIONS(1957), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_COMMA] = ACTIONS(1955), - [sym_integer] = ACTIONS(1957), - [sym_float] = ACTIONS(1955), - [sym_string] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1957), - [anon_sym_false] = ACTIONS(1957), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_RBRACK] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(1955), - [anon_sym_SLASH] = ACTIONS(1955), - [anon_sym_PERCENT] = ACTIONS(1955), - [anon_sym_EQ_EQ] = ACTIONS(1955), - [anon_sym_BANG_EQ] = ACTIONS(1955), - [anon_sym_AMP_AMP] = ACTIONS(1955), - [anon_sym_PIPE_PIPE] = ACTIONS(1955), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_GT_EQ] = ACTIONS(1955), - [anon_sym_LT_EQ] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_elseif] = ACTIONS(1970), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_EQ_GT] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_transform] = ACTIONS(1957), - [anon_sym_filter] = ACTIONS(1957), - [anon_sym_find] = ACTIONS(1957), - [anon_sym_remove] = ACTIONS(1957), - [anon_sym_reduce] = ACTIONS(1957), - [anon_sym_select] = ACTIONS(1957), - [anon_sym_insert] = ACTIONS(1957), - [anon_sym_async] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_table] = ACTIONS(1957), - [anon_sym_assert] = ACTIONS(1957), - [anon_sym_assert_equal] = ACTIONS(1957), - [anon_sym_download] = ACTIONS(1957), - [anon_sym_help] = ACTIONS(1957), - [anon_sym_length] = ACTIONS(1957), - [anon_sym_output] = ACTIONS(1957), - [anon_sym_output_error] = ACTIONS(1957), - [anon_sym_type] = ACTIONS(1957), - [anon_sym_append] = ACTIONS(1957), - [anon_sym_metadata] = ACTIONS(1957), - [anon_sym_move] = ACTIONS(1957), - [anon_sym_read] = ACTIONS(1957), - [anon_sym_workdir] = ACTIONS(1957), - [anon_sym_write] = ACTIONS(1957), - [anon_sym_from_json] = ACTIONS(1957), - [anon_sym_to_json] = ACTIONS(1957), - [anon_sym_to_string] = ACTIONS(1957), - [anon_sym_to_float] = ACTIONS(1957), - [anon_sym_bash] = ACTIONS(1957), - [anon_sym_fish] = ACTIONS(1957), - [anon_sym_raw] = ACTIONS(1957), - [anon_sym_sh] = ACTIONS(1957), - [anon_sym_zsh] = ACTIONS(1957), - [anon_sym_random] = ACTIONS(1957), - [anon_sym_random_boolean] = ACTIONS(1957), - [anon_sym_random_float] = ACTIONS(1957), - [anon_sym_random_integer] = ACTIONS(1957), - [anon_sym_columns] = ACTIONS(1957), - [anon_sym_rows] = ACTIONS(1957), - [anon_sym_reverse] = ACTIONS(1957), - }, - [367] = { - [sym_math_operator] = STATE(736), - [sym_logic_operator] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1949), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_COMMA] = ACTIONS(1947), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1947), - [sym_string] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_RBRACK] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_elseif] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_transform] = ACTIONS(1949), - [anon_sym_filter] = ACTIONS(1949), - [anon_sym_find] = ACTIONS(1949), - [anon_sym_remove] = ACTIONS(1949), - [anon_sym_reduce] = ACTIONS(1949), - [anon_sym_select] = ACTIONS(1949), - [anon_sym_insert] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_table] = ACTIONS(1949), - [anon_sym_assert] = ACTIONS(1949), - [anon_sym_assert_equal] = ACTIONS(1949), - [anon_sym_download] = ACTIONS(1949), - [anon_sym_help] = ACTIONS(1949), - [anon_sym_length] = ACTIONS(1949), - [anon_sym_output] = ACTIONS(1949), - [anon_sym_output_error] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_append] = ACTIONS(1949), - [anon_sym_metadata] = ACTIONS(1949), - [anon_sym_move] = ACTIONS(1949), - [anon_sym_read] = ACTIONS(1949), - [anon_sym_workdir] = ACTIONS(1949), - [anon_sym_write] = ACTIONS(1949), - [anon_sym_from_json] = ACTIONS(1949), - [anon_sym_to_json] = ACTIONS(1949), - [anon_sym_to_string] = ACTIONS(1949), - [anon_sym_to_float] = ACTIONS(1949), - [anon_sym_bash] = ACTIONS(1949), - [anon_sym_fish] = ACTIONS(1949), - [anon_sym_raw] = ACTIONS(1949), - [anon_sym_sh] = ACTIONS(1949), - [anon_sym_zsh] = ACTIONS(1949), - [anon_sym_random] = ACTIONS(1949), - [anon_sym_random_boolean] = ACTIONS(1949), - [anon_sym_random_float] = ACTIONS(1949), - [anon_sym_random_integer] = ACTIONS(1949), - [anon_sym_columns] = ACTIONS(1949), - [anon_sym_rows] = ACTIONS(1949), - [anon_sym_reverse] = ACTIONS(1949), - }, - [368] = { - [sym_math_operator] = STATE(845), - [sym_logic_operator] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(1973), - [sym_integer] = ACTIONS(1940), - [sym_float] = ACTIONS(1938), - [sym_string] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_COLON] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_elseif] = ACTIONS(1938), - [anon_sym_else] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_transform] = ACTIONS(1940), - [anon_sym_filter] = ACTIONS(1940), - [anon_sym_find] = ACTIONS(1940), - [anon_sym_remove] = ACTIONS(1940), - [anon_sym_reduce] = ACTIONS(1940), - [anon_sym_select] = ACTIONS(1940), - [anon_sym_insert] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_table] = ACTIONS(1940), - [anon_sym_assert] = ACTIONS(1940), - [anon_sym_assert_equal] = ACTIONS(1940), - [anon_sym_download] = ACTIONS(1940), - [anon_sym_help] = ACTIONS(1940), - [anon_sym_length] = ACTIONS(1940), - [anon_sym_output] = ACTIONS(1940), - [anon_sym_output_error] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_append] = ACTIONS(1940), - [anon_sym_metadata] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_read] = ACTIONS(1940), - [anon_sym_workdir] = ACTIONS(1940), - [anon_sym_write] = ACTIONS(1940), - [anon_sym_from_json] = ACTIONS(1940), - [anon_sym_to_json] = ACTIONS(1940), - [anon_sym_to_string] = ACTIONS(1940), - [anon_sym_to_float] = ACTIONS(1940), - [anon_sym_bash] = ACTIONS(1940), - [anon_sym_fish] = ACTIONS(1940), - [anon_sym_raw] = ACTIONS(1940), - [anon_sym_sh] = ACTIONS(1940), - [anon_sym_zsh] = ACTIONS(1940), - [anon_sym_random] = ACTIONS(1940), - [anon_sym_random_boolean] = ACTIONS(1940), - [anon_sym_random_float] = ACTIONS(1940), - [anon_sym_random_integer] = ACTIONS(1940), - [anon_sym_columns] = ACTIONS(1940), - [anon_sym_rows] = ACTIONS(1940), - [anon_sym_reverse] = ACTIONS(1940), - }, - [369] = { - [sym_math_operator] = STATE(736), - [sym_logic_operator] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(1942), - [sym_integer] = ACTIONS(1940), - [sym_float] = ACTIONS(1938), - [sym_string] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_RBRACK] = ACTIONS(1938), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_elseif] = ACTIONS(1938), - [anon_sym_else] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_transform] = ACTIONS(1940), - [anon_sym_filter] = ACTIONS(1940), - [anon_sym_find] = ACTIONS(1940), - [anon_sym_remove] = ACTIONS(1940), - [anon_sym_reduce] = ACTIONS(1940), - [anon_sym_select] = ACTIONS(1940), - [anon_sym_insert] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_table] = ACTIONS(1940), - [anon_sym_assert] = ACTIONS(1940), - [anon_sym_assert_equal] = ACTIONS(1940), - [anon_sym_download] = ACTIONS(1940), - [anon_sym_help] = ACTIONS(1940), - [anon_sym_length] = ACTIONS(1940), - [anon_sym_output] = ACTIONS(1940), - [anon_sym_output_error] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_append] = ACTIONS(1940), - [anon_sym_metadata] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_read] = ACTIONS(1940), - [anon_sym_workdir] = ACTIONS(1940), - [anon_sym_write] = ACTIONS(1940), - [anon_sym_from_json] = ACTIONS(1940), - [anon_sym_to_json] = ACTIONS(1940), - [anon_sym_to_string] = ACTIONS(1940), - [anon_sym_to_float] = ACTIONS(1940), - [anon_sym_bash] = ACTIONS(1940), - [anon_sym_fish] = ACTIONS(1940), - [anon_sym_raw] = ACTIONS(1940), - [anon_sym_sh] = ACTIONS(1940), - [anon_sym_zsh] = ACTIONS(1940), - [anon_sym_random] = ACTIONS(1940), - [anon_sym_random_boolean] = ACTIONS(1940), - [anon_sym_random_float] = ACTIONS(1940), - [anon_sym_random_integer] = ACTIONS(1940), - [anon_sym_columns] = ACTIONS(1940), - [anon_sym_rows] = ACTIONS(1940), - [anon_sym_reverse] = ACTIONS(1940), - }, - [370] = { - [sym_math_operator] = STATE(736), - [sym_logic_operator] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1934), - [anon_sym_COMMA] = ACTIONS(1934), - [sym_integer] = ACTIONS(1936), - [sym_float] = ACTIONS(1934), - [sym_string] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_RBRACK] = ACTIONS(1934), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_EQ_EQ] = ACTIONS(1934), - [anon_sym_BANG_EQ] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_PIPE_PIPE] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_elseif] = ACTIONS(1934), - [anon_sym_else] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_transform] = ACTIONS(1936), - [anon_sym_filter] = ACTIONS(1936), - [anon_sym_find] = ACTIONS(1936), - [anon_sym_remove] = ACTIONS(1936), - [anon_sym_reduce] = ACTIONS(1936), - [anon_sym_select] = ACTIONS(1936), - [anon_sym_insert] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_table] = ACTIONS(1936), - [anon_sym_assert] = ACTIONS(1936), - [anon_sym_assert_equal] = ACTIONS(1936), - [anon_sym_download] = ACTIONS(1936), - [anon_sym_help] = ACTIONS(1936), - [anon_sym_length] = ACTIONS(1936), - [anon_sym_output] = ACTIONS(1936), - [anon_sym_output_error] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_append] = ACTIONS(1936), - [anon_sym_metadata] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_read] = ACTIONS(1936), - [anon_sym_workdir] = ACTIONS(1936), - [anon_sym_write] = ACTIONS(1936), - [anon_sym_from_json] = ACTIONS(1936), - [anon_sym_to_json] = ACTIONS(1936), - [anon_sym_to_string] = ACTIONS(1936), - [anon_sym_to_float] = ACTIONS(1936), - [anon_sym_bash] = ACTIONS(1936), - [anon_sym_fish] = ACTIONS(1936), - [anon_sym_raw] = ACTIONS(1936), - [anon_sym_sh] = ACTIONS(1936), - [anon_sym_zsh] = ACTIONS(1936), - [anon_sym_random] = ACTIONS(1936), - [anon_sym_random_boolean] = ACTIONS(1936), - [anon_sym_random_float] = ACTIONS(1936), - [anon_sym_random_integer] = ACTIONS(1936), - [anon_sym_columns] = ACTIONS(1936), - [anon_sym_rows] = ACTIONS(1936), - [anon_sym_reverse] = ACTIONS(1936), - }, - [371] = { - [sym_expression] = STATE(559), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(371), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1368), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_COMMA] = ACTIONS(1322), - [sym_integer] = ACTIONS(1377), - [sym_float] = ACTIONS(1380), - [sym_string] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_EQ_GT] = ACTIONS(1975), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1978), - [anon_sym_assert] = ACTIONS(1981), - [anon_sym_assert_equal] = ACTIONS(1981), - [anon_sym_download] = ACTIONS(1981), - [anon_sym_help] = ACTIONS(1981), - [anon_sym_length] = ACTIONS(1981), - [anon_sym_output] = ACTIONS(1981), - [anon_sym_output_error] = ACTIONS(1981), - [anon_sym_type] = ACTIONS(1981), - [anon_sym_append] = ACTIONS(1981), - [anon_sym_metadata] = ACTIONS(1981), - [anon_sym_move] = ACTIONS(1981), - [anon_sym_read] = ACTIONS(1981), - [anon_sym_workdir] = ACTIONS(1981), - [anon_sym_write] = ACTIONS(1981), - [anon_sym_from_json] = ACTIONS(1981), - [anon_sym_to_json] = ACTIONS(1981), - [anon_sym_to_string] = ACTIONS(1981), - [anon_sym_to_float] = ACTIONS(1981), - [anon_sym_bash] = ACTIONS(1981), - [anon_sym_fish] = ACTIONS(1981), - [anon_sym_raw] = ACTIONS(1981), - [anon_sym_sh] = ACTIONS(1981), - [anon_sym_zsh] = ACTIONS(1981), - [anon_sym_random] = ACTIONS(1981), - [anon_sym_random_boolean] = ACTIONS(1981), - [anon_sym_random_float] = ACTIONS(1981), - [anon_sym_random_integer] = ACTIONS(1981), - [anon_sym_columns] = ACTIONS(1981), - [anon_sym_rows] = ACTIONS(1981), - [anon_sym_reverse] = ACTIONS(1981), - }, - [372] = { - [sym_else_if] = STATE(374), - [sym_else] = STATE(495), - [aux_sym_if_else_repeat1] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [sym_integer] = ACTIONS(1901), - [sym_float] = ACTIONS(1899), - [sym_string] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_elseif] = ACTIONS(1984), - [anon_sym_else] = ACTIONS(1986), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_EQ_GT] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_transform] = ACTIONS(1901), - [anon_sym_filter] = ACTIONS(1901), - [anon_sym_find] = ACTIONS(1901), - [anon_sym_remove] = ACTIONS(1901), - [anon_sym_reduce] = ACTIONS(1901), - [anon_sym_select] = ACTIONS(1901), - [anon_sym_insert] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_table] = ACTIONS(1901), - [anon_sym_assert] = ACTIONS(1901), - [anon_sym_assert_equal] = ACTIONS(1901), - [anon_sym_download] = ACTIONS(1901), - [anon_sym_help] = ACTIONS(1901), - [anon_sym_length] = ACTIONS(1901), - [anon_sym_output] = ACTIONS(1901), - [anon_sym_output_error] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_append] = ACTIONS(1901), - [anon_sym_metadata] = ACTIONS(1901), - [anon_sym_move] = ACTIONS(1901), - [anon_sym_read] = ACTIONS(1901), - [anon_sym_workdir] = ACTIONS(1901), - [anon_sym_write] = ACTIONS(1901), - [anon_sym_from_json] = ACTIONS(1901), - [anon_sym_to_json] = ACTIONS(1901), - [anon_sym_to_string] = ACTIONS(1901), - [anon_sym_to_float] = ACTIONS(1901), - [anon_sym_bash] = ACTIONS(1901), - [anon_sym_fish] = ACTIONS(1901), - [anon_sym_raw] = ACTIONS(1901), - [anon_sym_sh] = ACTIONS(1901), - [anon_sym_zsh] = ACTIONS(1901), - [anon_sym_random] = ACTIONS(1901), - [anon_sym_random_boolean] = ACTIONS(1901), - [anon_sym_random_float] = ACTIONS(1901), - [anon_sym_random_integer] = ACTIONS(1901), - [anon_sym_columns] = ACTIONS(1901), - [anon_sym_rows] = ACTIONS(1901), - [anon_sym_reverse] = ACTIONS(1901), - }, - [373] = { - [sym_math_operator] = STATE(736), - [sym_logic_operator] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [anon_sym_COMMA] = ACTIONS(1930), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1930), - [sym_string] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_RBRACK] = ACTIONS(1930), - [anon_sym_COLON] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1930), - [anon_sym_PIPE_PIPE] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_elseif] = ACTIONS(1930), - [anon_sym_else] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_transform] = ACTIONS(1932), - [anon_sym_filter] = ACTIONS(1932), - [anon_sym_find] = ACTIONS(1932), - [anon_sym_remove] = ACTIONS(1932), - [anon_sym_reduce] = ACTIONS(1932), - [anon_sym_select] = ACTIONS(1932), - [anon_sym_insert] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_table] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_assert_equal] = ACTIONS(1932), - [anon_sym_download] = ACTIONS(1932), - [anon_sym_help] = ACTIONS(1932), - [anon_sym_length] = ACTIONS(1932), - [anon_sym_output] = ACTIONS(1932), - [anon_sym_output_error] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_append] = ACTIONS(1932), - [anon_sym_metadata] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_read] = ACTIONS(1932), - [anon_sym_workdir] = ACTIONS(1932), - [anon_sym_write] = ACTIONS(1932), - [anon_sym_from_json] = ACTIONS(1932), - [anon_sym_to_json] = ACTIONS(1932), - [anon_sym_to_string] = ACTIONS(1932), - [anon_sym_to_float] = ACTIONS(1932), - [anon_sym_bash] = ACTIONS(1932), - [anon_sym_fish] = ACTIONS(1932), - [anon_sym_raw] = ACTIONS(1932), - [anon_sym_sh] = ACTIONS(1932), - [anon_sym_zsh] = ACTIONS(1932), - [anon_sym_random] = ACTIONS(1932), - [anon_sym_random_boolean] = ACTIONS(1932), - [anon_sym_random_float] = ACTIONS(1932), - [anon_sym_random_integer] = ACTIONS(1932), - [anon_sym_columns] = ACTIONS(1932), - [anon_sym_rows] = ACTIONS(1932), - [anon_sym_reverse] = ACTIONS(1932), - }, - [374] = { - [sym_else_if] = STATE(391), - [sym_else] = STATE(469), - [aux_sym_if_else_repeat1] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [sym_string] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_elseif] = ACTIONS(1984), - [anon_sym_else] = ACTIONS(1986), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_transform] = ACTIONS(1887), - [anon_sym_filter] = ACTIONS(1887), - [anon_sym_find] = ACTIONS(1887), - [anon_sym_remove] = ACTIONS(1887), - [anon_sym_reduce] = ACTIONS(1887), - [anon_sym_select] = ACTIONS(1887), - [anon_sym_insert] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_table] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_assert_equal] = ACTIONS(1887), - [anon_sym_download] = ACTIONS(1887), - [anon_sym_help] = ACTIONS(1887), - [anon_sym_length] = ACTIONS(1887), - [anon_sym_output] = ACTIONS(1887), - [anon_sym_output_error] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_append] = ACTIONS(1887), - [anon_sym_metadata] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_read] = ACTIONS(1887), - [anon_sym_workdir] = ACTIONS(1887), - [anon_sym_write] = ACTIONS(1887), - [anon_sym_from_json] = ACTIONS(1887), - [anon_sym_to_json] = ACTIONS(1887), - [anon_sym_to_string] = ACTIONS(1887), - [anon_sym_to_float] = ACTIONS(1887), - [anon_sym_bash] = ACTIONS(1887), - [anon_sym_fish] = ACTIONS(1887), - [anon_sym_raw] = ACTIONS(1887), - [anon_sym_sh] = ACTIONS(1887), - [anon_sym_zsh] = ACTIONS(1887), - [anon_sym_random] = ACTIONS(1887), - [anon_sym_random_boolean] = ACTIONS(1887), - [anon_sym_random_float] = ACTIONS(1887), - [anon_sym_random_integer] = ACTIONS(1887), - [anon_sym_columns] = ACTIONS(1887), - [anon_sym_rows] = ACTIONS(1887), - [anon_sym_reverse] = ACTIONS(1887), - }, - [375] = { - [sym_else_if] = STATE(378), - [sym_else] = STATE(423), - [aux_sym_if_else_repeat1] = STATE(378), - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [sym_integer] = ACTIONS(1901), - [sym_float] = ACTIONS(1899), - [sym_string] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_elseif] = ACTIONS(1984), - [anon_sym_else] = ACTIONS(1988), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_EQ_GT] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_transform] = ACTIONS(1901), - [anon_sym_filter] = ACTIONS(1901), - [anon_sym_find] = ACTIONS(1901), - [anon_sym_remove] = ACTIONS(1901), - [anon_sym_reduce] = ACTIONS(1901), - [anon_sym_select] = ACTIONS(1901), - [anon_sym_insert] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_table] = ACTIONS(1901), - [anon_sym_assert] = ACTIONS(1901), - [anon_sym_assert_equal] = ACTIONS(1901), - [anon_sym_download] = ACTIONS(1901), - [anon_sym_help] = ACTIONS(1901), - [anon_sym_length] = ACTIONS(1901), - [anon_sym_output] = ACTIONS(1901), - [anon_sym_output_error] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_append] = ACTIONS(1901), - [anon_sym_metadata] = ACTIONS(1901), - [anon_sym_move] = ACTIONS(1901), - [anon_sym_read] = ACTIONS(1901), - [anon_sym_workdir] = ACTIONS(1901), - [anon_sym_write] = ACTIONS(1901), - [anon_sym_from_json] = ACTIONS(1901), - [anon_sym_to_json] = ACTIONS(1901), - [anon_sym_to_string] = ACTIONS(1901), - [anon_sym_to_float] = ACTIONS(1901), - [anon_sym_bash] = ACTIONS(1901), - [anon_sym_fish] = ACTIONS(1901), - [anon_sym_raw] = ACTIONS(1901), - [anon_sym_sh] = ACTIONS(1901), - [anon_sym_zsh] = ACTIONS(1901), - [anon_sym_random] = ACTIONS(1901), - [anon_sym_random_boolean] = ACTIONS(1901), - [anon_sym_random_float] = ACTIONS(1901), - [anon_sym_random_integer] = ACTIONS(1901), - [anon_sym_columns] = ACTIONS(1901), - [anon_sym_rows] = ACTIONS(1901), - [anon_sym_reverse] = ACTIONS(1901), - }, - [376] = { - [sym_expression] = STATE(559), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(371), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1245), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1245), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [377] = { - [sym_math_operator] = STATE(736), - [sym_logic_operator] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_RBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_elseif] = ACTIONS(1964), - [anon_sym_else] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), - }, - [378] = { - [sym_else_if] = STATE(391), - [sym_else] = STATE(404), - [aux_sym_if_else_repeat1] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [sym_string] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_elseif] = ACTIONS(1984), - [anon_sym_else] = ACTIONS(1988), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_transform] = ACTIONS(1887), - [anon_sym_filter] = ACTIONS(1887), - [anon_sym_find] = ACTIONS(1887), - [anon_sym_remove] = ACTIONS(1887), - [anon_sym_reduce] = ACTIONS(1887), - [anon_sym_select] = ACTIONS(1887), - [anon_sym_insert] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_table] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_assert_equal] = ACTIONS(1887), - [anon_sym_download] = ACTIONS(1887), - [anon_sym_help] = ACTIONS(1887), - [anon_sym_length] = ACTIONS(1887), - [anon_sym_output] = ACTIONS(1887), - [anon_sym_output_error] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_append] = ACTIONS(1887), - [anon_sym_metadata] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_read] = ACTIONS(1887), - [anon_sym_workdir] = ACTIONS(1887), - [anon_sym_write] = ACTIONS(1887), - [anon_sym_from_json] = ACTIONS(1887), - [anon_sym_to_json] = ACTIONS(1887), - [anon_sym_to_string] = ACTIONS(1887), - [anon_sym_to_float] = ACTIONS(1887), - [anon_sym_bash] = ACTIONS(1887), - [anon_sym_fish] = ACTIONS(1887), - [anon_sym_raw] = ACTIONS(1887), - [anon_sym_sh] = ACTIONS(1887), - [anon_sym_zsh] = ACTIONS(1887), - [anon_sym_random] = ACTIONS(1887), - [anon_sym_random_boolean] = ACTIONS(1887), - [anon_sym_random_float] = ACTIONS(1887), - [anon_sym_random_integer] = ACTIONS(1887), - [anon_sym_columns] = ACTIONS(1887), - [anon_sym_rows] = ACTIONS(1887), - [anon_sym_reverse] = ACTIONS(1887), - }, - [379] = { - [sym_else_if] = STATE(421), - [sym_else] = STATE(423), - [aux_sym_if_else_repeat1] = STATE(421), - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [sym_integer] = ACTIONS(1901), - [sym_float] = ACTIONS(1899), - [sym_string] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_elseif] = ACTIONS(1990), - [anon_sym_else] = ACTIONS(1992), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_EQ_GT] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_transform] = ACTIONS(1901), - [anon_sym_filter] = ACTIONS(1901), - [anon_sym_find] = ACTIONS(1901), - [anon_sym_remove] = ACTIONS(1901), - [anon_sym_reduce] = ACTIONS(1901), - [anon_sym_select] = ACTIONS(1901), - [anon_sym_insert] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_table] = ACTIONS(1901), - [anon_sym_assert] = ACTIONS(1901), - [anon_sym_assert_equal] = ACTIONS(1901), - [anon_sym_download] = ACTIONS(1901), - [anon_sym_help] = ACTIONS(1901), - [anon_sym_length] = ACTIONS(1901), - [anon_sym_output] = ACTIONS(1901), - [anon_sym_output_error] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_append] = ACTIONS(1901), - [anon_sym_metadata] = ACTIONS(1901), - [anon_sym_move] = ACTIONS(1901), - [anon_sym_read] = ACTIONS(1901), - [anon_sym_workdir] = ACTIONS(1901), - [anon_sym_write] = ACTIONS(1901), - [anon_sym_from_json] = ACTIONS(1901), - [anon_sym_to_json] = ACTIONS(1901), - [anon_sym_to_string] = ACTIONS(1901), - [anon_sym_to_float] = ACTIONS(1901), - [anon_sym_bash] = ACTIONS(1901), - [anon_sym_fish] = ACTIONS(1901), - [anon_sym_raw] = ACTIONS(1901), - [anon_sym_sh] = ACTIONS(1901), - [anon_sym_zsh] = ACTIONS(1901), - [anon_sym_random] = ACTIONS(1901), - [anon_sym_random_boolean] = ACTIONS(1901), - [anon_sym_random_float] = ACTIONS(1901), - [anon_sym_random_integer] = ACTIONS(1901), - [anon_sym_columns] = ACTIONS(1901), - [anon_sym_rows] = ACTIONS(1901), - [anon_sym_reverse] = ACTIONS(1901), - }, - [380] = { - [ts_builtin_sym_end] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1996), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_RBRACE] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_RPAREN] = ACTIONS(1994), - [anon_sym_COMMA] = ACTIONS(1994), - [sym_integer] = ACTIONS(1996), - [sym_float] = ACTIONS(1994), - [sym_string] = ACTIONS(1994), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_RBRACK] = ACTIONS(1994), - [anon_sym_COLON] = ACTIONS(1994), - [anon_sym_DOT_DOT] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1996), - [anon_sym_STAR] = ACTIONS(1994), - [anon_sym_SLASH] = ACTIONS(1994), - [anon_sym_PERCENT] = ACTIONS(1994), - [anon_sym_EQ_EQ] = ACTIONS(1994), - [anon_sym_BANG_EQ] = ACTIONS(1994), - [anon_sym_AMP_AMP] = ACTIONS(1994), - [anon_sym_PIPE_PIPE] = ACTIONS(1994), - [anon_sym_GT] = ACTIONS(1996), - [anon_sym_LT] = ACTIONS(1996), - [anon_sym_GT_EQ] = ACTIONS(1994), - [anon_sym_LT_EQ] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1996), - [anon_sym_elseif] = ACTIONS(1994), - [anon_sym_else] = ACTIONS(1996), - [anon_sym_match] = ACTIONS(1996), - [anon_sym_EQ_GT] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1996), - [anon_sym_for] = ACTIONS(1996), - [anon_sym_transform] = ACTIONS(1996), - [anon_sym_filter] = ACTIONS(1996), - [anon_sym_find] = ACTIONS(1996), - [anon_sym_remove] = ACTIONS(1996), - [anon_sym_reduce] = ACTIONS(1996), - [anon_sym_select] = ACTIONS(1996), - [anon_sym_insert] = ACTIONS(1996), - [anon_sym_async] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(1996), - [anon_sym_table] = ACTIONS(1996), - [anon_sym_assert] = ACTIONS(1996), - [anon_sym_assert_equal] = ACTIONS(1996), - [anon_sym_download] = ACTIONS(1996), - [anon_sym_help] = ACTIONS(1996), - [anon_sym_length] = ACTIONS(1996), - [anon_sym_output] = ACTIONS(1996), - [anon_sym_output_error] = ACTIONS(1996), - [anon_sym_type] = ACTIONS(1996), - [anon_sym_append] = ACTIONS(1996), - [anon_sym_metadata] = ACTIONS(1996), - [anon_sym_move] = ACTIONS(1996), - [anon_sym_read] = ACTIONS(1996), - [anon_sym_workdir] = ACTIONS(1996), - [anon_sym_write] = ACTIONS(1996), - [anon_sym_from_json] = ACTIONS(1996), - [anon_sym_to_json] = ACTIONS(1996), - [anon_sym_to_string] = ACTIONS(1996), - [anon_sym_to_float] = ACTIONS(1996), - [anon_sym_bash] = ACTIONS(1996), - [anon_sym_fish] = ACTIONS(1996), - [anon_sym_raw] = ACTIONS(1996), - [anon_sym_sh] = ACTIONS(1996), - [anon_sym_zsh] = ACTIONS(1996), - [anon_sym_random] = ACTIONS(1996), - [anon_sym_random_boolean] = ACTIONS(1996), - [anon_sym_random_float] = ACTIONS(1996), - [anon_sym_random_integer] = ACTIONS(1996), - [anon_sym_columns] = ACTIONS(1996), - [anon_sym_rows] = ACTIONS(1996), - [anon_sym_reverse] = ACTIONS(1996), - }, - [381] = { - [sym_math_operator] = STATE(660), - [sym_logic_operator] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [anon_sym_COMMA] = ACTIONS(1930), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1930), - [sym_string] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_RBRACK] = ACTIONS(1930), - [anon_sym_COLON] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1930), - [anon_sym_PIPE_PIPE] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_transform] = ACTIONS(1932), - [anon_sym_filter] = ACTIONS(1932), - [anon_sym_find] = ACTIONS(1932), - [anon_sym_remove] = ACTIONS(1932), - [anon_sym_reduce] = ACTIONS(1932), - [anon_sym_select] = ACTIONS(1932), - [anon_sym_insert] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_table] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_assert_equal] = ACTIONS(1932), - [anon_sym_download] = ACTIONS(1932), - [anon_sym_help] = ACTIONS(1932), - [anon_sym_length] = ACTIONS(1932), - [anon_sym_output] = ACTIONS(1932), - [anon_sym_output_error] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_append] = ACTIONS(1932), - [anon_sym_metadata] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_read] = ACTIONS(1932), - [anon_sym_workdir] = ACTIONS(1932), - [anon_sym_write] = ACTIONS(1932), - [anon_sym_from_json] = ACTIONS(1932), - [anon_sym_to_json] = ACTIONS(1932), - [anon_sym_to_string] = ACTIONS(1932), - [anon_sym_to_float] = ACTIONS(1932), - [anon_sym_bash] = ACTIONS(1932), - [anon_sym_fish] = ACTIONS(1932), - [anon_sym_raw] = ACTIONS(1932), - [anon_sym_sh] = ACTIONS(1932), - [anon_sym_zsh] = ACTIONS(1932), - [anon_sym_random] = ACTIONS(1932), - [anon_sym_random_boolean] = ACTIONS(1932), - [anon_sym_random_float] = ACTIONS(1932), - [anon_sym_random_integer] = ACTIONS(1932), - [anon_sym_columns] = ACTIONS(1932), - [anon_sym_rows] = ACTIONS(1932), - [anon_sym_reverse] = ACTIONS(1932), - }, - [382] = { - [sym_math_operator] = STATE(660), - [sym_logic_operator] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1934), - [anon_sym_COMMA] = ACTIONS(1934), - [sym_integer] = ACTIONS(1936), - [sym_float] = ACTIONS(1934), - [sym_string] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_RBRACK] = ACTIONS(1934), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_DOT_DOT] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_EQ_EQ] = ACTIONS(1934), - [anon_sym_BANG_EQ] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_PIPE_PIPE] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_transform] = ACTIONS(1936), - [anon_sym_filter] = ACTIONS(1936), - [anon_sym_find] = ACTIONS(1936), - [anon_sym_remove] = ACTIONS(1936), - [anon_sym_reduce] = ACTIONS(1936), - [anon_sym_select] = ACTIONS(1936), - [anon_sym_insert] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_table] = ACTIONS(1936), - [anon_sym_assert] = ACTIONS(1936), - [anon_sym_assert_equal] = ACTIONS(1936), - [anon_sym_download] = ACTIONS(1936), - [anon_sym_help] = ACTIONS(1936), - [anon_sym_length] = ACTIONS(1936), - [anon_sym_output] = ACTIONS(1936), - [anon_sym_output_error] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_append] = ACTIONS(1936), - [anon_sym_metadata] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_read] = ACTIONS(1936), - [anon_sym_workdir] = ACTIONS(1936), - [anon_sym_write] = ACTIONS(1936), - [anon_sym_from_json] = ACTIONS(1936), - [anon_sym_to_json] = ACTIONS(1936), - [anon_sym_to_string] = ACTIONS(1936), - [anon_sym_to_float] = ACTIONS(1936), - [anon_sym_bash] = ACTIONS(1936), - [anon_sym_fish] = ACTIONS(1936), - [anon_sym_raw] = ACTIONS(1936), - [anon_sym_sh] = ACTIONS(1936), - [anon_sym_zsh] = ACTIONS(1936), - [anon_sym_random] = ACTIONS(1936), - [anon_sym_random_boolean] = ACTIONS(1936), - [anon_sym_random_float] = ACTIONS(1936), - [anon_sym_random_integer] = ACTIONS(1936), - [anon_sym_columns] = ACTIONS(1936), - [anon_sym_rows] = ACTIONS(1936), - [anon_sym_reverse] = ACTIONS(1936), - }, - [383] = { - [sym_math_operator] = STATE(789), - [sym_logic_operator] = STATE(790), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1926), - [sym_integer] = ACTIONS(1928), - [sym_float] = ACTIONS(1926), - [sym_string] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(1926), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_elseif] = ACTIONS(1926), - [anon_sym_else] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_transform] = ACTIONS(1928), - [anon_sym_filter] = ACTIONS(1928), - [anon_sym_find] = ACTIONS(1928), - [anon_sym_remove] = ACTIONS(1928), - [anon_sym_reduce] = ACTIONS(1928), - [anon_sym_select] = ACTIONS(1928), - [anon_sym_insert] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_table] = ACTIONS(1928), - [anon_sym_assert] = ACTIONS(1928), - [anon_sym_assert_equal] = ACTIONS(1928), - [anon_sym_download] = ACTIONS(1928), - [anon_sym_help] = ACTIONS(1928), - [anon_sym_length] = ACTIONS(1928), - [anon_sym_output] = ACTIONS(1928), - [anon_sym_output_error] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_append] = ACTIONS(1928), - [anon_sym_metadata] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_read] = ACTIONS(1928), - [anon_sym_workdir] = ACTIONS(1928), - [anon_sym_write] = ACTIONS(1928), - [anon_sym_from_json] = ACTIONS(1928), - [anon_sym_to_json] = ACTIONS(1928), - [anon_sym_to_string] = ACTIONS(1928), - [anon_sym_to_float] = ACTIONS(1928), - [anon_sym_bash] = ACTIONS(1928), - [anon_sym_fish] = ACTIONS(1928), - [anon_sym_raw] = ACTIONS(1928), - [anon_sym_sh] = ACTIONS(1928), - [anon_sym_zsh] = ACTIONS(1928), - [anon_sym_random] = ACTIONS(1928), - [anon_sym_random_boolean] = ACTIONS(1928), - [anon_sym_random_float] = ACTIONS(1928), - [anon_sym_random_integer] = ACTIONS(1928), - [anon_sym_columns] = ACTIONS(1928), - [anon_sym_rows] = ACTIONS(1928), - [anon_sym_reverse] = ACTIONS(1928), - }, - [384] = { - [sym_expression] = STATE(553), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(359), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(1237), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_assert_equal] = ACTIONS(1907), - [anon_sym_download] = ACTIONS(1907), - [anon_sym_help] = ACTIONS(1907), - [anon_sym_length] = ACTIONS(1907), - [anon_sym_output] = ACTIONS(1907), - [anon_sym_output_error] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_append] = ACTIONS(1907), - [anon_sym_metadata] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_read] = ACTIONS(1907), - [anon_sym_workdir] = ACTIONS(1907), - [anon_sym_write] = ACTIONS(1907), - [anon_sym_from_json] = ACTIONS(1907), - [anon_sym_to_json] = ACTIONS(1907), - [anon_sym_to_string] = ACTIONS(1907), - [anon_sym_to_float] = ACTIONS(1907), - [anon_sym_bash] = ACTIONS(1907), - [anon_sym_fish] = ACTIONS(1907), - [anon_sym_raw] = ACTIONS(1907), - [anon_sym_sh] = ACTIONS(1907), - [anon_sym_zsh] = ACTIONS(1907), - [anon_sym_random] = ACTIONS(1907), - [anon_sym_random_boolean] = ACTIONS(1907), - [anon_sym_random_float] = ACTIONS(1907), - [anon_sym_random_integer] = ACTIONS(1907), - [anon_sym_columns] = ACTIONS(1907), - [anon_sym_rows] = ACTIONS(1907), - [anon_sym_reverse] = ACTIONS(1907), - }, - [385] = { - [sym_math_operator] = STATE(660), - [sym_logic_operator] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [sym_string] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1998), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_transform] = ACTIONS(1915), - [anon_sym_filter] = ACTIONS(1915), - [anon_sym_find] = ACTIONS(1915), - [anon_sym_remove] = ACTIONS(1915), - [anon_sym_reduce] = ACTIONS(1915), - [anon_sym_select] = ACTIONS(1915), - [anon_sym_insert] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_table] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_assert_equal] = ACTIONS(1915), - [anon_sym_download] = ACTIONS(1915), - [anon_sym_help] = ACTIONS(1915), - [anon_sym_length] = ACTIONS(1915), - [anon_sym_output] = ACTIONS(1915), - [anon_sym_output_error] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_append] = ACTIONS(1915), - [anon_sym_metadata] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_read] = ACTIONS(1915), - [anon_sym_workdir] = ACTIONS(1915), - [anon_sym_write] = ACTIONS(1915), - [anon_sym_from_json] = ACTIONS(1915), - [anon_sym_to_json] = ACTIONS(1915), - [anon_sym_to_string] = ACTIONS(1915), - [anon_sym_to_float] = ACTIONS(1915), - [anon_sym_bash] = ACTIONS(1915), - [anon_sym_fish] = ACTIONS(1915), - [anon_sym_raw] = ACTIONS(1915), - [anon_sym_sh] = ACTIONS(1915), - [anon_sym_zsh] = ACTIONS(1915), - [anon_sym_random] = ACTIONS(1915), - [anon_sym_random_boolean] = ACTIONS(1915), - [anon_sym_random_float] = ACTIONS(1915), - [anon_sym_random_integer] = ACTIONS(1915), - [anon_sym_columns] = ACTIONS(1915), - [anon_sym_rows] = ACTIONS(1915), - [anon_sym_reverse] = ACTIONS(1915), - }, - [386] = { - [ts_builtin_sym_end] = ACTIONS(2000), - [sym_identifier] = ACTIONS(2002), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2000), - [anon_sym_RBRACE] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2000), - [anon_sym_RPAREN] = ACTIONS(2000), - [anon_sym_COMMA] = ACTIONS(2000), - [sym_integer] = ACTIONS(2002), - [sym_float] = ACTIONS(2000), - [sym_string] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2002), - [anon_sym_false] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2000), - [anon_sym_RBRACK] = ACTIONS(2000), - [anon_sym_COLON] = ACTIONS(2000), - [anon_sym_DOT_DOT] = ACTIONS(2000), - [anon_sym_PLUS] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2000), - [anon_sym_SLASH] = ACTIONS(2000), - [anon_sym_PERCENT] = ACTIONS(2000), - [anon_sym_EQ_EQ] = ACTIONS(2000), - [anon_sym_BANG_EQ] = ACTIONS(2000), - [anon_sym_AMP_AMP] = ACTIONS(2000), - [anon_sym_PIPE_PIPE] = ACTIONS(2000), - [anon_sym_GT] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(2002), - [anon_sym_GT_EQ] = ACTIONS(2000), - [anon_sym_LT_EQ] = ACTIONS(2000), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_elseif] = ACTIONS(2000), - [anon_sym_else] = ACTIONS(2002), - [anon_sym_match] = ACTIONS(2002), - [anon_sym_EQ_GT] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_transform] = ACTIONS(2002), - [anon_sym_filter] = ACTIONS(2002), - [anon_sym_find] = ACTIONS(2002), - [anon_sym_remove] = ACTIONS(2002), - [anon_sym_reduce] = ACTIONS(2002), - [anon_sym_select] = ACTIONS(2002), - [anon_sym_insert] = ACTIONS(2002), - [anon_sym_async] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_table] = ACTIONS(2002), - [anon_sym_assert] = ACTIONS(2002), - [anon_sym_assert_equal] = ACTIONS(2002), - [anon_sym_download] = ACTIONS(2002), - [anon_sym_help] = ACTIONS(2002), - [anon_sym_length] = ACTIONS(2002), - [anon_sym_output] = ACTIONS(2002), - [anon_sym_output_error] = ACTIONS(2002), - [anon_sym_type] = ACTIONS(2002), - [anon_sym_append] = ACTIONS(2002), - [anon_sym_metadata] = ACTIONS(2002), - [anon_sym_move] = ACTIONS(2002), - [anon_sym_read] = ACTIONS(2002), - [anon_sym_workdir] = ACTIONS(2002), - [anon_sym_write] = ACTIONS(2002), - [anon_sym_from_json] = ACTIONS(2002), - [anon_sym_to_json] = ACTIONS(2002), - [anon_sym_to_string] = ACTIONS(2002), - [anon_sym_to_float] = ACTIONS(2002), - [anon_sym_bash] = ACTIONS(2002), - [anon_sym_fish] = ACTIONS(2002), - [anon_sym_raw] = ACTIONS(2002), - [anon_sym_sh] = ACTIONS(2002), - [anon_sym_zsh] = ACTIONS(2002), - [anon_sym_random] = ACTIONS(2002), - [anon_sym_random_boolean] = ACTIONS(2002), - [anon_sym_random_float] = ACTIONS(2002), - [anon_sym_random_integer] = ACTIONS(2002), - [anon_sym_columns] = ACTIONS(2002), - [anon_sym_rows] = ACTIONS(2002), - [anon_sym_reverse] = ACTIONS(2002), - }, - [387] = { - [ts_builtin_sym_end] = ACTIONS(2004), - [sym_identifier] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2004), - [anon_sym_RBRACE] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2004), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_RPAREN] = ACTIONS(2004), - [anon_sym_COMMA] = ACTIONS(2004), - [sym_integer] = ACTIONS(2006), - [sym_float] = ACTIONS(2004), - [sym_string] = ACTIONS(2004), - [anon_sym_true] = ACTIONS(2006), - [anon_sym_false] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2004), - [anon_sym_RBRACK] = ACTIONS(2004), - [anon_sym_COLON] = ACTIONS(2004), - [anon_sym_DOT_DOT] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2004), - [anon_sym_SLASH] = ACTIONS(2004), - [anon_sym_PERCENT] = ACTIONS(2004), - [anon_sym_EQ_EQ] = ACTIONS(2004), - [anon_sym_BANG_EQ] = ACTIONS(2004), - [anon_sym_AMP_AMP] = ACTIONS(2004), - [anon_sym_PIPE_PIPE] = ACTIONS(2004), - [anon_sym_GT] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(2006), - [anon_sym_GT_EQ] = ACTIONS(2004), - [anon_sym_LT_EQ] = ACTIONS(2004), - [anon_sym_if] = ACTIONS(2006), - [anon_sym_elseif] = ACTIONS(2004), - [anon_sym_else] = ACTIONS(2006), - [anon_sym_match] = ACTIONS(2006), - [anon_sym_EQ_GT] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2006), - [anon_sym_for] = ACTIONS(2006), - [anon_sym_transform] = ACTIONS(2006), - [anon_sym_filter] = ACTIONS(2006), - [anon_sym_find] = ACTIONS(2006), - [anon_sym_remove] = ACTIONS(2006), - [anon_sym_reduce] = ACTIONS(2006), - [anon_sym_select] = ACTIONS(2006), - [anon_sym_insert] = ACTIONS(2006), - [anon_sym_async] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_table] = ACTIONS(2006), - [anon_sym_assert] = ACTIONS(2006), - [anon_sym_assert_equal] = ACTIONS(2006), - [anon_sym_download] = ACTIONS(2006), - [anon_sym_help] = ACTIONS(2006), - [anon_sym_length] = ACTIONS(2006), - [anon_sym_output] = ACTIONS(2006), - [anon_sym_output_error] = ACTIONS(2006), - [anon_sym_type] = ACTIONS(2006), - [anon_sym_append] = ACTIONS(2006), - [anon_sym_metadata] = ACTIONS(2006), - [anon_sym_move] = ACTIONS(2006), - [anon_sym_read] = ACTIONS(2006), - [anon_sym_workdir] = ACTIONS(2006), - [anon_sym_write] = ACTIONS(2006), - [anon_sym_from_json] = ACTIONS(2006), - [anon_sym_to_json] = ACTIONS(2006), - [anon_sym_to_string] = ACTIONS(2006), - [anon_sym_to_float] = ACTIONS(2006), - [anon_sym_bash] = ACTIONS(2006), - [anon_sym_fish] = ACTIONS(2006), - [anon_sym_raw] = ACTIONS(2006), - [anon_sym_sh] = ACTIONS(2006), - [anon_sym_zsh] = ACTIONS(2006), - [anon_sym_random] = ACTIONS(2006), - [anon_sym_random_boolean] = ACTIONS(2006), - [anon_sym_random_float] = ACTIONS(2006), - [anon_sym_random_integer] = ACTIONS(2006), - [anon_sym_columns] = ACTIONS(2006), - [anon_sym_rows] = ACTIONS(2006), - [anon_sym_reverse] = ACTIONS(2006), - }, - [388] = { - [ts_builtin_sym_end] = ACTIONS(2008), - [sym_identifier] = ACTIONS(2010), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_RBRACE] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_LPAREN] = ACTIONS(2008), - [anon_sym_RPAREN] = ACTIONS(2008), - [anon_sym_COMMA] = ACTIONS(2008), - [sym_integer] = ACTIONS(2010), - [sym_float] = ACTIONS(2008), - [sym_string] = ACTIONS(2008), - [anon_sym_true] = ACTIONS(2010), - [anon_sym_false] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2008), - [anon_sym_RBRACK] = ACTIONS(2008), - [anon_sym_COLON] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2008), - [anon_sym_PLUS] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2008), - [anon_sym_SLASH] = ACTIONS(2008), - [anon_sym_PERCENT] = ACTIONS(2008), - [anon_sym_EQ_EQ] = ACTIONS(2008), - [anon_sym_BANG_EQ] = ACTIONS(2008), - [anon_sym_AMP_AMP] = ACTIONS(2008), - [anon_sym_PIPE_PIPE] = ACTIONS(2008), - [anon_sym_GT] = ACTIONS(2010), - [anon_sym_LT] = ACTIONS(2010), - [anon_sym_GT_EQ] = ACTIONS(2008), - [anon_sym_LT_EQ] = ACTIONS(2008), - [anon_sym_if] = ACTIONS(2010), - [anon_sym_elseif] = ACTIONS(2008), - [anon_sym_else] = ACTIONS(2010), - [anon_sym_match] = ACTIONS(2010), - [anon_sym_EQ_GT] = ACTIONS(2008), - [anon_sym_while] = ACTIONS(2010), - [anon_sym_for] = ACTIONS(2010), - [anon_sym_transform] = ACTIONS(2010), - [anon_sym_filter] = ACTIONS(2010), - [anon_sym_find] = ACTIONS(2010), - [anon_sym_remove] = ACTIONS(2010), - [anon_sym_reduce] = ACTIONS(2010), - [anon_sym_select] = ACTIONS(2010), - [anon_sym_insert] = ACTIONS(2010), - [anon_sym_async] = ACTIONS(2010), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_table] = ACTIONS(2010), - [anon_sym_assert] = ACTIONS(2010), - [anon_sym_assert_equal] = ACTIONS(2010), - [anon_sym_download] = ACTIONS(2010), - [anon_sym_help] = ACTIONS(2010), - [anon_sym_length] = ACTIONS(2010), - [anon_sym_output] = ACTIONS(2010), - [anon_sym_output_error] = ACTIONS(2010), - [anon_sym_type] = ACTIONS(2010), - [anon_sym_append] = ACTIONS(2010), - [anon_sym_metadata] = ACTIONS(2010), - [anon_sym_move] = ACTIONS(2010), - [anon_sym_read] = ACTIONS(2010), - [anon_sym_workdir] = ACTIONS(2010), - [anon_sym_write] = ACTIONS(2010), - [anon_sym_from_json] = ACTIONS(2010), - [anon_sym_to_json] = ACTIONS(2010), - [anon_sym_to_string] = ACTIONS(2010), - [anon_sym_to_float] = ACTIONS(2010), - [anon_sym_bash] = ACTIONS(2010), - [anon_sym_fish] = ACTIONS(2010), - [anon_sym_raw] = ACTIONS(2010), - [anon_sym_sh] = ACTIONS(2010), - [anon_sym_zsh] = ACTIONS(2010), - [anon_sym_random] = ACTIONS(2010), - [anon_sym_random_boolean] = ACTIONS(2010), - [anon_sym_random_float] = ACTIONS(2010), - [anon_sym_random_integer] = ACTIONS(2010), - [anon_sym_columns] = ACTIONS(2010), - [anon_sym_rows] = ACTIONS(2010), - [anon_sym_reverse] = ACTIONS(2010), - }, - [389] = { - [ts_builtin_sym_end] = ACTIONS(2012), - [sym_identifier] = ACTIONS(2014), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2012), - [anon_sym_RBRACE] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2012), - [anon_sym_LPAREN] = ACTIONS(2012), - [anon_sym_RPAREN] = ACTIONS(2012), - [anon_sym_COMMA] = ACTIONS(2012), - [sym_integer] = ACTIONS(2014), - [sym_float] = ACTIONS(2012), - [sym_string] = ACTIONS(2012), - [anon_sym_true] = ACTIONS(2014), - [anon_sym_false] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2012), - [anon_sym_RBRACK] = ACTIONS(2012), - [anon_sym_COLON] = ACTIONS(2012), - [anon_sym_DOT_DOT] = ACTIONS(2012), - [anon_sym_PLUS] = ACTIONS(2012), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2012), - [anon_sym_SLASH] = ACTIONS(2012), - [anon_sym_PERCENT] = ACTIONS(2012), - [anon_sym_EQ_EQ] = ACTIONS(2012), - [anon_sym_BANG_EQ] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2012), - [anon_sym_PIPE_PIPE] = ACTIONS(2012), - [anon_sym_GT] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(2014), - [anon_sym_GT_EQ] = ACTIONS(2012), - [anon_sym_LT_EQ] = ACTIONS(2012), - [anon_sym_if] = ACTIONS(2014), - [anon_sym_elseif] = ACTIONS(2012), - [anon_sym_else] = ACTIONS(2014), - [anon_sym_match] = ACTIONS(2014), - [anon_sym_EQ_GT] = ACTIONS(2012), - [anon_sym_while] = ACTIONS(2014), - [anon_sym_for] = ACTIONS(2014), - [anon_sym_transform] = ACTIONS(2014), - [anon_sym_filter] = ACTIONS(2014), - [anon_sym_find] = ACTIONS(2014), - [anon_sym_remove] = ACTIONS(2014), - [anon_sym_reduce] = ACTIONS(2014), - [anon_sym_select] = ACTIONS(2014), - [anon_sym_insert] = ACTIONS(2014), - [anon_sym_async] = ACTIONS(2014), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_table] = ACTIONS(2014), - [anon_sym_assert] = ACTIONS(2014), - [anon_sym_assert_equal] = ACTIONS(2014), - [anon_sym_download] = ACTIONS(2014), - [anon_sym_help] = ACTIONS(2014), - [anon_sym_length] = ACTIONS(2014), - [anon_sym_output] = ACTIONS(2014), - [anon_sym_output_error] = ACTIONS(2014), - [anon_sym_type] = ACTIONS(2014), - [anon_sym_append] = ACTIONS(2014), - [anon_sym_metadata] = ACTIONS(2014), - [anon_sym_move] = ACTIONS(2014), - [anon_sym_read] = ACTIONS(2014), - [anon_sym_workdir] = ACTIONS(2014), - [anon_sym_write] = ACTIONS(2014), - [anon_sym_from_json] = ACTIONS(2014), - [anon_sym_to_json] = ACTIONS(2014), - [anon_sym_to_string] = ACTIONS(2014), - [anon_sym_to_float] = ACTIONS(2014), - [anon_sym_bash] = ACTIONS(2014), - [anon_sym_fish] = ACTIONS(2014), - [anon_sym_raw] = ACTIONS(2014), - [anon_sym_sh] = ACTIONS(2014), - [anon_sym_zsh] = ACTIONS(2014), - [anon_sym_random] = ACTIONS(2014), - [anon_sym_random_boolean] = ACTIONS(2014), - [anon_sym_random_float] = ACTIONS(2014), - [anon_sym_random_integer] = ACTIONS(2014), - [anon_sym_columns] = ACTIONS(2014), - [anon_sym_rows] = ACTIONS(2014), - [anon_sym_reverse] = ACTIONS(2014), - }, - [390] = { - [ts_builtin_sym_end] = ACTIONS(2016), - [sym_identifier] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2016), - [anon_sym_RBRACE] = ACTIONS(2016), - [anon_sym_SEMI] = ACTIONS(2016), - [anon_sym_LPAREN] = ACTIONS(2016), - [anon_sym_RPAREN] = ACTIONS(2016), - [anon_sym_COMMA] = ACTIONS(2016), - [sym_integer] = ACTIONS(2018), - [sym_float] = ACTIONS(2016), - [sym_string] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_RBRACK] = ACTIONS(2016), - [anon_sym_COLON] = ACTIONS(2016), - [anon_sym_DOT_DOT] = ACTIONS(2016), - [anon_sym_PLUS] = ACTIONS(2016), - [anon_sym_DASH] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2016), - [anon_sym_SLASH] = ACTIONS(2016), - [anon_sym_PERCENT] = ACTIONS(2016), - [anon_sym_EQ_EQ] = ACTIONS(2016), - [anon_sym_BANG_EQ] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_GT] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(2018), - [anon_sym_GT_EQ] = ACTIONS(2016), - [anon_sym_LT_EQ] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2018), - [anon_sym_elseif] = ACTIONS(2016), - [anon_sym_else] = ACTIONS(2018), - [anon_sym_match] = ACTIONS(2018), - [anon_sym_EQ_GT] = ACTIONS(2016), - [anon_sym_while] = ACTIONS(2018), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_transform] = ACTIONS(2018), - [anon_sym_filter] = ACTIONS(2018), - [anon_sym_find] = ACTIONS(2018), - [anon_sym_remove] = ACTIONS(2018), - [anon_sym_reduce] = ACTIONS(2018), - [anon_sym_select] = ACTIONS(2018), - [anon_sym_insert] = ACTIONS(2018), - [anon_sym_async] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2018), - [anon_sym_table] = ACTIONS(2018), - [anon_sym_assert] = ACTIONS(2018), - [anon_sym_assert_equal] = ACTIONS(2018), - [anon_sym_download] = ACTIONS(2018), - [anon_sym_help] = ACTIONS(2018), - [anon_sym_length] = ACTIONS(2018), - [anon_sym_output] = ACTIONS(2018), - [anon_sym_output_error] = ACTIONS(2018), - [anon_sym_type] = ACTIONS(2018), - [anon_sym_append] = ACTIONS(2018), - [anon_sym_metadata] = ACTIONS(2018), - [anon_sym_move] = ACTIONS(2018), - [anon_sym_read] = ACTIONS(2018), - [anon_sym_workdir] = ACTIONS(2018), - [anon_sym_write] = ACTIONS(2018), - [anon_sym_from_json] = ACTIONS(2018), - [anon_sym_to_json] = ACTIONS(2018), - [anon_sym_to_string] = ACTIONS(2018), - [anon_sym_to_float] = ACTIONS(2018), - [anon_sym_bash] = ACTIONS(2018), - [anon_sym_fish] = ACTIONS(2018), - [anon_sym_raw] = ACTIONS(2018), - [anon_sym_sh] = ACTIONS(2018), - [anon_sym_zsh] = ACTIONS(2018), - [anon_sym_random] = ACTIONS(2018), - [anon_sym_random_boolean] = ACTIONS(2018), - [anon_sym_random_float] = ACTIONS(2018), - [anon_sym_random_integer] = ACTIONS(2018), - [anon_sym_columns] = ACTIONS(2018), - [anon_sym_rows] = ACTIONS(2018), - [anon_sym_reverse] = ACTIONS(2018), - }, - [391] = { - [sym_else_if] = STATE(391), - [aux_sym_if_else_repeat1] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1955), - [sym_identifier] = ACTIONS(1957), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [sym_integer] = ACTIONS(1957), - [sym_float] = ACTIONS(1955), - [sym_string] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1957), - [anon_sym_false] = ACTIONS(1957), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(1955), - [anon_sym_SLASH] = ACTIONS(1955), - [anon_sym_PERCENT] = ACTIONS(1955), - [anon_sym_EQ_EQ] = ACTIONS(1955), - [anon_sym_BANG_EQ] = ACTIONS(1955), - [anon_sym_AMP_AMP] = ACTIONS(1955), - [anon_sym_PIPE_PIPE] = ACTIONS(1955), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_GT_EQ] = ACTIONS(1955), - [anon_sym_LT_EQ] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_elseif] = ACTIONS(2020), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_EQ_GT] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_transform] = ACTIONS(1957), - [anon_sym_filter] = ACTIONS(1957), - [anon_sym_find] = ACTIONS(1957), - [anon_sym_remove] = ACTIONS(1957), - [anon_sym_reduce] = ACTIONS(1957), - [anon_sym_select] = ACTIONS(1957), - [anon_sym_insert] = ACTIONS(1957), - [anon_sym_async] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_table] = ACTIONS(1957), - [anon_sym_assert] = ACTIONS(1957), - [anon_sym_assert_equal] = ACTIONS(1957), - [anon_sym_download] = ACTIONS(1957), - [anon_sym_help] = ACTIONS(1957), - [anon_sym_length] = ACTIONS(1957), - [anon_sym_output] = ACTIONS(1957), - [anon_sym_output_error] = ACTIONS(1957), - [anon_sym_type] = ACTIONS(1957), - [anon_sym_append] = ACTIONS(1957), - [anon_sym_metadata] = ACTIONS(1957), - [anon_sym_move] = ACTIONS(1957), - [anon_sym_read] = ACTIONS(1957), - [anon_sym_workdir] = ACTIONS(1957), - [anon_sym_write] = ACTIONS(1957), - [anon_sym_from_json] = ACTIONS(1957), - [anon_sym_to_json] = ACTIONS(1957), - [anon_sym_to_string] = ACTIONS(1957), - [anon_sym_to_float] = ACTIONS(1957), - [anon_sym_bash] = ACTIONS(1957), - [anon_sym_fish] = ACTIONS(1957), - [anon_sym_raw] = ACTIONS(1957), - [anon_sym_sh] = ACTIONS(1957), - [anon_sym_zsh] = ACTIONS(1957), - [anon_sym_random] = ACTIONS(1957), - [anon_sym_random_boolean] = ACTIONS(1957), - [anon_sym_random_float] = ACTIONS(1957), - [anon_sym_random_integer] = ACTIONS(1957), - [anon_sym_columns] = ACTIONS(1957), - [anon_sym_rows] = ACTIONS(1957), - [anon_sym_reverse] = ACTIONS(1957), - }, - [392] = { - [ts_builtin_sym_end] = ACTIONS(2023), - [sym_identifier] = ACTIONS(2025), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_COMMA] = ACTIONS(2023), - [sym_integer] = ACTIONS(2025), - [sym_float] = ACTIONS(2023), - [sym_string] = ACTIONS(2023), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = ACTIONS(2025), - [anon_sym_LBRACK] = ACTIONS(2023), - [anon_sym_RBRACK] = ACTIONS(2023), - [anon_sym_COLON] = ACTIONS(2023), - [anon_sym_DOT_DOT] = ACTIONS(2023), - [anon_sym_PLUS] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2025), - [anon_sym_STAR] = ACTIONS(2023), - [anon_sym_SLASH] = ACTIONS(2023), - [anon_sym_PERCENT] = ACTIONS(2023), - [anon_sym_EQ_EQ] = ACTIONS(2023), - [anon_sym_BANG_EQ] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_GT] = ACTIONS(2025), - [anon_sym_LT] = ACTIONS(2025), - [anon_sym_GT_EQ] = ACTIONS(2023), - [anon_sym_LT_EQ] = ACTIONS(2023), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_elseif] = ACTIONS(2023), - [anon_sym_else] = ACTIONS(2025), - [anon_sym_match] = ACTIONS(2025), - [anon_sym_EQ_GT] = ACTIONS(2023), - [anon_sym_while] = ACTIONS(2025), - [anon_sym_for] = ACTIONS(2025), - [anon_sym_transform] = ACTIONS(2025), - [anon_sym_filter] = ACTIONS(2025), - [anon_sym_find] = ACTIONS(2025), - [anon_sym_remove] = ACTIONS(2025), - [anon_sym_reduce] = ACTIONS(2025), - [anon_sym_select] = ACTIONS(2025), - [anon_sym_insert] = ACTIONS(2025), - [anon_sym_async] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_table] = ACTIONS(2025), - [anon_sym_assert] = ACTIONS(2025), - [anon_sym_assert_equal] = ACTIONS(2025), - [anon_sym_download] = ACTIONS(2025), - [anon_sym_help] = ACTIONS(2025), - [anon_sym_length] = ACTIONS(2025), - [anon_sym_output] = ACTIONS(2025), - [anon_sym_output_error] = ACTIONS(2025), - [anon_sym_type] = ACTIONS(2025), - [anon_sym_append] = ACTIONS(2025), - [anon_sym_metadata] = ACTIONS(2025), - [anon_sym_move] = ACTIONS(2025), - [anon_sym_read] = ACTIONS(2025), - [anon_sym_workdir] = ACTIONS(2025), - [anon_sym_write] = ACTIONS(2025), - [anon_sym_from_json] = ACTIONS(2025), - [anon_sym_to_json] = ACTIONS(2025), - [anon_sym_to_string] = ACTIONS(2025), - [anon_sym_to_float] = ACTIONS(2025), - [anon_sym_bash] = ACTIONS(2025), - [anon_sym_fish] = ACTIONS(2025), - [anon_sym_raw] = ACTIONS(2025), - [anon_sym_sh] = ACTIONS(2025), - [anon_sym_zsh] = ACTIONS(2025), - [anon_sym_random] = ACTIONS(2025), - [anon_sym_random_boolean] = ACTIONS(2025), - [anon_sym_random_float] = ACTIONS(2025), - [anon_sym_random_integer] = ACTIONS(2025), - [anon_sym_columns] = ACTIONS(2025), - [anon_sym_rows] = ACTIONS(2025), - [anon_sym_reverse] = ACTIONS(2025), - }, - [393] = { - [ts_builtin_sym_end] = ACTIONS(2027), - [sym_identifier] = ACTIONS(2029), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2027), - [anon_sym_RBRACE] = ACTIONS(2027), - [anon_sym_SEMI] = ACTIONS(2027), - [anon_sym_LPAREN] = ACTIONS(2027), - [anon_sym_RPAREN] = ACTIONS(2027), - [anon_sym_COMMA] = ACTIONS(2027), - [sym_integer] = ACTIONS(2029), - [sym_float] = ACTIONS(2027), - [sym_string] = ACTIONS(2027), - [anon_sym_true] = ACTIONS(2029), - [anon_sym_false] = ACTIONS(2029), - [anon_sym_LBRACK] = ACTIONS(2027), - [anon_sym_RBRACK] = ACTIONS(2027), - [anon_sym_COLON] = ACTIONS(2027), - [anon_sym_DOT_DOT] = ACTIONS(2027), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_STAR] = ACTIONS(2027), - [anon_sym_SLASH] = ACTIONS(2027), - [anon_sym_PERCENT] = ACTIONS(2027), - [anon_sym_EQ_EQ] = ACTIONS(2027), - [anon_sym_BANG_EQ] = ACTIONS(2027), - [anon_sym_AMP_AMP] = ACTIONS(2027), - [anon_sym_PIPE_PIPE] = ACTIONS(2027), - [anon_sym_GT] = ACTIONS(2029), - [anon_sym_LT] = ACTIONS(2029), - [anon_sym_GT_EQ] = ACTIONS(2027), - [anon_sym_LT_EQ] = ACTIONS(2027), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_elseif] = ACTIONS(2027), - [anon_sym_else] = ACTIONS(2029), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_EQ_GT] = ACTIONS(2027), - [anon_sym_while] = ACTIONS(2029), - [anon_sym_for] = ACTIONS(2029), - [anon_sym_transform] = ACTIONS(2029), - [anon_sym_filter] = ACTIONS(2029), - [anon_sym_find] = ACTIONS(2029), - [anon_sym_remove] = ACTIONS(2029), - [anon_sym_reduce] = ACTIONS(2029), - [anon_sym_select] = ACTIONS(2029), - [anon_sym_insert] = ACTIONS(2029), - [anon_sym_async] = ACTIONS(2029), - [anon_sym_PIPE] = ACTIONS(2029), - [anon_sym_table] = ACTIONS(2029), - [anon_sym_assert] = ACTIONS(2029), - [anon_sym_assert_equal] = ACTIONS(2029), - [anon_sym_download] = ACTIONS(2029), - [anon_sym_help] = ACTIONS(2029), - [anon_sym_length] = ACTIONS(2029), - [anon_sym_output] = ACTIONS(2029), - [anon_sym_output_error] = ACTIONS(2029), - [anon_sym_type] = ACTIONS(2029), - [anon_sym_append] = ACTIONS(2029), - [anon_sym_metadata] = ACTIONS(2029), - [anon_sym_move] = ACTIONS(2029), - [anon_sym_read] = ACTIONS(2029), - [anon_sym_workdir] = ACTIONS(2029), - [anon_sym_write] = ACTIONS(2029), - [anon_sym_from_json] = ACTIONS(2029), - [anon_sym_to_json] = ACTIONS(2029), - [anon_sym_to_string] = ACTIONS(2029), - [anon_sym_to_float] = ACTIONS(2029), - [anon_sym_bash] = ACTIONS(2029), - [anon_sym_fish] = ACTIONS(2029), - [anon_sym_raw] = ACTIONS(2029), - [anon_sym_sh] = ACTIONS(2029), - [anon_sym_zsh] = ACTIONS(2029), - [anon_sym_random] = ACTIONS(2029), - [anon_sym_random_boolean] = ACTIONS(2029), - [anon_sym_random_float] = ACTIONS(2029), - [anon_sym_random_integer] = ACTIONS(2029), - [anon_sym_columns] = ACTIONS(2029), - [anon_sym_rows] = ACTIONS(2029), - [anon_sym_reverse] = ACTIONS(2029), - }, - [394] = { - [sym_math_operator] = STATE(789), - [sym_logic_operator] = STATE(790), - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [sym_string] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_elseif] = ACTIONS(1913), - [anon_sym_else] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_transform] = ACTIONS(1915), - [anon_sym_filter] = ACTIONS(1915), - [anon_sym_find] = ACTIONS(1915), - [anon_sym_remove] = ACTIONS(1915), - [anon_sym_reduce] = ACTIONS(1915), - [anon_sym_select] = ACTIONS(1915), - [anon_sym_insert] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_table] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_assert_equal] = ACTIONS(1915), - [anon_sym_download] = ACTIONS(1915), - [anon_sym_help] = ACTIONS(1915), - [anon_sym_length] = ACTIONS(1915), - [anon_sym_output] = ACTIONS(1915), - [anon_sym_output_error] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_append] = ACTIONS(1915), - [anon_sym_metadata] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_read] = ACTIONS(1915), - [anon_sym_workdir] = ACTIONS(1915), - [anon_sym_write] = ACTIONS(1915), - [anon_sym_from_json] = ACTIONS(1915), - [anon_sym_to_json] = ACTIONS(1915), - [anon_sym_to_string] = ACTIONS(1915), - [anon_sym_to_float] = ACTIONS(1915), - [anon_sym_bash] = ACTIONS(1915), - [anon_sym_fish] = ACTIONS(1915), - [anon_sym_raw] = ACTIONS(1915), - [anon_sym_sh] = ACTIONS(1915), - [anon_sym_zsh] = ACTIONS(1915), - [anon_sym_random] = ACTIONS(1915), - [anon_sym_random_boolean] = ACTIONS(1915), - [anon_sym_random_float] = ACTIONS(1915), - [anon_sym_random_integer] = ACTIONS(1915), - [anon_sym_columns] = ACTIONS(1915), - [anon_sym_rows] = ACTIONS(1915), - [anon_sym_reverse] = ACTIONS(1915), - }, - [395] = { - [sym_math_operator] = STATE(660), - [sym_logic_operator] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(2031), - [sym_integer] = ACTIONS(1940), - [sym_float] = ACTIONS(1938), - [sym_string] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_RBRACK] = ACTIONS(1938), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_transform] = ACTIONS(1940), - [anon_sym_filter] = ACTIONS(1940), - [anon_sym_find] = ACTIONS(1940), - [anon_sym_remove] = ACTIONS(1940), - [anon_sym_reduce] = ACTIONS(1940), - [anon_sym_select] = ACTIONS(1940), - [anon_sym_insert] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_table] = ACTIONS(1940), - [anon_sym_assert] = ACTIONS(1940), - [anon_sym_assert_equal] = ACTIONS(1940), - [anon_sym_download] = ACTIONS(1940), - [anon_sym_help] = ACTIONS(1940), - [anon_sym_length] = ACTIONS(1940), - [anon_sym_output] = ACTIONS(1940), - [anon_sym_output_error] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_append] = ACTIONS(1940), - [anon_sym_metadata] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_read] = ACTIONS(1940), - [anon_sym_workdir] = ACTIONS(1940), - [anon_sym_write] = ACTIONS(1940), - [anon_sym_from_json] = ACTIONS(1940), - [anon_sym_to_json] = ACTIONS(1940), - [anon_sym_to_string] = ACTIONS(1940), - [anon_sym_to_float] = ACTIONS(1940), - [anon_sym_bash] = ACTIONS(1940), - [anon_sym_fish] = ACTIONS(1940), - [anon_sym_raw] = ACTIONS(1940), - [anon_sym_sh] = ACTIONS(1940), - [anon_sym_zsh] = ACTIONS(1940), - [anon_sym_random] = ACTIONS(1940), - [anon_sym_random_boolean] = ACTIONS(1940), - [anon_sym_random_float] = ACTIONS(1940), - [anon_sym_random_integer] = ACTIONS(1940), - [anon_sym_columns] = ACTIONS(1940), - [anon_sym_rows] = ACTIONS(1940), - [anon_sym_reverse] = ACTIONS(1940), - }, - [396] = { - [ts_builtin_sym_end] = ACTIONS(2034), - [sym_identifier] = ACTIONS(2036), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2034), - [anon_sym_RBRACE] = ACTIONS(2034), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2034), - [anon_sym_RPAREN] = ACTIONS(2034), - [anon_sym_COMMA] = ACTIONS(2034), - [sym_integer] = ACTIONS(2036), - [sym_float] = ACTIONS(2034), - [sym_string] = ACTIONS(2034), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2034), - [anon_sym_RBRACK] = ACTIONS(2034), - [anon_sym_COLON] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2034), - [anon_sym_PLUS] = ACTIONS(2034), - [anon_sym_DASH] = ACTIONS(2036), - [anon_sym_STAR] = ACTIONS(2034), - [anon_sym_SLASH] = ACTIONS(2034), - [anon_sym_PERCENT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_GT] = ACTIONS(2036), - [anon_sym_LT] = ACTIONS(2036), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_elseif] = ACTIONS(2034), - [anon_sym_else] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_EQ_GT] = ACTIONS(2034), - [anon_sym_while] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_transform] = ACTIONS(2036), - [anon_sym_filter] = ACTIONS(2036), - [anon_sym_find] = ACTIONS(2036), - [anon_sym_remove] = ACTIONS(2036), - [anon_sym_reduce] = ACTIONS(2036), - [anon_sym_select] = ACTIONS(2036), - [anon_sym_insert] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_table] = ACTIONS(2036), - [anon_sym_assert] = ACTIONS(2036), - [anon_sym_assert_equal] = ACTIONS(2036), - [anon_sym_download] = ACTIONS(2036), - [anon_sym_help] = ACTIONS(2036), - [anon_sym_length] = ACTIONS(2036), - [anon_sym_output] = ACTIONS(2036), - [anon_sym_output_error] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_append] = ACTIONS(2036), - [anon_sym_metadata] = ACTIONS(2036), - [anon_sym_move] = ACTIONS(2036), - [anon_sym_read] = ACTIONS(2036), - [anon_sym_workdir] = ACTIONS(2036), - [anon_sym_write] = ACTIONS(2036), - [anon_sym_from_json] = ACTIONS(2036), - [anon_sym_to_json] = ACTIONS(2036), - [anon_sym_to_string] = ACTIONS(2036), - [anon_sym_to_float] = ACTIONS(2036), - [anon_sym_bash] = ACTIONS(2036), - [anon_sym_fish] = ACTIONS(2036), - [anon_sym_raw] = ACTIONS(2036), - [anon_sym_sh] = ACTIONS(2036), - [anon_sym_zsh] = ACTIONS(2036), - [anon_sym_random] = ACTIONS(2036), - [anon_sym_random_boolean] = ACTIONS(2036), - [anon_sym_random_float] = ACTIONS(2036), - [anon_sym_random_integer] = ACTIONS(2036), - [anon_sym_columns] = ACTIONS(2036), - [anon_sym_rows] = ACTIONS(2036), - [anon_sym_reverse] = ACTIONS(2036), - }, - [397] = { - [sym_math_operator] = STATE(789), - [sym_logic_operator] = STATE(790), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1930), - [sym_string] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_COLON] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1930), - [anon_sym_PIPE_PIPE] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_elseif] = ACTIONS(1930), - [anon_sym_else] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_transform] = ACTIONS(1932), - [anon_sym_filter] = ACTIONS(1932), - [anon_sym_find] = ACTIONS(1932), - [anon_sym_remove] = ACTIONS(1932), - [anon_sym_reduce] = ACTIONS(1932), - [anon_sym_select] = ACTIONS(1932), - [anon_sym_insert] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_table] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_assert_equal] = ACTIONS(1932), - [anon_sym_download] = ACTIONS(1932), - [anon_sym_help] = ACTIONS(1932), - [anon_sym_length] = ACTIONS(1932), - [anon_sym_output] = ACTIONS(1932), - [anon_sym_output_error] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_append] = ACTIONS(1932), - [anon_sym_metadata] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_read] = ACTIONS(1932), - [anon_sym_workdir] = ACTIONS(1932), - [anon_sym_write] = ACTIONS(1932), - [anon_sym_from_json] = ACTIONS(1932), - [anon_sym_to_json] = ACTIONS(1932), - [anon_sym_to_string] = ACTIONS(1932), - [anon_sym_to_float] = ACTIONS(1932), - [anon_sym_bash] = ACTIONS(1932), - [anon_sym_fish] = ACTIONS(1932), - [anon_sym_raw] = ACTIONS(1932), - [anon_sym_sh] = ACTIONS(1932), - [anon_sym_zsh] = ACTIONS(1932), - [anon_sym_random] = ACTIONS(1932), - [anon_sym_random_boolean] = ACTIONS(1932), - [anon_sym_random_float] = ACTIONS(1932), - [anon_sym_random_integer] = ACTIONS(1932), - [anon_sym_columns] = ACTIONS(1932), - [anon_sym_rows] = ACTIONS(1932), - [anon_sym_reverse] = ACTIONS(1932), - }, - [398] = { - [sym_math_operator] = STATE(789), - [sym_logic_operator] = STATE(790), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1934), - [sym_integer] = ACTIONS(1936), - [sym_float] = ACTIONS(1934), - [sym_string] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_DOT_DOT] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_EQ_EQ] = ACTIONS(1934), - [anon_sym_BANG_EQ] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_PIPE_PIPE] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_elseif] = ACTIONS(1934), - [anon_sym_else] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_transform] = ACTIONS(1936), - [anon_sym_filter] = ACTIONS(1936), - [anon_sym_find] = ACTIONS(1936), - [anon_sym_remove] = ACTIONS(1936), - [anon_sym_reduce] = ACTIONS(1936), - [anon_sym_select] = ACTIONS(1936), - [anon_sym_insert] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_table] = ACTIONS(1936), - [anon_sym_assert] = ACTIONS(1936), - [anon_sym_assert_equal] = ACTIONS(1936), - [anon_sym_download] = ACTIONS(1936), - [anon_sym_help] = ACTIONS(1936), - [anon_sym_length] = ACTIONS(1936), - [anon_sym_output] = ACTIONS(1936), - [anon_sym_output_error] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_append] = ACTIONS(1936), - [anon_sym_metadata] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_read] = ACTIONS(1936), - [anon_sym_workdir] = ACTIONS(1936), - [anon_sym_write] = ACTIONS(1936), - [anon_sym_from_json] = ACTIONS(1936), - [anon_sym_to_json] = ACTIONS(1936), - [anon_sym_to_string] = ACTIONS(1936), - [anon_sym_to_float] = ACTIONS(1936), - [anon_sym_bash] = ACTIONS(1936), - [anon_sym_fish] = ACTIONS(1936), - [anon_sym_raw] = ACTIONS(1936), - [anon_sym_sh] = ACTIONS(1936), - [anon_sym_zsh] = ACTIONS(1936), - [anon_sym_random] = ACTIONS(1936), - [anon_sym_random_boolean] = ACTIONS(1936), - [anon_sym_random_float] = ACTIONS(1936), - [anon_sym_random_integer] = ACTIONS(1936), - [anon_sym_columns] = ACTIONS(1936), - [anon_sym_rows] = ACTIONS(1936), - [anon_sym_reverse] = ACTIONS(1936), - }, - [399] = { - [sym_else_if] = STATE(401), - [sym_else] = STATE(495), - [aux_sym_if_else_repeat1] = STATE(401), - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [sym_integer] = ACTIONS(1901), - [sym_float] = ACTIONS(1899), - [sym_string] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_elseif] = ACTIONS(1990), - [anon_sym_else] = ACTIONS(2038), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_EQ_GT] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_transform] = ACTIONS(1901), - [anon_sym_filter] = ACTIONS(1901), - [anon_sym_find] = ACTIONS(1901), - [anon_sym_remove] = ACTIONS(1901), - [anon_sym_reduce] = ACTIONS(1901), - [anon_sym_select] = ACTIONS(1901), - [anon_sym_insert] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_table] = ACTIONS(1901), - [anon_sym_assert] = ACTIONS(1901), - [anon_sym_assert_equal] = ACTIONS(1901), - [anon_sym_download] = ACTIONS(1901), - [anon_sym_help] = ACTIONS(1901), - [anon_sym_length] = ACTIONS(1901), - [anon_sym_output] = ACTIONS(1901), - [anon_sym_output_error] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_append] = ACTIONS(1901), - [anon_sym_metadata] = ACTIONS(1901), - [anon_sym_move] = ACTIONS(1901), - [anon_sym_read] = ACTIONS(1901), - [anon_sym_workdir] = ACTIONS(1901), - [anon_sym_write] = ACTIONS(1901), - [anon_sym_from_json] = ACTIONS(1901), - [anon_sym_to_json] = ACTIONS(1901), - [anon_sym_to_string] = ACTIONS(1901), - [anon_sym_to_float] = ACTIONS(1901), - [anon_sym_bash] = ACTIONS(1901), - [anon_sym_fish] = ACTIONS(1901), - [anon_sym_raw] = ACTIONS(1901), - [anon_sym_sh] = ACTIONS(1901), - [anon_sym_zsh] = ACTIONS(1901), - [anon_sym_random] = ACTIONS(1901), - [anon_sym_random_boolean] = ACTIONS(1901), - [anon_sym_random_float] = ACTIONS(1901), - [anon_sym_random_integer] = ACTIONS(1901), - [anon_sym_columns] = ACTIONS(1901), - [anon_sym_rows] = ACTIONS(1901), - [anon_sym_reverse] = ACTIONS(1901), - }, - [400] = { - [ts_builtin_sym_end] = ACTIONS(2040), - [sym_identifier] = ACTIONS(2042), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_RBRACE] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2040), - [anon_sym_RPAREN] = ACTIONS(2040), - [anon_sym_COMMA] = ACTIONS(2040), - [sym_integer] = ACTIONS(2042), - [sym_float] = ACTIONS(2040), - [sym_string] = ACTIONS(2040), - [anon_sym_true] = ACTIONS(2042), - [anon_sym_false] = ACTIONS(2042), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_RBRACK] = ACTIONS(2040), - [anon_sym_COLON] = ACTIONS(2040), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_PLUS] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2042), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_SLASH] = ACTIONS(2040), - [anon_sym_PERCENT] = ACTIONS(2040), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2040), - [anon_sym_AMP_AMP] = ACTIONS(2040), - [anon_sym_PIPE_PIPE] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2042), - [anon_sym_LT] = ACTIONS(2042), - [anon_sym_GT_EQ] = ACTIONS(2040), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(2042), - [anon_sym_elseif] = ACTIONS(2040), - [anon_sym_else] = ACTIONS(2042), - [anon_sym_match] = ACTIONS(2042), - [anon_sym_EQ_GT] = ACTIONS(2040), - [anon_sym_while] = ACTIONS(2042), - [anon_sym_for] = ACTIONS(2042), - [anon_sym_transform] = ACTIONS(2042), - [anon_sym_filter] = ACTIONS(2042), - [anon_sym_find] = ACTIONS(2042), - [anon_sym_remove] = ACTIONS(2042), - [anon_sym_reduce] = ACTIONS(2042), - [anon_sym_select] = ACTIONS(2042), - [anon_sym_insert] = ACTIONS(2042), - [anon_sym_async] = ACTIONS(2042), - [anon_sym_PIPE] = ACTIONS(2042), - [anon_sym_table] = ACTIONS(2042), - [anon_sym_assert] = ACTIONS(2042), - [anon_sym_assert_equal] = ACTIONS(2042), - [anon_sym_download] = ACTIONS(2042), - [anon_sym_help] = ACTIONS(2042), - [anon_sym_length] = ACTIONS(2042), - [anon_sym_output] = ACTIONS(2042), - [anon_sym_output_error] = ACTIONS(2042), - [anon_sym_type] = ACTIONS(2042), - [anon_sym_append] = ACTIONS(2042), - [anon_sym_metadata] = ACTIONS(2042), - [anon_sym_move] = ACTIONS(2042), - [anon_sym_read] = ACTIONS(2042), - [anon_sym_workdir] = ACTIONS(2042), - [anon_sym_write] = ACTIONS(2042), - [anon_sym_from_json] = ACTIONS(2042), - [anon_sym_to_json] = ACTIONS(2042), - [anon_sym_to_string] = ACTIONS(2042), - [anon_sym_to_float] = ACTIONS(2042), - [anon_sym_bash] = ACTIONS(2042), - [anon_sym_fish] = ACTIONS(2042), - [anon_sym_raw] = ACTIONS(2042), - [anon_sym_sh] = ACTIONS(2042), - [anon_sym_zsh] = ACTIONS(2042), - [anon_sym_random] = ACTIONS(2042), - [anon_sym_random_boolean] = ACTIONS(2042), - [anon_sym_random_float] = ACTIONS(2042), - [anon_sym_random_integer] = ACTIONS(2042), - [anon_sym_columns] = ACTIONS(2042), - [anon_sym_rows] = ACTIONS(2042), - [anon_sym_reverse] = ACTIONS(2042), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [401] = { - [sym_else_if] = STATE(442), - [sym_else] = STATE(469), - [aux_sym_if_else_repeat1] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [sym_string] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_elseif] = ACTIONS(1990), - [anon_sym_else] = ACTIONS(2038), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_transform] = ACTIONS(1887), - [anon_sym_filter] = ACTIONS(1887), - [anon_sym_find] = ACTIONS(1887), - [anon_sym_remove] = ACTIONS(1887), - [anon_sym_reduce] = ACTIONS(1887), - [anon_sym_select] = ACTIONS(1887), - [anon_sym_insert] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_table] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_assert_equal] = ACTIONS(1887), - [anon_sym_download] = ACTIONS(1887), - [anon_sym_help] = ACTIONS(1887), - [anon_sym_length] = ACTIONS(1887), - [anon_sym_output] = ACTIONS(1887), - [anon_sym_output_error] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_append] = ACTIONS(1887), - [anon_sym_metadata] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_read] = ACTIONS(1887), - [anon_sym_workdir] = ACTIONS(1887), - [anon_sym_write] = ACTIONS(1887), - [anon_sym_from_json] = ACTIONS(1887), - [anon_sym_to_json] = ACTIONS(1887), - [anon_sym_to_string] = ACTIONS(1887), - [anon_sym_to_float] = ACTIONS(1887), - [anon_sym_bash] = ACTIONS(1887), - [anon_sym_fish] = ACTIONS(1887), - [anon_sym_raw] = ACTIONS(1887), - [anon_sym_sh] = ACTIONS(1887), - [anon_sym_zsh] = ACTIONS(1887), - [anon_sym_random] = ACTIONS(1887), - [anon_sym_random_boolean] = ACTIONS(1887), - [anon_sym_random_float] = ACTIONS(1887), - [anon_sym_random_integer] = ACTIONS(1887), - [anon_sym_columns] = ACTIONS(1887), - [anon_sym_rows] = ACTIONS(1887), - [anon_sym_reverse] = ACTIONS(1887), + [sym_block] = STATE(704), + [sym_statement] = STATE(45), + [sym_expression] = STATE(795), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(611), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(2015), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(325), + [aux_sym_block_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(913), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_while] = ACTIONS(917), + [anon_sym_for] = ACTIONS(919), + [anon_sym_asyncfor] = ACTIONS(921), + [anon_sym_transform] = ACTIONS(923), + [anon_sym_filter] = ACTIONS(925), + [anon_sym_find] = ACTIONS(927), + [anon_sym_remove] = ACTIONS(929), + [anon_sym_reduce] = ACTIONS(931), + [anon_sym_select] = ACTIONS(933), + [anon_sym_insert] = ACTIONS(935), + [anon_sym_async] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(939), + [anon_sym_assert] = ACTIONS(941), + [anon_sym_assert_equal] = ACTIONS(941), + [anon_sym_download] = ACTIONS(941), + [anon_sym_help] = ACTIONS(941), + [anon_sym_length] = ACTIONS(941), + [anon_sym_output] = ACTIONS(941), + [anon_sym_output_error] = ACTIONS(941), + [anon_sym_type] = ACTIONS(941), + [anon_sym_append] = ACTIONS(941), + [anon_sym_metadata] = ACTIONS(941), + [anon_sym_move] = ACTIONS(941), + [anon_sym_read] = ACTIONS(941), + [anon_sym_workdir] = ACTIONS(941), + [anon_sym_write] = ACTIONS(941), + [anon_sym_from_json] = ACTIONS(941), + [anon_sym_to_json] = ACTIONS(941), + [anon_sym_to_string] = ACTIONS(941), + [anon_sym_to_float] = ACTIONS(941), + [anon_sym_bash] = ACTIONS(941), + [anon_sym_fish] = ACTIONS(941), + [anon_sym_raw] = ACTIONS(941), + [anon_sym_sh] = ACTIONS(941), + [anon_sym_zsh] = ACTIONS(941), + [anon_sym_random] = ACTIONS(941), + [anon_sym_random_boolean] = ACTIONS(941), + [anon_sym_random_float] = ACTIONS(941), + [anon_sym_random_integer] = ACTIONS(941), + [anon_sym_columns] = ACTIONS(941), + [anon_sym_rows] = ACTIONS(941), + [anon_sym_reverse] = ACTIONS(941), }, [402] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1345), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_COMMA] = ACTIONS(1322), - [sym_integer] = ACTIONS(1345), - [sym_float] = ACTIONS(1322), - [sym_string] = ACTIONS(1322), - [anon_sym_true] = ACTIONS(1345), - [anon_sym_false] = ACTIONS(1345), - [anon_sym_LBRACK] = ACTIONS(1322), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_elseif] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_EQ_GT] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_transform] = ACTIONS(1345), - [anon_sym_filter] = ACTIONS(1345), - [anon_sym_find] = ACTIONS(1345), - [anon_sym_remove] = ACTIONS(1345), - [anon_sym_reduce] = ACTIONS(1345), - [anon_sym_select] = ACTIONS(1345), - [anon_sym_insert] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1345), - [anon_sym_table] = ACTIONS(1345), - [anon_sym_assert] = ACTIONS(1345), - [anon_sym_assert_equal] = ACTIONS(1345), - [anon_sym_download] = ACTIONS(1345), - [anon_sym_help] = ACTIONS(1345), - [anon_sym_length] = ACTIONS(1345), - [anon_sym_output] = ACTIONS(1345), - [anon_sym_output_error] = ACTIONS(1345), - [anon_sym_type] = ACTIONS(1345), - [anon_sym_append] = ACTIONS(1345), - [anon_sym_metadata] = ACTIONS(1345), - [anon_sym_move] = ACTIONS(1345), - [anon_sym_read] = ACTIONS(1345), - [anon_sym_workdir] = ACTIONS(1345), - [anon_sym_write] = ACTIONS(1345), - [anon_sym_from_json] = ACTIONS(1345), - [anon_sym_to_json] = ACTIONS(1345), - [anon_sym_to_string] = ACTIONS(1345), - [anon_sym_to_float] = ACTIONS(1345), - [anon_sym_bash] = ACTIONS(1345), - [anon_sym_fish] = ACTIONS(1345), - [anon_sym_raw] = ACTIONS(1345), - [anon_sym_sh] = ACTIONS(1345), - [anon_sym_zsh] = ACTIONS(1345), - [anon_sym_random] = ACTIONS(1345), - [anon_sym_random_boolean] = ACTIONS(1345), - [anon_sym_random_float] = ACTIONS(1345), - [anon_sym_random_integer] = ACTIONS(1345), - [anon_sym_columns] = ACTIONS(1345), - [anon_sym_rows] = ACTIONS(1345), - [anon_sym_reverse] = ACTIONS(1345), + [sym_block] = STATE(622), + [sym_statement] = STATE(21), + [sym_expression] = STATE(593), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(584), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1776), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(286), + [aux_sym_block_repeat1] = STATE(21), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(201), + [anon_sym_while] = ACTIONS(203), + [anon_sym_for] = ACTIONS(205), + [anon_sym_asyncfor] = ACTIONS(207), + [anon_sym_transform] = ACTIONS(209), + [anon_sym_filter] = ACTIONS(211), + [anon_sym_find] = ACTIONS(213), + [anon_sym_remove] = ACTIONS(215), + [anon_sym_reduce] = ACTIONS(217), + [anon_sym_select] = ACTIONS(219), + [anon_sym_insert] = ACTIONS(221), + [anon_sym_async] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_assert_equal] = ACTIONS(227), + [anon_sym_download] = ACTIONS(227), + [anon_sym_help] = ACTIONS(227), + [anon_sym_length] = ACTIONS(227), + [anon_sym_output] = ACTIONS(227), + [anon_sym_output_error] = ACTIONS(227), + [anon_sym_type] = ACTIONS(227), + [anon_sym_append] = ACTIONS(227), + [anon_sym_metadata] = ACTIONS(227), + [anon_sym_move] = ACTIONS(227), + [anon_sym_read] = ACTIONS(227), + [anon_sym_workdir] = ACTIONS(227), + [anon_sym_write] = ACTIONS(227), + [anon_sym_from_json] = ACTIONS(227), + [anon_sym_to_json] = ACTIONS(227), + [anon_sym_to_string] = ACTIONS(227), + [anon_sym_to_float] = ACTIONS(227), + [anon_sym_bash] = ACTIONS(227), + [anon_sym_fish] = ACTIONS(227), + [anon_sym_raw] = ACTIONS(227), + [anon_sym_sh] = ACTIONS(227), + [anon_sym_zsh] = ACTIONS(227), + [anon_sym_random] = ACTIONS(227), + [anon_sym_random_boolean] = ACTIONS(227), + [anon_sym_random_float] = ACTIONS(227), + [anon_sym_random_integer] = ACTIONS(227), + [anon_sym_columns] = ACTIONS(227), + [anon_sym_rows] = ACTIONS(227), + [anon_sym_reverse] = ACTIONS(227), }, [403] = { - [ts_builtin_sym_end] = ACTIONS(2044), - [sym_identifier] = ACTIONS(2046), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2044), - [anon_sym_RBRACE] = ACTIONS(2044), - [anon_sym_SEMI] = ACTIONS(2044), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_RPAREN] = ACTIONS(2044), - [anon_sym_COMMA] = ACTIONS(2044), - [sym_integer] = ACTIONS(2046), - [sym_float] = ACTIONS(2044), - [sym_string] = ACTIONS(2044), - [anon_sym_true] = ACTIONS(2046), - [anon_sym_false] = ACTIONS(2046), - [anon_sym_LBRACK] = ACTIONS(2044), - [anon_sym_RBRACK] = ACTIONS(2044), - [anon_sym_COLON] = ACTIONS(2044), - [anon_sym_DOT_DOT] = ACTIONS(2044), - [anon_sym_PLUS] = ACTIONS(2044), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2044), - [anon_sym_SLASH] = ACTIONS(2044), - [anon_sym_PERCENT] = ACTIONS(2044), - [anon_sym_EQ_EQ] = ACTIONS(2044), - [anon_sym_BANG_EQ] = ACTIONS(2044), - [anon_sym_AMP_AMP] = ACTIONS(2044), - [anon_sym_PIPE_PIPE] = ACTIONS(2044), - [anon_sym_GT] = ACTIONS(2046), - [anon_sym_LT] = ACTIONS(2046), - [anon_sym_GT_EQ] = ACTIONS(2044), - [anon_sym_LT_EQ] = ACTIONS(2044), - [anon_sym_if] = ACTIONS(2046), - [anon_sym_elseif] = ACTIONS(2044), - [anon_sym_else] = ACTIONS(2046), - [anon_sym_match] = ACTIONS(2046), - [anon_sym_EQ_GT] = ACTIONS(2044), - [anon_sym_while] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(2046), - [anon_sym_transform] = ACTIONS(2046), - [anon_sym_filter] = ACTIONS(2046), - [anon_sym_find] = ACTIONS(2046), - [anon_sym_remove] = ACTIONS(2046), - [anon_sym_reduce] = ACTIONS(2046), - [anon_sym_select] = ACTIONS(2046), - [anon_sym_insert] = ACTIONS(2046), - [anon_sym_async] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2046), - [anon_sym_table] = ACTIONS(2046), - [anon_sym_assert] = ACTIONS(2046), - [anon_sym_assert_equal] = ACTIONS(2046), - [anon_sym_download] = ACTIONS(2046), - [anon_sym_help] = ACTIONS(2046), - [anon_sym_length] = ACTIONS(2046), - [anon_sym_output] = ACTIONS(2046), - [anon_sym_output_error] = ACTIONS(2046), - [anon_sym_type] = ACTIONS(2046), - [anon_sym_append] = ACTIONS(2046), - [anon_sym_metadata] = ACTIONS(2046), - [anon_sym_move] = ACTIONS(2046), - [anon_sym_read] = ACTIONS(2046), - [anon_sym_workdir] = ACTIONS(2046), - [anon_sym_write] = ACTIONS(2046), - [anon_sym_from_json] = ACTIONS(2046), - [anon_sym_to_json] = ACTIONS(2046), - [anon_sym_to_string] = ACTIONS(2046), - [anon_sym_to_float] = ACTIONS(2046), - [anon_sym_bash] = ACTIONS(2046), - [anon_sym_fish] = ACTIONS(2046), - [anon_sym_raw] = ACTIONS(2046), - [anon_sym_sh] = ACTIONS(2046), - [anon_sym_zsh] = ACTIONS(2046), - [anon_sym_random] = ACTIONS(2046), - [anon_sym_random_boolean] = ACTIONS(2046), - [anon_sym_random_float] = ACTIONS(2046), - [anon_sym_random_integer] = ACTIONS(2046), - [anon_sym_columns] = ACTIONS(2046), - [anon_sym_rows] = ACTIONS(2046), - [anon_sym_reverse] = ACTIONS(2046), + [sym_block] = STATE(688), + [sym_statement] = STATE(45), + [sym_expression] = STATE(795), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(611), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(2015), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(325), + [aux_sym_block_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(913), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_while] = ACTIONS(917), + [anon_sym_for] = ACTIONS(919), + [anon_sym_asyncfor] = ACTIONS(921), + [anon_sym_transform] = ACTIONS(923), + [anon_sym_filter] = ACTIONS(925), + [anon_sym_find] = ACTIONS(927), + [anon_sym_remove] = ACTIONS(929), + [anon_sym_reduce] = ACTIONS(931), + [anon_sym_select] = ACTIONS(933), + [anon_sym_insert] = ACTIONS(935), + [anon_sym_async] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(939), + [anon_sym_assert] = ACTIONS(941), + [anon_sym_assert_equal] = ACTIONS(941), + [anon_sym_download] = ACTIONS(941), + [anon_sym_help] = ACTIONS(941), + [anon_sym_length] = ACTIONS(941), + [anon_sym_output] = ACTIONS(941), + [anon_sym_output_error] = ACTIONS(941), + [anon_sym_type] = ACTIONS(941), + [anon_sym_append] = ACTIONS(941), + [anon_sym_metadata] = ACTIONS(941), + [anon_sym_move] = ACTIONS(941), + [anon_sym_read] = ACTIONS(941), + [anon_sym_workdir] = ACTIONS(941), + [anon_sym_write] = ACTIONS(941), + [anon_sym_from_json] = ACTIONS(941), + [anon_sym_to_json] = ACTIONS(941), + [anon_sym_to_string] = ACTIONS(941), + [anon_sym_to_float] = ACTIONS(941), + [anon_sym_bash] = ACTIONS(941), + [anon_sym_fish] = ACTIONS(941), + [anon_sym_raw] = ACTIONS(941), + [anon_sym_sh] = ACTIONS(941), + [anon_sym_zsh] = ACTIONS(941), + [anon_sym_random] = ACTIONS(941), + [anon_sym_random_boolean] = ACTIONS(941), + [anon_sym_random_float] = ACTIONS(941), + [anon_sym_random_integer] = ACTIONS(941), + [anon_sym_columns] = ACTIONS(941), + [anon_sym_rows] = ACTIONS(941), + [anon_sym_reverse] = ACTIONS(941), }, [404] = { - [ts_builtin_sym_end] = ACTIONS(2048), - [sym_identifier] = ACTIONS(2050), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_RBRACE] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(2048), - [anon_sym_RPAREN] = ACTIONS(2048), - [anon_sym_COMMA] = ACTIONS(2048), - [sym_integer] = ACTIONS(2050), - [sym_float] = ACTIONS(2048), - [sym_string] = ACTIONS(2048), - [anon_sym_true] = ACTIONS(2050), - [anon_sym_false] = ACTIONS(2050), - [anon_sym_LBRACK] = ACTIONS(2048), - [anon_sym_RBRACK] = ACTIONS(2048), - [anon_sym_COLON] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2048), - [anon_sym_PLUS] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_SLASH] = ACTIONS(2048), - [anon_sym_PERCENT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2048), - [anon_sym_if] = ACTIONS(2050), - [anon_sym_elseif] = ACTIONS(2048), - [anon_sym_else] = ACTIONS(2050), - [anon_sym_match] = ACTIONS(2050), - [anon_sym_EQ_GT] = ACTIONS(2048), - [anon_sym_while] = ACTIONS(2050), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_transform] = ACTIONS(2050), - [anon_sym_filter] = ACTIONS(2050), - [anon_sym_find] = ACTIONS(2050), - [anon_sym_remove] = ACTIONS(2050), - [anon_sym_reduce] = ACTIONS(2050), - [anon_sym_select] = ACTIONS(2050), - [anon_sym_insert] = ACTIONS(2050), - [anon_sym_async] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_table] = ACTIONS(2050), - [anon_sym_assert] = ACTIONS(2050), - [anon_sym_assert_equal] = ACTIONS(2050), - [anon_sym_download] = ACTIONS(2050), - [anon_sym_help] = ACTIONS(2050), - [anon_sym_length] = ACTIONS(2050), - [anon_sym_output] = ACTIONS(2050), - [anon_sym_output_error] = ACTIONS(2050), - [anon_sym_type] = ACTIONS(2050), - [anon_sym_append] = ACTIONS(2050), - [anon_sym_metadata] = ACTIONS(2050), - [anon_sym_move] = ACTIONS(2050), - [anon_sym_read] = ACTIONS(2050), - [anon_sym_workdir] = ACTIONS(2050), - [anon_sym_write] = ACTIONS(2050), - [anon_sym_from_json] = ACTIONS(2050), - [anon_sym_to_json] = ACTIONS(2050), - [anon_sym_to_string] = ACTIONS(2050), - [anon_sym_to_float] = ACTIONS(2050), - [anon_sym_bash] = ACTIONS(2050), - [anon_sym_fish] = ACTIONS(2050), - [anon_sym_raw] = ACTIONS(2050), - [anon_sym_sh] = ACTIONS(2050), - [anon_sym_zsh] = ACTIONS(2050), - [anon_sym_random] = ACTIONS(2050), - [anon_sym_random_boolean] = ACTIONS(2050), - [anon_sym_random_float] = ACTIONS(2050), - [anon_sym_random_integer] = ACTIONS(2050), - [anon_sym_columns] = ACTIONS(2050), - [anon_sym_rows] = ACTIONS(2050), - [anon_sym_reverse] = ACTIONS(2050), + [sym_block] = STATE(604), + [sym_statement] = STATE(21), + [sym_expression] = STATE(593), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(584), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1776), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(286), + [aux_sym_block_repeat1] = STATE(21), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(201), + [anon_sym_while] = ACTIONS(203), + [anon_sym_for] = ACTIONS(205), + [anon_sym_asyncfor] = ACTIONS(207), + [anon_sym_transform] = ACTIONS(209), + [anon_sym_filter] = ACTIONS(211), + [anon_sym_find] = ACTIONS(213), + [anon_sym_remove] = ACTIONS(215), + [anon_sym_reduce] = ACTIONS(217), + [anon_sym_select] = ACTIONS(219), + [anon_sym_insert] = ACTIONS(221), + [anon_sym_async] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_assert_equal] = ACTIONS(227), + [anon_sym_download] = ACTIONS(227), + [anon_sym_help] = ACTIONS(227), + [anon_sym_length] = ACTIONS(227), + [anon_sym_output] = ACTIONS(227), + [anon_sym_output_error] = ACTIONS(227), + [anon_sym_type] = ACTIONS(227), + [anon_sym_append] = ACTIONS(227), + [anon_sym_metadata] = ACTIONS(227), + [anon_sym_move] = ACTIONS(227), + [anon_sym_read] = ACTIONS(227), + [anon_sym_workdir] = ACTIONS(227), + [anon_sym_write] = ACTIONS(227), + [anon_sym_from_json] = ACTIONS(227), + [anon_sym_to_json] = ACTIONS(227), + [anon_sym_to_string] = ACTIONS(227), + [anon_sym_to_float] = ACTIONS(227), + [anon_sym_bash] = ACTIONS(227), + [anon_sym_fish] = ACTIONS(227), + [anon_sym_raw] = ACTIONS(227), + [anon_sym_sh] = ACTIONS(227), + [anon_sym_zsh] = ACTIONS(227), + [anon_sym_random] = ACTIONS(227), + [anon_sym_random_boolean] = ACTIONS(227), + [anon_sym_random_float] = ACTIONS(227), + [anon_sym_random_integer] = ACTIONS(227), + [anon_sym_columns] = ACTIONS(227), + [anon_sym_rows] = ACTIONS(227), + [anon_sym_reverse] = ACTIONS(227), }, [405] = { - [ts_builtin_sym_end] = ACTIONS(2052), - [sym_identifier] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_RBRACE] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_LPAREN] = ACTIONS(2052), - [anon_sym_RPAREN] = ACTIONS(2052), - [anon_sym_COMMA] = ACTIONS(2052), - [sym_integer] = ACTIONS(2054), - [sym_float] = ACTIONS(2052), - [sym_string] = ACTIONS(2052), - [anon_sym_true] = ACTIONS(2054), - [anon_sym_false] = ACTIONS(2054), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_RBRACK] = ACTIONS(2052), - [anon_sym_COLON] = ACTIONS(2052), - [anon_sym_DOT_DOT] = ACTIONS(2052), - [anon_sym_PLUS] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_SLASH] = ACTIONS(2052), - [anon_sym_PERCENT] = ACTIONS(2052), - [anon_sym_EQ_EQ] = ACTIONS(2052), - [anon_sym_BANG_EQ] = ACTIONS(2052), - [anon_sym_AMP_AMP] = ACTIONS(2052), - [anon_sym_PIPE_PIPE] = ACTIONS(2052), - [anon_sym_GT] = ACTIONS(2054), - [anon_sym_LT] = ACTIONS(2054), - [anon_sym_GT_EQ] = ACTIONS(2052), - [anon_sym_LT_EQ] = ACTIONS(2052), - [anon_sym_if] = ACTIONS(2054), - [anon_sym_elseif] = ACTIONS(2052), - [anon_sym_else] = ACTIONS(2054), - [anon_sym_match] = ACTIONS(2054), - [anon_sym_EQ_GT] = ACTIONS(2052), - [anon_sym_while] = ACTIONS(2054), - [anon_sym_for] = ACTIONS(2054), - [anon_sym_transform] = ACTIONS(2054), - [anon_sym_filter] = ACTIONS(2054), - [anon_sym_find] = ACTIONS(2054), - [anon_sym_remove] = ACTIONS(2054), - [anon_sym_reduce] = ACTIONS(2054), - [anon_sym_select] = ACTIONS(2054), - [anon_sym_insert] = ACTIONS(2054), - [anon_sym_async] = ACTIONS(2054), - [anon_sym_PIPE] = ACTIONS(2054), - [anon_sym_table] = ACTIONS(2054), - [anon_sym_assert] = ACTIONS(2054), - [anon_sym_assert_equal] = ACTIONS(2054), - [anon_sym_download] = ACTIONS(2054), - [anon_sym_help] = ACTIONS(2054), - [anon_sym_length] = ACTIONS(2054), - [anon_sym_output] = ACTIONS(2054), - [anon_sym_output_error] = ACTIONS(2054), - [anon_sym_type] = ACTIONS(2054), - [anon_sym_append] = ACTIONS(2054), - [anon_sym_metadata] = ACTIONS(2054), - [anon_sym_move] = ACTIONS(2054), - [anon_sym_read] = ACTIONS(2054), - [anon_sym_workdir] = ACTIONS(2054), - [anon_sym_write] = ACTIONS(2054), - [anon_sym_from_json] = ACTIONS(2054), - [anon_sym_to_json] = ACTIONS(2054), - [anon_sym_to_string] = ACTIONS(2054), - [anon_sym_to_float] = ACTIONS(2054), - [anon_sym_bash] = ACTIONS(2054), - [anon_sym_fish] = ACTIONS(2054), - [anon_sym_raw] = ACTIONS(2054), - [anon_sym_sh] = ACTIONS(2054), - [anon_sym_zsh] = ACTIONS(2054), - [anon_sym_random] = ACTIONS(2054), - [anon_sym_random_boolean] = ACTIONS(2054), - [anon_sym_random_float] = ACTIONS(2054), - [anon_sym_random_integer] = ACTIONS(2054), - [anon_sym_columns] = ACTIONS(2054), - [anon_sym_rows] = ACTIONS(2054), - [anon_sym_reverse] = ACTIONS(2054), + [sym_block] = STATE(851), + [sym_statement] = STATE(39), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(39), + [sym_identifier] = ACTIONS(875), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), }, [406] = { - [ts_builtin_sym_end] = ACTIONS(2056), - [sym_identifier] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2056), - [anon_sym_RBRACE] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2056), - [anon_sym_LPAREN] = ACTIONS(2056), - [anon_sym_RPAREN] = ACTIONS(2056), - [anon_sym_COMMA] = ACTIONS(2056), - [sym_integer] = ACTIONS(2058), - [sym_float] = ACTIONS(2056), - [sym_string] = ACTIONS(2056), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [anon_sym_LBRACK] = ACTIONS(2056), - [anon_sym_RBRACK] = ACTIONS(2056), - [anon_sym_COLON] = ACTIONS(2056), - [anon_sym_DOT_DOT] = ACTIONS(2056), - [anon_sym_PLUS] = ACTIONS(2056), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2056), - [anon_sym_SLASH] = ACTIONS(2056), - [anon_sym_PERCENT] = ACTIONS(2056), - [anon_sym_EQ_EQ] = ACTIONS(2056), - [anon_sym_BANG_EQ] = ACTIONS(2056), - [anon_sym_AMP_AMP] = ACTIONS(2056), - [anon_sym_PIPE_PIPE] = ACTIONS(2056), - [anon_sym_GT] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_GT_EQ] = ACTIONS(2056), - [anon_sym_LT_EQ] = ACTIONS(2056), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_elseif] = ACTIONS(2056), - [anon_sym_else] = ACTIONS(2058), - [anon_sym_match] = ACTIONS(2058), - [anon_sym_EQ_GT] = ACTIONS(2056), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_transform] = ACTIONS(2058), - [anon_sym_filter] = ACTIONS(2058), - [anon_sym_find] = ACTIONS(2058), - [anon_sym_remove] = ACTIONS(2058), - [anon_sym_reduce] = ACTIONS(2058), - [anon_sym_select] = ACTIONS(2058), - [anon_sym_insert] = ACTIONS(2058), - [anon_sym_async] = ACTIONS(2058), - [anon_sym_PIPE] = ACTIONS(2058), - [anon_sym_table] = ACTIONS(2058), - [anon_sym_assert] = ACTIONS(2058), - [anon_sym_assert_equal] = ACTIONS(2058), - [anon_sym_download] = ACTIONS(2058), - [anon_sym_help] = ACTIONS(2058), - [anon_sym_length] = ACTIONS(2058), - [anon_sym_output] = ACTIONS(2058), - [anon_sym_output_error] = ACTIONS(2058), - [anon_sym_type] = ACTIONS(2058), - [anon_sym_append] = ACTIONS(2058), - [anon_sym_metadata] = ACTIONS(2058), - [anon_sym_move] = ACTIONS(2058), - [anon_sym_read] = ACTIONS(2058), - [anon_sym_workdir] = ACTIONS(2058), - [anon_sym_write] = ACTIONS(2058), - [anon_sym_from_json] = ACTIONS(2058), - [anon_sym_to_json] = ACTIONS(2058), - [anon_sym_to_string] = ACTIONS(2058), - [anon_sym_to_float] = ACTIONS(2058), - [anon_sym_bash] = ACTIONS(2058), - [anon_sym_fish] = ACTIONS(2058), - [anon_sym_raw] = ACTIONS(2058), - [anon_sym_sh] = ACTIONS(2058), - [anon_sym_zsh] = ACTIONS(2058), - [anon_sym_random] = ACTIONS(2058), - [anon_sym_random_boolean] = ACTIONS(2058), - [anon_sym_random_float] = ACTIONS(2058), - [anon_sym_random_integer] = ACTIONS(2058), - [anon_sym_columns] = ACTIONS(2058), - [anon_sym_rows] = ACTIONS(2058), - [anon_sym_reverse] = ACTIONS(2058), + [sym_block] = STATE(1055), + [sym_statement] = STATE(382), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(382), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [407] = { - [ts_builtin_sym_end] = ACTIONS(2060), - [sym_identifier] = ACTIONS(2062), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_RBRACE] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2060), - [anon_sym_RPAREN] = ACTIONS(2060), - [anon_sym_COMMA] = ACTIONS(2060), - [sym_integer] = ACTIONS(2062), - [sym_float] = ACTIONS(2060), - [sym_string] = ACTIONS(2060), - [anon_sym_true] = ACTIONS(2062), - [anon_sym_false] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_RBRACK] = ACTIONS(2060), - [anon_sym_COLON] = ACTIONS(2060), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_PERCENT] = ACTIONS(2060), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2060), - [anon_sym_AMP_AMP] = ACTIONS(2060), - [anon_sym_PIPE_PIPE] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2062), - [anon_sym_LT] = ACTIONS(2062), - [anon_sym_GT_EQ] = ACTIONS(2060), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2062), - [anon_sym_elseif] = ACTIONS(2060), - [anon_sym_else] = ACTIONS(2062), - [anon_sym_match] = ACTIONS(2062), - [anon_sym_EQ_GT] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2062), - [anon_sym_for] = ACTIONS(2062), - [anon_sym_transform] = ACTIONS(2062), - [anon_sym_filter] = ACTIONS(2062), - [anon_sym_find] = ACTIONS(2062), - [anon_sym_remove] = ACTIONS(2062), - [anon_sym_reduce] = ACTIONS(2062), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_insert] = ACTIONS(2062), - [anon_sym_async] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_table] = ACTIONS(2062), - [anon_sym_assert] = ACTIONS(2062), - [anon_sym_assert_equal] = ACTIONS(2062), - [anon_sym_download] = ACTIONS(2062), - [anon_sym_help] = ACTIONS(2062), - [anon_sym_length] = ACTIONS(2062), - [anon_sym_output] = ACTIONS(2062), - [anon_sym_output_error] = ACTIONS(2062), - [anon_sym_type] = ACTIONS(2062), - [anon_sym_append] = ACTIONS(2062), - [anon_sym_metadata] = ACTIONS(2062), - [anon_sym_move] = ACTIONS(2062), - [anon_sym_read] = ACTIONS(2062), - [anon_sym_workdir] = ACTIONS(2062), - [anon_sym_write] = ACTIONS(2062), - [anon_sym_from_json] = ACTIONS(2062), - [anon_sym_to_json] = ACTIONS(2062), - [anon_sym_to_string] = ACTIONS(2062), - [anon_sym_to_float] = ACTIONS(2062), - [anon_sym_bash] = ACTIONS(2062), - [anon_sym_fish] = ACTIONS(2062), - [anon_sym_raw] = ACTIONS(2062), - [anon_sym_sh] = ACTIONS(2062), - [anon_sym_zsh] = ACTIONS(2062), - [anon_sym_random] = ACTIONS(2062), - [anon_sym_random_boolean] = ACTIONS(2062), - [anon_sym_random_float] = ACTIONS(2062), - [anon_sym_random_integer] = ACTIONS(2062), - [anon_sym_columns] = ACTIONS(2062), - [anon_sym_rows] = ACTIONS(2062), - [anon_sym_reverse] = ACTIONS(2062), + [sym_block] = STATE(1545), + [sym_statement] = STATE(107), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(107), + [sym_identifier] = ACTIONS(1198), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [408] = { - [ts_builtin_sym_end] = ACTIONS(2064), - [sym_identifier] = ACTIONS(2066), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2064), - [anon_sym_RPAREN] = ACTIONS(2064), - [anon_sym_COMMA] = ACTIONS(2064), - [sym_integer] = ACTIONS(2066), - [sym_float] = ACTIONS(2064), - [sym_string] = ACTIONS(2064), - [anon_sym_true] = ACTIONS(2066), - [anon_sym_false] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(2064), - [anon_sym_RBRACK] = ACTIONS(2064), - [anon_sym_COLON] = ACTIONS(2064), - [anon_sym_DOT_DOT] = ACTIONS(2064), - [anon_sym_PLUS] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_SLASH] = ACTIONS(2064), - [anon_sym_PERCENT] = ACTIONS(2064), - [anon_sym_EQ_EQ] = ACTIONS(2064), - [anon_sym_BANG_EQ] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_GT_EQ] = ACTIONS(2064), - [anon_sym_LT_EQ] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2066), - [anon_sym_elseif] = ACTIONS(2064), - [anon_sym_else] = ACTIONS(2066), - [anon_sym_match] = ACTIONS(2066), - [anon_sym_EQ_GT] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2066), - [anon_sym_for] = ACTIONS(2066), - [anon_sym_transform] = ACTIONS(2066), - [anon_sym_filter] = ACTIONS(2066), - [anon_sym_find] = ACTIONS(2066), - [anon_sym_remove] = ACTIONS(2066), - [anon_sym_reduce] = ACTIONS(2066), - [anon_sym_select] = ACTIONS(2066), - [anon_sym_insert] = ACTIONS(2066), - [anon_sym_async] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_table] = ACTIONS(2066), - [anon_sym_assert] = ACTIONS(2066), - [anon_sym_assert_equal] = ACTIONS(2066), - [anon_sym_download] = ACTIONS(2066), - [anon_sym_help] = ACTIONS(2066), - [anon_sym_length] = ACTIONS(2066), - [anon_sym_output] = ACTIONS(2066), - [anon_sym_output_error] = ACTIONS(2066), - [anon_sym_type] = ACTIONS(2066), - [anon_sym_append] = ACTIONS(2066), - [anon_sym_metadata] = ACTIONS(2066), - [anon_sym_move] = ACTIONS(2066), - [anon_sym_read] = ACTIONS(2066), - [anon_sym_workdir] = ACTIONS(2066), - [anon_sym_write] = ACTIONS(2066), - [anon_sym_from_json] = ACTIONS(2066), - [anon_sym_to_json] = ACTIONS(2066), - [anon_sym_to_string] = ACTIONS(2066), - [anon_sym_to_float] = ACTIONS(2066), - [anon_sym_bash] = ACTIONS(2066), - [anon_sym_fish] = ACTIONS(2066), - [anon_sym_raw] = ACTIONS(2066), - [anon_sym_sh] = ACTIONS(2066), - [anon_sym_zsh] = ACTIONS(2066), - [anon_sym_random] = ACTIONS(2066), - [anon_sym_random_boolean] = ACTIONS(2066), - [anon_sym_random_float] = ACTIONS(2066), - [anon_sym_random_integer] = ACTIONS(2066), - [anon_sym_columns] = ACTIONS(2066), - [anon_sym_rows] = ACTIONS(2066), - [anon_sym_reverse] = ACTIONS(2066), + [sym_block] = STATE(1011), + [sym_statement] = STATE(54), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(875), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3083), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), }, [409] = { - [ts_builtin_sym_end] = ACTIONS(2068), - [sym_identifier] = ACTIONS(2070), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_RBRACE] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_LPAREN] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2068), - [anon_sym_COMMA] = ACTIONS(2068), - [sym_integer] = ACTIONS(2070), - [sym_float] = ACTIONS(2068), - [sym_string] = ACTIONS(2068), - [anon_sym_true] = ACTIONS(2070), - [anon_sym_false] = ACTIONS(2070), - [anon_sym_LBRACK] = ACTIONS(2068), - [anon_sym_RBRACK] = ACTIONS(2068), - [anon_sym_COLON] = ACTIONS(2068), - [anon_sym_DOT_DOT] = ACTIONS(2068), - [anon_sym_PLUS] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2068), - [anon_sym_SLASH] = ACTIONS(2068), - [anon_sym_PERCENT] = ACTIONS(2068), - [anon_sym_EQ_EQ] = ACTIONS(2068), - [anon_sym_BANG_EQ] = ACTIONS(2068), - [anon_sym_AMP_AMP] = ACTIONS(2068), - [anon_sym_PIPE_PIPE] = ACTIONS(2068), - [anon_sym_GT] = ACTIONS(2070), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT_EQ] = ACTIONS(2068), - [anon_sym_LT_EQ] = ACTIONS(2068), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_elseif] = ACTIONS(2068), - [anon_sym_else] = ACTIONS(2070), - [anon_sym_match] = ACTIONS(2070), - [anon_sym_EQ_GT] = ACTIONS(2068), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_transform] = ACTIONS(2070), - [anon_sym_filter] = ACTIONS(2070), - [anon_sym_find] = ACTIONS(2070), - [anon_sym_remove] = ACTIONS(2070), - [anon_sym_reduce] = ACTIONS(2070), - [anon_sym_select] = ACTIONS(2070), - [anon_sym_insert] = ACTIONS(2070), - [anon_sym_async] = ACTIONS(2070), - [anon_sym_PIPE] = ACTIONS(2070), - [anon_sym_table] = ACTIONS(2070), - [anon_sym_assert] = ACTIONS(2070), - [anon_sym_assert_equal] = ACTIONS(2070), - [anon_sym_download] = ACTIONS(2070), - [anon_sym_help] = ACTIONS(2070), - [anon_sym_length] = ACTIONS(2070), - [anon_sym_output] = ACTIONS(2070), - [anon_sym_output_error] = ACTIONS(2070), - [anon_sym_type] = ACTIONS(2070), - [anon_sym_append] = ACTIONS(2070), - [anon_sym_metadata] = ACTIONS(2070), - [anon_sym_move] = ACTIONS(2070), - [anon_sym_read] = ACTIONS(2070), - [anon_sym_workdir] = ACTIONS(2070), - [anon_sym_write] = ACTIONS(2070), - [anon_sym_from_json] = ACTIONS(2070), - [anon_sym_to_json] = ACTIONS(2070), - [anon_sym_to_string] = ACTIONS(2070), - [anon_sym_to_float] = ACTIONS(2070), - [anon_sym_bash] = ACTIONS(2070), - [anon_sym_fish] = ACTIONS(2070), - [anon_sym_raw] = ACTIONS(2070), - [anon_sym_sh] = ACTIONS(2070), - [anon_sym_zsh] = ACTIONS(2070), - [anon_sym_random] = ACTIONS(2070), - [anon_sym_random_boolean] = ACTIONS(2070), - [anon_sym_random_float] = ACTIONS(2070), - [anon_sym_random_integer] = ACTIONS(2070), - [anon_sym_columns] = ACTIONS(2070), - [anon_sym_rows] = ACTIONS(2070), - [anon_sym_reverse] = ACTIONS(2070), + [sym_block] = STATE(803), + [sym_statement] = STATE(51), + [sym_expression] = STATE(817), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(748), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(760), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(1280), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_asyncfor] = ACTIONS(1294), + [anon_sym_transform] = ACTIONS(1296), + [anon_sym_filter] = ACTIONS(1298), + [anon_sym_find] = ACTIONS(1300), + [anon_sym_remove] = ACTIONS(1302), + [anon_sym_reduce] = ACTIONS(1304), + [anon_sym_select] = ACTIONS(1306), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [410] = { - [ts_builtin_sym_end] = ACTIONS(2072), - [sym_identifier] = ACTIONS(2074), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_COMMA] = ACTIONS(2072), - [sym_integer] = ACTIONS(2074), - [sym_float] = ACTIONS(2072), - [sym_string] = ACTIONS(2072), - [anon_sym_true] = ACTIONS(2074), - [anon_sym_false] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_RBRACK] = ACTIONS(2072), - [anon_sym_COLON] = ACTIONS(2072), - [anon_sym_DOT_DOT] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_SLASH] = ACTIONS(2072), - [anon_sym_PERCENT] = ACTIONS(2072), - [anon_sym_EQ_EQ] = ACTIONS(2072), - [anon_sym_BANG_EQ] = ACTIONS(2072), - [anon_sym_AMP_AMP] = ACTIONS(2072), - [anon_sym_PIPE_PIPE] = ACTIONS(2072), - [anon_sym_GT] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2074), - [anon_sym_GT_EQ] = ACTIONS(2072), - [anon_sym_LT_EQ] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2074), - [anon_sym_elseif] = ACTIONS(2072), - [anon_sym_else] = ACTIONS(2074), - [anon_sym_match] = ACTIONS(2074), - [anon_sym_EQ_GT] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2074), - [anon_sym_for] = ACTIONS(2074), - [anon_sym_transform] = ACTIONS(2074), - [anon_sym_filter] = ACTIONS(2074), - [anon_sym_find] = ACTIONS(2074), - [anon_sym_remove] = ACTIONS(2074), - [anon_sym_reduce] = ACTIONS(2074), - [anon_sym_select] = ACTIONS(2074), - [anon_sym_insert] = ACTIONS(2074), - [anon_sym_async] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_table] = ACTIONS(2074), - [anon_sym_assert] = ACTIONS(2074), - [anon_sym_assert_equal] = ACTIONS(2074), - [anon_sym_download] = ACTIONS(2074), - [anon_sym_help] = ACTIONS(2074), - [anon_sym_length] = ACTIONS(2074), - [anon_sym_output] = ACTIONS(2074), - [anon_sym_output_error] = ACTIONS(2074), - [anon_sym_type] = ACTIONS(2074), - [anon_sym_append] = ACTIONS(2074), - [anon_sym_metadata] = ACTIONS(2074), - [anon_sym_move] = ACTIONS(2074), - [anon_sym_read] = ACTIONS(2074), - [anon_sym_workdir] = ACTIONS(2074), - [anon_sym_write] = ACTIONS(2074), - [anon_sym_from_json] = ACTIONS(2074), - [anon_sym_to_json] = ACTIONS(2074), - [anon_sym_to_string] = ACTIONS(2074), - [anon_sym_to_float] = ACTIONS(2074), - [anon_sym_bash] = ACTIONS(2074), - [anon_sym_fish] = ACTIONS(2074), - [anon_sym_raw] = ACTIONS(2074), - [anon_sym_sh] = ACTIONS(2074), - [anon_sym_zsh] = ACTIONS(2074), - [anon_sym_random] = ACTIONS(2074), - [anon_sym_random_boolean] = ACTIONS(2074), - [anon_sym_random_float] = ACTIONS(2074), - [anon_sym_random_integer] = ACTIONS(2074), - [anon_sym_columns] = ACTIONS(2074), - [anon_sym_rows] = ACTIONS(2074), - [anon_sym_reverse] = ACTIONS(2074), + [sym_block] = STATE(603), + [sym_statement] = STATE(21), + [sym_expression] = STATE(593), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(584), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1776), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(286), + [aux_sym_block_repeat1] = STATE(21), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(201), + [anon_sym_while] = ACTIONS(203), + [anon_sym_for] = ACTIONS(205), + [anon_sym_asyncfor] = ACTIONS(207), + [anon_sym_transform] = ACTIONS(209), + [anon_sym_filter] = ACTIONS(211), + [anon_sym_find] = ACTIONS(213), + [anon_sym_remove] = ACTIONS(215), + [anon_sym_reduce] = ACTIONS(217), + [anon_sym_select] = ACTIONS(219), + [anon_sym_insert] = ACTIONS(221), + [anon_sym_async] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_assert_equal] = ACTIONS(227), + [anon_sym_download] = ACTIONS(227), + [anon_sym_help] = ACTIONS(227), + [anon_sym_length] = ACTIONS(227), + [anon_sym_output] = ACTIONS(227), + [anon_sym_output_error] = ACTIONS(227), + [anon_sym_type] = ACTIONS(227), + [anon_sym_append] = ACTIONS(227), + [anon_sym_metadata] = ACTIONS(227), + [anon_sym_move] = ACTIONS(227), + [anon_sym_read] = ACTIONS(227), + [anon_sym_workdir] = ACTIONS(227), + [anon_sym_write] = ACTIONS(227), + [anon_sym_from_json] = ACTIONS(227), + [anon_sym_to_json] = ACTIONS(227), + [anon_sym_to_string] = ACTIONS(227), + [anon_sym_to_float] = ACTIONS(227), + [anon_sym_bash] = ACTIONS(227), + [anon_sym_fish] = ACTIONS(227), + [anon_sym_raw] = ACTIONS(227), + [anon_sym_sh] = ACTIONS(227), + [anon_sym_zsh] = ACTIONS(227), + [anon_sym_random] = ACTIONS(227), + [anon_sym_random_boolean] = ACTIONS(227), + [anon_sym_random_float] = ACTIONS(227), + [anon_sym_random_integer] = ACTIONS(227), + [anon_sym_columns] = ACTIONS(227), + [anon_sym_rows] = ACTIONS(227), + [anon_sym_reverse] = ACTIONS(227), }, [411] = { - [ts_builtin_sym_end] = ACTIONS(2076), - [sym_identifier] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [sym_integer] = ACTIONS(2078), - [sym_float] = ACTIONS(2076), - [sym_string] = ACTIONS(2076), - [anon_sym_true] = ACTIONS(2078), - [anon_sym_false] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_RBRACK] = ACTIONS(2076), - [anon_sym_COLON] = ACTIONS(2076), - [anon_sym_DOT_DOT] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_SLASH] = ACTIONS(2076), - [anon_sym_PERCENT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_elseif] = ACTIONS(2076), - [anon_sym_else] = ACTIONS(2078), - [anon_sym_match] = ACTIONS(2078), - [anon_sym_EQ_GT] = ACTIONS(2076), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_transform] = ACTIONS(2078), - [anon_sym_filter] = ACTIONS(2078), - [anon_sym_find] = ACTIONS(2078), - [anon_sym_remove] = ACTIONS(2078), - [anon_sym_reduce] = ACTIONS(2078), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_insert] = ACTIONS(2078), - [anon_sym_async] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_table] = ACTIONS(2078), - [anon_sym_assert] = ACTIONS(2078), - [anon_sym_assert_equal] = ACTIONS(2078), - [anon_sym_download] = ACTIONS(2078), - [anon_sym_help] = ACTIONS(2078), - [anon_sym_length] = ACTIONS(2078), - [anon_sym_output] = ACTIONS(2078), - [anon_sym_output_error] = ACTIONS(2078), - [anon_sym_type] = ACTIONS(2078), - [anon_sym_append] = ACTIONS(2078), - [anon_sym_metadata] = ACTIONS(2078), - [anon_sym_move] = ACTIONS(2078), - [anon_sym_read] = ACTIONS(2078), - [anon_sym_workdir] = ACTIONS(2078), - [anon_sym_write] = ACTIONS(2078), - [anon_sym_from_json] = ACTIONS(2078), - [anon_sym_to_json] = ACTIONS(2078), - [anon_sym_to_string] = ACTIONS(2078), - [anon_sym_to_float] = ACTIONS(2078), - [anon_sym_bash] = ACTIONS(2078), - [anon_sym_fish] = ACTIONS(2078), - [anon_sym_raw] = ACTIONS(2078), - [anon_sym_sh] = ACTIONS(2078), - [anon_sym_zsh] = ACTIONS(2078), - [anon_sym_random] = ACTIONS(2078), - [anon_sym_random_boolean] = ACTIONS(2078), - [anon_sym_random_float] = ACTIONS(2078), - [anon_sym_random_integer] = ACTIONS(2078), - [anon_sym_columns] = ACTIONS(2078), - [anon_sym_rows] = ACTIONS(2078), - [anon_sym_reverse] = ACTIONS(2078), + [sym_block] = STATE(987), + [sym_statement] = STATE(49), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [412] = { - [sym_math_operator] = STATE(660), - [sym_logic_operator] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1949), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_COMMA] = ACTIONS(1947), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1947), - [sym_string] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_RBRACK] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_transform] = ACTIONS(1949), - [anon_sym_filter] = ACTIONS(1949), - [anon_sym_find] = ACTIONS(1949), - [anon_sym_remove] = ACTIONS(1949), - [anon_sym_reduce] = ACTIONS(1949), - [anon_sym_select] = ACTIONS(1949), - [anon_sym_insert] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_table] = ACTIONS(1949), - [anon_sym_assert] = ACTIONS(1949), - [anon_sym_assert_equal] = ACTIONS(1949), - [anon_sym_download] = ACTIONS(1949), - [anon_sym_help] = ACTIONS(1949), - [anon_sym_length] = ACTIONS(1949), - [anon_sym_output] = ACTIONS(1949), - [anon_sym_output_error] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_append] = ACTIONS(1949), - [anon_sym_metadata] = ACTIONS(1949), - [anon_sym_move] = ACTIONS(1949), - [anon_sym_read] = ACTIONS(1949), - [anon_sym_workdir] = ACTIONS(1949), - [anon_sym_write] = ACTIONS(1949), - [anon_sym_from_json] = ACTIONS(1949), - [anon_sym_to_json] = ACTIONS(1949), - [anon_sym_to_string] = ACTIONS(1949), - [anon_sym_to_float] = ACTIONS(1949), - [anon_sym_bash] = ACTIONS(1949), - [anon_sym_fish] = ACTIONS(1949), - [anon_sym_raw] = ACTIONS(1949), - [anon_sym_sh] = ACTIONS(1949), - [anon_sym_zsh] = ACTIONS(1949), - [anon_sym_random] = ACTIONS(1949), - [anon_sym_random_boolean] = ACTIONS(1949), - [anon_sym_random_float] = ACTIONS(1949), - [anon_sym_random_integer] = ACTIONS(1949), - [anon_sym_columns] = ACTIONS(1949), - [anon_sym_rows] = ACTIONS(1949), - [anon_sym_reverse] = ACTIONS(1949), + [sym_block] = STATE(704), + [sym_statement] = STATE(17), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [413] = { - [sym_math_operator] = STATE(660), - [sym_logic_operator] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1951), - [sym_identifier] = ACTIONS(1953), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1951), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1951), - [sym_string] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_RBRACK] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_transform] = ACTIONS(1953), - [anon_sym_filter] = ACTIONS(1953), - [anon_sym_find] = ACTIONS(1953), - [anon_sym_remove] = ACTIONS(1953), - [anon_sym_reduce] = ACTIONS(1953), - [anon_sym_select] = ACTIONS(1953), - [anon_sym_insert] = ACTIONS(1953), - [anon_sym_async] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_table] = ACTIONS(1953), - [anon_sym_assert] = ACTIONS(1953), - [anon_sym_assert_equal] = ACTIONS(1953), - [anon_sym_download] = ACTIONS(1953), - [anon_sym_help] = ACTIONS(1953), - [anon_sym_length] = ACTIONS(1953), - [anon_sym_output] = ACTIONS(1953), - [anon_sym_output_error] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_append] = ACTIONS(1953), - [anon_sym_metadata] = ACTIONS(1953), - [anon_sym_move] = ACTIONS(1953), - [anon_sym_read] = ACTIONS(1953), - [anon_sym_workdir] = ACTIONS(1953), - [anon_sym_write] = ACTIONS(1953), - [anon_sym_from_json] = ACTIONS(1953), - [anon_sym_to_json] = ACTIONS(1953), - [anon_sym_to_string] = ACTIONS(1953), - [anon_sym_to_float] = ACTIONS(1953), - [anon_sym_bash] = ACTIONS(1953), - [anon_sym_fish] = ACTIONS(1953), - [anon_sym_raw] = ACTIONS(1953), - [anon_sym_sh] = ACTIONS(1953), - [anon_sym_zsh] = ACTIONS(1953), - [anon_sym_random] = ACTIONS(1953), - [anon_sym_random_boolean] = ACTIONS(1953), - [anon_sym_random_float] = ACTIONS(1953), - [anon_sym_random_integer] = ACTIONS(1953), - [anon_sym_columns] = ACTIONS(1953), - [anon_sym_rows] = ACTIONS(1953), - [anon_sym_reverse] = ACTIONS(1953), + [sym_block] = STATE(1543), + [sym_statement] = STATE(257), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(257), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [414] = { - [sym_math_operator] = STATE(736), - [sym_logic_operator] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(1973), - [sym_integer] = ACTIONS(1940), - [sym_float] = ACTIONS(1938), - [sym_string] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_elseif] = ACTIONS(1938), - [anon_sym_else] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_transform] = ACTIONS(1940), - [anon_sym_filter] = ACTIONS(1940), - [anon_sym_find] = ACTIONS(1940), - [anon_sym_remove] = ACTIONS(1940), - [anon_sym_reduce] = ACTIONS(1940), - [anon_sym_select] = ACTIONS(1940), - [anon_sym_insert] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_table] = ACTIONS(1940), - [anon_sym_assert] = ACTIONS(1940), - [anon_sym_assert_equal] = ACTIONS(1940), - [anon_sym_download] = ACTIONS(1940), - [anon_sym_help] = ACTIONS(1940), - [anon_sym_length] = ACTIONS(1940), - [anon_sym_output] = ACTIONS(1940), - [anon_sym_output_error] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_append] = ACTIONS(1940), - [anon_sym_metadata] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_read] = ACTIONS(1940), - [anon_sym_workdir] = ACTIONS(1940), - [anon_sym_write] = ACTIONS(1940), - [anon_sym_from_json] = ACTIONS(1940), - [anon_sym_to_json] = ACTIONS(1940), - [anon_sym_to_string] = ACTIONS(1940), - [anon_sym_to_float] = ACTIONS(1940), - [anon_sym_bash] = ACTIONS(1940), - [anon_sym_fish] = ACTIONS(1940), - [anon_sym_raw] = ACTIONS(1940), - [anon_sym_sh] = ACTIONS(1940), - [anon_sym_zsh] = ACTIONS(1940), - [anon_sym_random] = ACTIONS(1940), - [anon_sym_random_boolean] = ACTIONS(1940), - [anon_sym_random_float] = ACTIONS(1940), - [anon_sym_random_integer] = ACTIONS(1940), - [anon_sym_columns] = ACTIONS(1940), - [anon_sym_rows] = ACTIONS(1940), - [anon_sym_reverse] = ACTIONS(1940), + [sym_block] = STATE(993), + [sym_statement] = STATE(49), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [415] = { - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2080), - [anon_sym_RPAREN] = ACTIONS(2080), - [anon_sym_COMMA] = ACTIONS(2080), - [sym_integer] = ACTIONS(2082), - [sym_float] = ACTIONS(2080), - [sym_string] = ACTIONS(2080), - [anon_sym_true] = ACTIONS(2082), - [anon_sym_false] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_RBRACK] = ACTIONS(2080), - [anon_sym_COLON] = ACTIONS(2080), - [anon_sym_DOT_DOT] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_PERCENT] = ACTIONS(2080), - [anon_sym_EQ_EQ] = ACTIONS(2080), - [anon_sym_BANG_EQ] = ACTIONS(2080), - [anon_sym_AMP_AMP] = ACTIONS(2080), - [anon_sym_PIPE_PIPE] = ACTIONS(2080), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2080), - [anon_sym_LT_EQ] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2082), - [anon_sym_elseif] = ACTIONS(2080), - [anon_sym_else] = ACTIONS(2082), - [anon_sym_match] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2082), - [anon_sym_for] = ACTIONS(2082), - [anon_sym_transform] = ACTIONS(2082), - [anon_sym_filter] = ACTIONS(2082), - [anon_sym_find] = ACTIONS(2082), - [anon_sym_remove] = ACTIONS(2082), - [anon_sym_reduce] = ACTIONS(2082), - [anon_sym_select] = ACTIONS(2082), - [anon_sym_insert] = ACTIONS(2082), - [anon_sym_async] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_table] = ACTIONS(2082), - [anon_sym_assert] = ACTIONS(2082), - [anon_sym_assert_equal] = ACTIONS(2082), - [anon_sym_download] = ACTIONS(2082), - [anon_sym_help] = ACTIONS(2082), - [anon_sym_length] = ACTIONS(2082), - [anon_sym_output] = ACTIONS(2082), - [anon_sym_output_error] = ACTIONS(2082), - [anon_sym_type] = ACTIONS(2082), - [anon_sym_append] = ACTIONS(2082), - [anon_sym_metadata] = ACTIONS(2082), - [anon_sym_move] = ACTIONS(2082), - [anon_sym_read] = ACTIONS(2082), - [anon_sym_workdir] = ACTIONS(2082), - [anon_sym_write] = ACTIONS(2082), - [anon_sym_from_json] = ACTIONS(2082), - [anon_sym_to_json] = ACTIONS(2082), - [anon_sym_to_string] = ACTIONS(2082), - [anon_sym_to_float] = ACTIONS(2082), - [anon_sym_bash] = ACTIONS(2082), - [anon_sym_fish] = ACTIONS(2082), - [anon_sym_raw] = ACTIONS(2082), - [anon_sym_sh] = ACTIONS(2082), - [anon_sym_zsh] = ACTIONS(2082), - [anon_sym_random] = ACTIONS(2082), - [anon_sym_random_boolean] = ACTIONS(2082), - [anon_sym_random_float] = ACTIONS(2082), - [anon_sym_random_integer] = ACTIONS(2082), - [anon_sym_columns] = ACTIONS(2082), - [anon_sym_rows] = ACTIONS(2082), - [anon_sym_reverse] = ACTIONS(2082), + [sym_block] = STATE(607), + [sym_statement] = STATE(21), + [sym_expression] = STATE(593), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(584), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1776), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(286), + [aux_sym_block_repeat1] = STATE(21), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(201), + [anon_sym_while] = ACTIONS(203), + [anon_sym_for] = ACTIONS(205), + [anon_sym_asyncfor] = ACTIONS(207), + [anon_sym_transform] = ACTIONS(209), + [anon_sym_filter] = ACTIONS(211), + [anon_sym_find] = ACTIONS(213), + [anon_sym_remove] = ACTIONS(215), + [anon_sym_reduce] = ACTIONS(217), + [anon_sym_select] = ACTIONS(219), + [anon_sym_insert] = ACTIONS(221), + [anon_sym_async] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_assert_equal] = ACTIONS(227), + [anon_sym_download] = ACTIONS(227), + [anon_sym_help] = ACTIONS(227), + [anon_sym_length] = ACTIONS(227), + [anon_sym_output] = ACTIONS(227), + [anon_sym_output_error] = ACTIONS(227), + [anon_sym_type] = ACTIONS(227), + [anon_sym_append] = ACTIONS(227), + [anon_sym_metadata] = ACTIONS(227), + [anon_sym_move] = ACTIONS(227), + [anon_sym_read] = ACTIONS(227), + [anon_sym_workdir] = ACTIONS(227), + [anon_sym_write] = ACTIONS(227), + [anon_sym_from_json] = ACTIONS(227), + [anon_sym_to_json] = ACTIONS(227), + [anon_sym_to_string] = ACTIONS(227), + [anon_sym_to_float] = ACTIONS(227), + [anon_sym_bash] = ACTIONS(227), + [anon_sym_fish] = ACTIONS(227), + [anon_sym_raw] = ACTIONS(227), + [anon_sym_sh] = ACTIONS(227), + [anon_sym_zsh] = ACTIONS(227), + [anon_sym_random] = ACTIONS(227), + [anon_sym_random_boolean] = ACTIONS(227), + [anon_sym_random_float] = ACTIONS(227), + [anon_sym_random_integer] = ACTIONS(227), + [anon_sym_columns] = ACTIONS(227), + [anon_sym_rows] = ACTIONS(227), + [anon_sym_reverse] = ACTIONS(227), }, [416] = { - [ts_builtin_sym_end] = ACTIONS(2084), - [sym_identifier] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(2084), - [anon_sym_COMMA] = ACTIONS(2084), - [sym_integer] = ACTIONS(2086), - [sym_float] = ACTIONS(2084), - [sym_string] = ACTIONS(2084), - [anon_sym_true] = ACTIONS(2086), - [anon_sym_false] = ACTIONS(2086), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_RBRACK] = ACTIONS(2084), - [anon_sym_COLON] = ACTIONS(2084), - [anon_sym_DOT_DOT] = ACTIONS(2084), - [anon_sym_PLUS] = ACTIONS(2084), - [anon_sym_DASH] = ACTIONS(2086), - [anon_sym_STAR] = ACTIONS(2084), - [anon_sym_SLASH] = ACTIONS(2084), - [anon_sym_PERCENT] = ACTIONS(2084), - [anon_sym_EQ_EQ] = ACTIONS(2084), - [anon_sym_BANG_EQ] = ACTIONS(2084), - [anon_sym_AMP_AMP] = ACTIONS(2084), - [anon_sym_PIPE_PIPE] = ACTIONS(2084), - [anon_sym_GT] = ACTIONS(2086), - [anon_sym_LT] = ACTIONS(2086), - [anon_sym_GT_EQ] = ACTIONS(2084), - [anon_sym_LT_EQ] = ACTIONS(2084), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_elseif] = ACTIONS(2084), - [anon_sym_else] = ACTIONS(2086), - [anon_sym_match] = ACTIONS(2086), - [anon_sym_EQ_GT] = ACTIONS(2084), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_transform] = ACTIONS(2086), - [anon_sym_filter] = ACTIONS(2086), - [anon_sym_find] = ACTIONS(2086), - [anon_sym_remove] = ACTIONS(2086), - [anon_sym_reduce] = ACTIONS(2086), - [anon_sym_select] = ACTIONS(2086), - [anon_sym_insert] = ACTIONS(2086), - [anon_sym_async] = ACTIONS(2086), - [anon_sym_PIPE] = ACTIONS(2086), - [anon_sym_table] = ACTIONS(2086), - [anon_sym_assert] = ACTIONS(2086), - [anon_sym_assert_equal] = ACTIONS(2086), - [anon_sym_download] = ACTIONS(2086), - [anon_sym_help] = ACTIONS(2086), - [anon_sym_length] = ACTIONS(2086), - [anon_sym_output] = ACTIONS(2086), - [anon_sym_output_error] = ACTIONS(2086), - [anon_sym_type] = ACTIONS(2086), - [anon_sym_append] = ACTIONS(2086), - [anon_sym_metadata] = ACTIONS(2086), - [anon_sym_move] = ACTIONS(2086), - [anon_sym_read] = ACTIONS(2086), - [anon_sym_workdir] = ACTIONS(2086), - [anon_sym_write] = ACTIONS(2086), - [anon_sym_from_json] = ACTIONS(2086), - [anon_sym_to_json] = ACTIONS(2086), - [anon_sym_to_string] = ACTIONS(2086), - [anon_sym_to_float] = ACTIONS(2086), - [anon_sym_bash] = ACTIONS(2086), - [anon_sym_fish] = ACTIONS(2086), - [anon_sym_raw] = ACTIONS(2086), - [anon_sym_sh] = ACTIONS(2086), - [anon_sym_zsh] = ACTIONS(2086), - [anon_sym_random] = ACTIONS(2086), - [anon_sym_random_boolean] = ACTIONS(2086), - [anon_sym_random_float] = ACTIONS(2086), - [anon_sym_random_integer] = ACTIONS(2086), - [anon_sym_columns] = ACTIONS(2086), - [anon_sym_rows] = ACTIONS(2086), - [anon_sym_reverse] = ACTIONS(2086), + [sym_block] = STATE(777), + [sym_statement] = STATE(33), + [sym_expression] = STATE(732), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(620), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(654), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(33), + [sym_identifier] = ACTIONS(623), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(629), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_asyncfor] = ACTIONS(637), + [anon_sym_transform] = ACTIONS(639), + [anon_sym_filter] = ACTIONS(641), + [anon_sym_find] = ACTIONS(643), + [anon_sym_remove] = ACTIONS(645), + [anon_sym_reduce] = ACTIONS(647), + [anon_sym_select] = ACTIONS(649), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [417] = { - [sym_math_operator] = STATE(660), - [sym_logic_operator] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_RBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(1964), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [sym_block] = STATE(799), + [sym_statement] = STATE(51), + [sym_expression] = STATE(817), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(748), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(760), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(1280), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_asyncfor] = ACTIONS(1294), + [anon_sym_transform] = ACTIONS(1296), + [anon_sym_filter] = ACTIONS(1298), + [anon_sym_find] = ACTIONS(1300), + [anon_sym_remove] = ACTIONS(1302), + [anon_sym_reduce] = ACTIONS(1304), + [anon_sym_select] = ACTIONS(1306), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [418] = { - [ts_builtin_sym_end] = ACTIONS(2090), - [sym_identifier] = ACTIONS(2092), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2090), - [anon_sym_RPAREN] = ACTIONS(2090), - [anon_sym_COMMA] = ACTIONS(2090), - [sym_integer] = ACTIONS(2092), - [sym_float] = ACTIONS(2090), - [sym_string] = ACTIONS(2090), - [anon_sym_true] = ACTIONS(2092), - [anon_sym_false] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2090), - [anon_sym_RBRACK] = ACTIONS(2090), - [anon_sym_COLON] = ACTIONS(2090), - [anon_sym_DOT_DOT] = ACTIONS(2090), - [anon_sym_PLUS] = ACTIONS(2090), - [anon_sym_DASH] = ACTIONS(2092), - [anon_sym_STAR] = ACTIONS(2090), - [anon_sym_SLASH] = ACTIONS(2090), - [anon_sym_PERCENT] = ACTIONS(2090), - [anon_sym_EQ_EQ] = ACTIONS(2090), - [anon_sym_BANG_EQ] = ACTIONS(2090), - [anon_sym_AMP_AMP] = ACTIONS(2090), - [anon_sym_PIPE_PIPE] = ACTIONS(2090), - [anon_sym_GT] = ACTIONS(2092), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_GT_EQ] = ACTIONS(2090), - [anon_sym_LT_EQ] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_elseif] = ACTIONS(2090), - [anon_sym_else] = ACTIONS(2092), - [anon_sym_match] = ACTIONS(2092), - [anon_sym_EQ_GT] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_for] = ACTIONS(2092), - [anon_sym_transform] = ACTIONS(2092), - [anon_sym_filter] = ACTIONS(2092), - [anon_sym_find] = ACTIONS(2092), - [anon_sym_remove] = ACTIONS(2092), - [anon_sym_reduce] = ACTIONS(2092), - [anon_sym_select] = ACTIONS(2092), - [anon_sym_insert] = ACTIONS(2092), - [anon_sym_async] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_table] = ACTIONS(2092), - [anon_sym_assert] = ACTIONS(2092), - [anon_sym_assert_equal] = ACTIONS(2092), - [anon_sym_download] = ACTIONS(2092), - [anon_sym_help] = ACTIONS(2092), - [anon_sym_length] = ACTIONS(2092), - [anon_sym_output] = ACTIONS(2092), - [anon_sym_output_error] = ACTIONS(2092), - [anon_sym_type] = ACTIONS(2092), - [anon_sym_append] = ACTIONS(2092), - [anon_sym_metadata] = ACTIONS(2092), - [anon_sym_move] = ACTIONS(2092), - [anon_sym_read] = ACTIONS(2092), - [anon_sym_workdir] = ACTIONS(2092), - [anon_sym_write] = ACTIONS(2092), - [anon_sym_from_json] = ACTIONS(2092), - [anon_sym_to_json] = ACTIONS(2092), - [anon_sym_to_string] = ACTIONS(2092), - [anon_sym_to_float] = ACTIONS(2092), - [anon_sym_bash] = ACTIONS(2092), - [anon_sym_fish] = ACTIONS(2092), - [anon_sym_raw] = ACTIONS(2092), - [anon_sym_sh] = ACTIONS(2092), - [anon_sym_zsh] = ACTIONS(2092), - [anon_sym_random] = ACTIONS(2092), - [anon_sym_random_boolean] = ACTIONS(2092), - [anon_sym_random_float] = ACTIONS(2092), - [anon_sym_random_integer] = ACTIONS(2092), - [anon_sym_columns] = ACTIONS(2092), - [anon_sym_rows] = ACTIONS(2092), - [anon_sym_reverse] = ACTIONS(2092), + [sym_block] = STATE(696), + [sym_statement] = STATE(17), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [419] = { - [ts_builtin_sym_end] = ACTIONS(2094), - [sym_identifier] = ACTIONS(2096), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2094), - [anon_sym_RBRACE] = ACTIONS(2094), - [anon_sym_SEMI] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_RPAREN] = ACTIONS(2094), - [anon_sym_COMMA] = ACTIONS(2094), - [sym_integer] = ACTIONS(2096), - [sym_float] = ACTIONS(2094), - [sym_string] = ACTIONS(2094), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_RBRACK] = ACTIONS(2094), - [anon_sym_COLON] = ACTIONS(2094), - [anon_sym_DOT_DOT] = ACTIONS(2094), - [anon_sym_PLUS] = ACTIONS(2094), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_SLASH] = ACTIONS(2094), - [anon_sym_PERCENT] = ACTIONS(2094), - [anon_sym_EQ_EQ] = ACTIONS(2094), - [anon_sym_BANG_EQ] = ACTIONS(2094), - [anon_sym_AMP_AMP] = ACTIONS(2094), - [anon_sym_PIPE_PIPE] = ACTIONS(2094), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2094), - [anon_sym_LT_EQ] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2096), - [anon_sym_elseif] = ACTIONS(2094), - [anon_sym_else] = ACTIONS(2096), - [anon_sym_match] = ACTIONS(2096), - [anon_sym_EQ_GT] = ACTIONS(2094), - [anon_sym_while] = ACTIONS(2096), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_transform] = ACTIONS(2096), - [anon_sym_filter] = ACTIONS(2096), - [anon_sym_find] = ACTIONS(2096), - [anon_sym_remove] = ACTIONS(2096), - [anon_sym_reduce] = ACTIONS(2096), - [anon_sym_select] = ACTIONS(2096), - [anon_sym_insert] = ACTIONS(2096), - [anon_sym_async] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_table] = ACTIONS(2096), - [anon_sym_assert] = ACTIONS(2096), - [anon_sym_assert_equal] = ACTIONS(2096), - [anon_sym_download] = ACTIONS(2096), - [anon_sym_help] = ACTIONS(2096), - [anon_sym_length] = ACTIONS(2096), - [anon_sym_output] = ACTIONS(2096), - [anon_sym_output_error] = ACTIONS(2096), - [anon_sym_type] = ACTIONS(2096), - [anon_sym_append] = ACTIONS(2096), - [anon_sym_metadata] = ACTIONS(2096), - [anon_sym_move] = ACTIONS(2096), - [anon_sym_read] = ACTIONS(2096), - [anon_sym_workdir] = ACTIONS(2096), - [anon_sym_write] = ACTIONS(2096), - [anon_sym_from_json] = ACTIONS(2096), - [anon_sym_to_json] = ACTIONS(2096), - [anon_sym_to_string] = ACTIONS(2096), - [anon_sym_to_float] = ACTIONS(2096), - [anon_sym_bash] = ACTIONS(2096), - [anon_sym_fish] = ACTIONS(2096), - [anon_sym_raw] = ACTIONS(2096), - [anon_sym_sh] = ACTIONS(2096), - [anon_sym_zsh] = ACTIONS(2096), - [anon_sym_random] = ACTIONS(2096), - [anon_sym_random_boolean] = ACTIONS(2096), - [anon_sym_random_float] = ACTIONS(2096), - [anon_sym_random_integer] = ACTIONS(2096), - [anon_sym_columns] = ACTIONS(2096), - [anon_sym_rows] = ACTIONS(2096), - [anon_sym_reverse] = ACTIONS(2096), + [sym_block] = STATE(848), + [sym_statement] = STATE(61), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [420] = { - [ts_builtin_sym_end] = ACTIONS(2098), - [sym_identifier] = ACTIONS(2100), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2098), - [anon_sym_SEMI] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2098), - [anon_sym_RPAREN] = ACTIONS(2098), - [anon_sym_COMMA] = ACTIONS(2098), - [sym_integer] = ACTIONS(2100), - [sym_float] = ACTIONS(2098), - [sym_string] = ACTIONS(2098), - [anon_sym_true] = ACTIONS(2100), - [anon_sym_false] = ACTIONS(2100), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_RBRACK] = ACTIONS(2098), - [anon_sym_COLON] = ACTIONS(2098), - [anon_sym_DOT_DOT] = ACTIONS(2098), - [anon_sym_PLUS] = ACTIONS(2098), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_SLASH] = ACTIONS(2098), - [anon_sym_PERCENT] = ACTIONS(2098), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2100), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2100), - [anon_sym_elseif] = ACTIONS(2098), - [anon_sym_else] = ACTIONS(2100), - [anon_sym_match] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2098), - [anon_sym_while] = ACTIONS(2100), - [anon_sym_for] = ACTIONS(2100), - [anon_sym_transform] = ACTIONS(2100), - [anon_sym_filter] = ACTIONS(2100), - [anon_sym_find] = ACTIONS(2100), - [anon_sym_remove] = ACTIONS(2100), - [anon_sym_reduce] = ACTIONS(2100), - [anon_sym_select] = ACTIONS(2100), - [anon_sym_insert] = ACTIONS(2100), - [anon_sym_async] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_table] = ACTIONS(2100), - [anon_sym_assert] = ACTIONS(2100), - [anon_sym_assert_equal] = ACTIONS(2100), - [anon_sym_download] = ACTIONS(2100), - [anon_sym_help] = ACTIONS(2100), - [anon_sym_length] = ACTIONS(2100), - [anon_sym_output] = ACTIONS(2100), - [anon_sym_output_error] = ACTIONS(2100), - [anon_sym_type] = ACTIONS(2100), - [anon_sym_append] = ACTIONS(2100), - [anon_sym_metadata] = ACTIONS(2100), - [anon_sym_move] = ACTIONS(2100), - [anon_sym_read] = ACTIONS(2100), - [anon_sym_workdir] = ACTIONS(2100), - [anon_sym_write] = ACTIONS(2100), - [anon_sym_from_json] = ACTIONS(2100), - [anon_sym_to_json] = ACTIONS(2100), - [anon_sym_to_string] = ACTIONS(2100), - [anon_sym_to_float] = ACTIONS(2100), - [anon_sym_bash] = ACTIONS(2100), - [anon_sym_fish] = ACTIONS(2100), - [anon_sym_raw] = ACTIONS(2100), - [anon_sym_sh] = ACTIONS(2100), - [anon_sym_zsh] = ACTIONS(2100), - [anon_sym_random] = ACTIONS(2100), - [anon_sym_random_boolean] = ACTIONS(2100), - [anon_sym_random_float] = ACTIONS(2100), - [anon_sym_random_integer] = ACTIONS(2100), - [anon_sym_columns] = ACTIONS(2100), - [anon_sym_rows] = ACTIONS(2100), - [anon_sym_reverse] = ACTIONS(2100), + [sym_statement] = STATE(376), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3087), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [421] = { - [sym_else_if] = STATE(442), - [sym_else] = STATE(404), - [aux_sym_if_else_repeat1] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [sym_string] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_elseif] = ACTIONS(1990), - [anon_sym_else] = ACTIONS(1992), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_transform] = ACTIONS(1887), - [anon_sym_filter] = ACTIONS(1887), - [anon_sym_find] = ACTIONS(1887), - [anon_sym_remove] = ACTIONS(1887), - [anon_sym_reduce] = ACTIONS(1887), - [anon_sym_select] = ACTIONS(1887), - [anon_sym_insert] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_table] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_assert_equal] = ACTIONS(1887), - [anon_sym_download] = ACTIONS(1887), - [anon_sym_help] = ACTIONS(1887), - [anon_sym_length] = ACTIONS(1887), - [anon_sym_output] = ACTIONS(1887), - [anon_sym_output_error] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_append] = ACTIONS(1887), - [anon_sym_metadata] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_read] = ACTIONS(1887), - [anon_sym_workdir] = ACTIONS(1887), - [anon_sym_write] = ACTIONS(1887), - [anon_sym_from_json] = ACTIONS(1887), - [anon_sym_to_json] = ACTIONS(1887), - [anon_sym_to_string] = ACTIONS(1887), - [anon_sym_to_float] = ACTIONS(1887), - [anon_sym_bash] = ACTIONS(1887), - [anon_sym_fish] = ACTIONS(1887), - [anon_sym_raw] = ACTIONS(1887), - [anon_sym_sh] = ACTIONS(1887), - [anon_sym_zsh] = ACTIONS(1887), - [anon_sym_random] = ACTIONS(1887), - [anon_sym_random_boolean] = ACTIONS(1887), - [anon_sym_random_float] = ACTIONS(1887), - [anon_sym_random_integer] = ACTIONS(1887), - [anon_sym_columns] = ACTIONS(1887), - [anon_sym_rows] = ACTIONS(1887), - [anon_sym_reverse] = ACTIONS(1887), + [sym_block] = STATE(727), + [sym_statement] = STATE(17), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [422] = { - [sym_math_operator] = STATE(789), - [sym_logic_operator] = STATE(790), - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [sym_string] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(2102), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_elseif] = ACTIONS(1913), - [anon_sym_else] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_transform] = ACTIONS(1915), - [anon_sym_filter] = ACTIONS(1915), - [anon_sym_find] = ACTIONS(1915), - [anon_sym_remove] = ACTIONS(1915), - [anon_sym_reduce] = ACTIONS(1915), - [anon_sym_select] = ACTIONS(1915), - [anon_sym_insert] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_table] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_assert_equal] = ACTIONS(1915), - [anon_sym_download] = ACTIONS(1915), - [anon_sym_help] = ACTIONS(1915), - [anon_sym_length] = ACTIONS(1915), - [anon_sym_output] = ACTIONS(1915), - [anon_sym_output_error] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_append] = ACTIONS(1915), - [anon_sym_metadata] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_read] = ACTIONS(1915), - [anon_sym_workdir] = ACTIONS(1915), - [anon_sym_write] = ACTIONS(1915), - [anon_sym_from_json] = ACTIONS(1915), - [anon_sym_to_json] = ACTIONS(1915), - [anon_sym_to_string] = ACTIONS(1915), - [anon_sym_to_float] = ACTIONS(1915), - [anon_sym_bash] = ACTIONS(1915), - [anon_sym_fish] = ACTIONS(1915), - [anon_sym_raw] = ACTIONS(1915), - [anon_sym_sh] = ACTIONS(1915), - [anon_sym_zsh] = ACTIONS(1915), - [anon_sym_random] = ACTIONS(1915), - [anon_sym_random_boolean] = ACTIONS(1915), - [anon_sym_random_float] = ACTIONS(1915), - [anon_sym_random_integer] = ACTIONS(1915), - [anon_sym_columns] = ACTIONS(1915), - [anon_sym_rows] = ACTIONS(1915), - [anon_sym_reverse] = ACTIONS(1915), + [sym_block] = STATE(1011), + [sym_statement] = STATE(260), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3083), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [423] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(1885), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [sym_string] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_RBRACK] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_elseif] = ACTIONS(1885), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_transform] = ACTIONS(1887), - [anon_sym_filter] = ACTIONS(1887), - [anon_sym_find] = ACTIONS(1887), - [anon_sym_remove] = ACTIONS(1887), - [anon_sym_reduce] = ACTIONS(1887), - [anon_sym_select] = ACTIONS(1887), - [anon_sym_insert] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_table] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_assert_equal] = ACTIONS(1887), - [anon_sym_download] = ACTIONS(1887), - [anon_sym_help] = ACTIONS(1887), - [anon_sym_length] = ACTIONS(1887), - [anon_sym_output] = ACTIONS(1887), - [anon_sym_output_error] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_append] = ACTIONS(1887), - [anon_sym_metadata] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_read] = ACTIONS(1887), - [anon_sym_workdir] = ACTIONS(1887), - [anon_sym_write] = ACTIONS(1887), - [anon_sym_from_json] = ACTIONS(1887), - [anon_sym_to_json] = ACTIONS(1887), - [anon_sym_to_string] = ACTIONS(1887), - [anon_sym_to_float] = ACTIONS(1887), - [anon_sym_bash] = ACTIONS(1887), - [anon_sym_fish] = ACTIONS(1887), - [anon_sym_raw] = ACTIONS(1887), - [anon_sym_sh] = ACTIONS(1887), - [anon_sym_zsh] = ACTIONS(1887), - [anon_sym_random] = ACTIONS(1887), - [anon_sym_random_boolean] = ACTIONS(1887), - [anon_sym_random_float] = ACTIONS(1887), - [anon_sym_random_integer] = ACTIONS(1887), - [anon_sym_columns] = ACTIONS(1887), - [anon_sym_rows] = ACTIONS(1887), - [anon_sym_reverse] = ACTIONS(1887), + [sym_block] = STATE(799), + [sym_statement] = STATE(38), + [sym_expression] = STATE(779), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(655), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(724), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1860), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(341), + [aux_sym_block_repeat1] = STATE(38), + [sym_identifier] = ACTIONS(839), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(845), + [anon_sym_EQ_GT] = ACTIONS(847), + [anon_sym_while] = ACTIONS(849), + [anon_sym_for] = ACTIONS(851), + [anon_sym_asyncfor] = ACTIONS(853), + [anon_sym_transform] = ACTIONS(855), + [anon_sym_filter] = ACTIONS(857), + [anon_sym_find] = ACTIONS(859), + [anon_sym_remove] = ACTIONS(861), + [anon_sym_reduce] = ACTIONS(863), + [anon_sym_select] = ACTIONS(865), + [anon_sym_insert] = ACTIONS(867), + [anon_sym_async] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(871), + [anon_sym_assert] = ACTIONS(873), + [anon_sym_assert_equal] = ACTIONS(873), + [anon_sym_download] = ACTIONS(873), + [anon_sym_help] = ACTIONS(873), + [anon_sym_length] = ACTIONS(873), + [anon_sym_output] = ACTIONS(873), + [anon_sym_output_error] = ACTIONS(873), + [anon_sym_type] = ACTIONS(873), + [anon_sym_append] = ACTIONS(873), + [anon_sym_metadata] = ACTIONS(873), + [anon_sym_move] = ACTIONS(873), + [anon_sym_read] = ACTIONS(873), + [anon_sym_workdir] = ACTIONS(873), + [anon_sym_write] = ACTIONS(873), + [anon_sym_from_json] = ACTIONS(873), + [anon_sym_to_json] = ACTIONS(873), + [anon_sym_to_string] = ACTIONS(873), + [anon_sym_to_float] = ACTIONS(873), + [anon_sym_bash] = ACTIONS(873), + [anon_sym_fish] = ACTIONS(873), + [anon_sym_raw] = ACTIONS(873), + [anon_sym_sh] = ACTIONS(873), + [anon_sym_zsh] = ACTIONS(873), + [anon_sym_random] = ACTIONS(873), + [anon_sym_random_boolean] = ACTIONS(873), + [anon_sym_random_float] = ACTIONS(873), + [anon_sym_random_integer] = ACTIONS(873), + [anon_sym_columns] = ACTIONS(873), + [anon_sym_rows] = ACTIONS(873), + [anon_sym_reverse] = ACTIONS(873), }, [424] = { - [sym_math_operator] = STATE(789), - [sym_logic_operator] = STATE(790), - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(1964), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_elseif] = ACTIONS(1964), - [anon_sym_else] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [sym_block] = STATE(1055), + [sym_statement] = STATE(381), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [425] = { - [sym_math_operator] = STATE(660), - [sym_logic_operator] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1926), - [anon_sym_COMMA] = ACTIONS(1926), - [sym_integer] = ACTIONS(1928), - [sym_float] = ACTIONS(1926), - [sym_string] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_RBRACK] = ACTIONS(1926), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(1926), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_transform] = ACTIONS(1928), - [anon_sym_filter] = ACTIONS(1928), - [anon_sym_find] = ACTIONS(1928), - [anon_sym_remove] = ACTIONS(1928), - [anon_sym_reduce] = ACTIONS(1928), - [anon_sym_select] = ACTIONS(1928), - [anon_sym_insert] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_table] = ACTIONS(1928), - [anon_sym_assert] = ACTIONS(1928), - [anon_sym_assert_equal] = ACTIONS(1928), - [anon_sym_download] = ACTIONS(1928), - [anon_sym_help] = ACTIONS(1928), - [anon_sym_length] = ACTIONS(1928), - [anon_sym_output] = ACTIONS(1928), - [anon_sym_output_error] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_append] = ACTIONS(1928), - [anon_sym_metadata] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_read] = ACTIONS(1928), - [anon_sym_workdir] = ACTIONS(1928), - [anon_sym_write] = ACTIONS(1928), - [anon_sym_from_json] = ACTIONS(1928), - [anon_sym_to_json] = ACTIONS(1928), - [anon_sym_to_string] = ACTIONS(1928), - [anon_sym_to_float] = ACTIONS(1928), - [anon_sym_bash] = ACTIONS(1928), - [anon_sym_fish] = ACTIONS(1928), - [anon_sym_raw] = ACTIONS(1928), - [anon_sym_sh] = ACTIONS(1928), - [anon_sym_zsh] = ACTIONS(1928), - [anon_sym_random] = ACTIONS(1928), - [anon_sym_random_boolean] = ACTIONS(1928), - [anon_sym_random_float] = ACTIONS(1928), - [anon_sym_random_integer] = ACTIONS(1928), - [anon_sym_columns] = ACTIONS(1928), - [anon_sym_rows] = ACTIONS(1928), - [anon_sym_reverse] = ACTIONS(1928), + [sym_block] = STATE(788), + [sym_statement] = STATE(51), + [sym_expression] = STATE(817), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(748), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(760), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(1280), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_asyncfor] = ACTIONS(1294), + [anon_sym_transform] = ACTIONS(1296), + [anon_sym_filter] = ACTIONS(1298), + [anon_sym_find] = ACTIONS(1300), + [anon_sym_remove] = ACTIONS(1302), + [anon_sym_reduce] = ACTIONS(1304), + [anon_sym_select] = ACTIONS(1306), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [426] = { - [ts_builtin_sym_end] = ACTIONS(2104), - [sym_identifier] = ACTIONS(2106), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(2104), - [anon_sym_COMMA] = ACTIONS(2104), - [sym_integer] = ACTIONS(2106), - [sym_float] = ACTIONS(2104), - [sym_string] = ACTIONS(2104), - [anon_sym_true] = ACTIONS(2106), - [anon_sym_false] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2104), - [anon_sym_RBRACK] = ACTIONS(2104), - [anon_sym_COLON] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2104), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_SLASH] = ACTIONS(2104), - [anon_sym_PERCENT] = ACTIONS(2104), - [anon_sym_EQ_EQ] = ACTIONS(2104), - [anon_sym_BANG_EQ] = ACTIONS(2104), - [anon_sym_AMP_AMP] = ACTIONS(2104), - [anon_sym_PIPE_PIPE] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(2106), - [anon_sym_GT_EQ] = ACTIONS(2104), - [anon_sym_LT_EQ] = ACTIONS(2104), - [anon_sym_if] = ACTIONS(2106), - [anon_sym_elseif] = ACTIONS(2104), - [anon_sym_else] = ACTIONS(2106), - [anon_sym_match] = ACTIONS(2106), - [anon_sym_EQ_GT] = ACTIONS(2104), - [anon_sym_while] = ACTIONS(2106), - [anon_sym_for] = ACTIONS(2106), - [anon_sym_transform] = ACTIONS(2106), - [anon_sym_filter] = ACTIONS(2106), - [anon_sym_find] = ACTIONS(2106), - [anon_sym_remove] = ACTIONS(2106), - [anon_sym_reduce] = ACTIONS(2106), - [anon_sym_select] = ACTIONS(2106), - [anon_sym_insert] = ACTIONS(2106), - [anon_sym_async] = ACTIONS(2106), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_table] = ACTIONS(2106), - [anon_sym_assert] = ACTIONS(2106), - [anon_sym_assert_equal] = ACTIONS(2106), - [anon_sym_download] = ACTIONS(2106), - [anon_sym_help] = ACTIONS(2106), - [anon_sym_length] = ACTIONS(2106), - [anon_sym_output] = ACTIONS(2106), - [anon_sym_output_error] = ACTIONS(2106), - [anon_sym_type] = ACTIONS(2106), - [anon_sym_append] = ACTIONS(2106), - [anon_sym_metadata] = ACTIONS(2106), - [anon_sym_move] = ACTIONS(2106), - [anon_sym_read] = ACTIONS(2106), - [anon_sym_workdir] = ACTIONS(2106), - [anon_sym_write] = ACTIONS(2106), - [anon_sym_from_json] = ACTIONS(2106), - [anon_sym_to_json] = ACTIONS(2106), - [anon_sym_to_string] = ACTIONS(2106), - [anon_sym_to_float] = ACTIONS(2106), - [anon_sym_bash] = ACTIONS(2106), - [anon_sym_fish] = ACTIONS(2106), - [anon_sym_raw] = ACTIONS(2106), - [anon_sym_sh] = ACTIONS(2106), - [anon_sym_zsh] = ACTIONS(2106), - [anon_sym_random] = ACTIONS(2106), - [anon_sym_random_boolean] = ACTIONS(2106), - [anon_sym_random_float] = ACTIONS(2106), - [anon_sym_random_integer] = ACTIONS(2106), - [anon_sym_columns] = ACTIONS(2106), - [anon_sym_rows] = ACTIONS(2106), - [anon_sym_reverse] = ACTIONS(2106), + [sym_block] = STATE(765), + [sym_statement] = STATE(33), + [sym_expression] = STATE(732), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(620), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(654), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(33), + [sym_identifier] = ACTIONS(623), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(629), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_asyncfor] = ACTIONS(637), + [anon_sym_transform] = ACTIONS(639), + [anon_sym_filter] = ACTIONS(641), + [anon_sym_find] = ACTIONS(643), + [anon_sym_remove] = ACTIONS(645), + [anon_sym_reduce] = ACTIONS(647), + [anon_sym_select] = ACTIONS(649), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [427] = { - [ts_builtin_sym_end] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2110), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_RBRACE] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2108), - [anon_sym_LPAREN] = ACTIONS(2108), - [anon_sym_RPAREN] = ACTIONS(2108), - [anon_sym_COMMA] = ACTIONS(2108), - [sym_integer] = ACTIONS(2110), - [sym_float] = ACTIONS(2108), - [sym_string] = ACTIONS(2108), - [anon_sym_true] = ACTIONS(2110), - [anon_sym_false] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_RBRACK] = ACTIONS(2108), - [anon_sym_COLON] = ACTIONS(2108), - [anon_sym_DOT_DOT] = ACTIONS(2108), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_STAR] = ACTIONS(2108), - [anon_sym_SLASH] = ACTIONS(2108), - [anon_sym_PERCENT] = ACTIONS(2108), - [anon_sym_EQ_EQ] = ACTIONS(2108), - [anon_sym_BANG_EQ] = ACTIONS(2108), - [anon_sym_AMP_AMP] = ACTIONS(2108), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2110), - [anon_sym_GT_EQ] = ACTIONS(2108), - [anon_sym_LT_EQ] = ACTIONS(2108), - [anon_sym_if] = ACTIONS(2110), - [anon_sym_elseif] = ACTIONS(2108), - [anon_sym_else] = ACTIONS(2110), - [anon_sym_match] = ACTIONS(2110), - [anon_sym_EQ_GT] = ACTIONS(2108), - [anon_sym_while] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(2110), - [anon_sym_transform] = ACTIONS(2110), - [anon_sym_filter] = ACTIONS(2110), - [anon_sym_find] = ACTIONS(2110), - [anon_sym_remove] = ACTIONS(2110), - [anon_sym_reduce] = ACTIONS(2110), - [anon_sym_select] = ACTIONS(2110), - [anon_sym_insert] = ACTIONS(2110), - [anon_sym_async] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(2110), - [anon_sym_table] = ACTIONS(2110), - [anon_sym_assert] = ACTIONS(2110), - [anon_sym_assert_equal] = ACTIONS(2110), - [anon_sym_download] = ACTIONS(2110), - [anon_sym_help] = ACTIONS(2110), - [anon_sym_length] = ACTIONS(2110), - [anon_sym_output] = ACTIONS(2110), - [anon_sym_output_error] = ACTIONS(2110), - [anon_sym_type] = ACTIONS(2110), - [anon_sym_append] = ACTIONS(2110), - [anon_sym_metadata] = ACTIONS(2110), - [anon_sym_move] = ACTIONS(2110), - [anon_sym_read] = ACTIONS(2110), - [anon_sym_workdir] = ACTIONS(2110), - [anon_sym_write] = ACTIONS(2110), - [anon_sym_from_json] = ACTIONS(2110), - [anon_sym_to_json] = ACTIONS(2110), - [anon_sym_to_string] = ACTIONS(2110), - [anon_sym_to_float] = ACTIONS(2110), - [anon_sym_bash] = ACTIONS(2110), - [anon_sym_fish] = ACTIONS(2110), - [anon_sym_raw] = ACTIONS(2110), - [anon_sym_sh] = ACTIONS(2110), - [anon_sym_zsh] = ACTIONS(2110), - [anon_sym_random] = ACTIONS(2110), - [anon_sym_random_boolean] = ACTIONS(2110), - [anon_sym_random_float] = ACTIONS(2110), - [anon_sym_random_integer] = ACTIONS(2110), - [anon_sym_columns] = ACTIONS(2110), - [anon_sym_rows] = ACTIONS(2110), - [anon_sym_reverse] = ACTIONS(2110), + [sym_statement] = STATE(376), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [428] = { - [ts_builtin_sym_end] = ACTIONS(2112), - [sym_identifier] = ACTIONS(2114), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2112), - [anon_sym_LPAREN] = ACTIONS(2112), - [anon_sym_RPAREN] = ACTIONS(2112), - [anon_sym_COMMA] = ACTIONS(2112), - [sym_integer] = ACTIONS(2114), - [sym_float] = ACTIONS(2112), - [sym_string] = ACTIONS(2112), - [anon_sym_true] = ACTIONS(2114), - [anon_sym_false] = ACTIONS(2114), - [anon_sym_LBRACK] = ACTIONS(2112), - [anon_sym_RBRACK] = ACTIONS(2112), - [anon_sym_COLON] = ACTIONS(2112), - [anon_sym_DOT_DOT] = ACTIONS(2112), - [anon_sym_PLUS] = ACTIONS(2112), - [anon_sym_DASH] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2112), - [anon_sym_SLASH] = ACTIONS(2112), - [anon_sym_PERCENT] = ACTIONS(2112), - [anon_sym_EQ_EQ] = ACTIONS(2112), - [anon_sym_BANG_EQ] = ACTIONS(2112), - [anon_sym_AMP_AMP] = ACTIONS(2112), - [anon_sym_PIPE_PIPE] = ACTIONS(2112), - [anon_sym_GT] = ACTIONS(2114), - [anon_sym_LT] = ACTIONS(2114), - [anon_sym_GT_EQ] = ACTIONS(2112), - [anon_sym_LT_EQ] = ACTIONS(2112), - [anon_sym_if] = ACTIONS(2114), - [anon_sym_elseif] = ACTIONS(2112), - [anon_sym_else] = ACTIONS(2114), - [anon_sym_match] = ACTIONS(2114), - [anon_sym_EQ_GT] = ACTIONS(2112), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_transform] = ACTIONS(2114), - [anon_sym_filter] = ACTIONS(2114), - [anon_sym_find] = ACTIONS(2114), - [anon_sym_remove] = ACTIONS(2114), - [anon_sym_reduce] = ACTIONS(2114), - [anon_sym_select] = ACTIONS(2114), - [anon_sym_insert] = ACTIONS(2114), - [anon_sym_async] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_table] = ACTIONS(2114), - [anon_sym_assert] = ACTIONS(2114), - [anon_sym_assert_equal] = ACTIONS(2114), - [anon_sym_download] = ACTIONS(2114), - [anon_sym_help] = ACTIONS(2114), - [anon_sym_length] = ACTIONS(2114), - [anon_sym_output] = ACTIONS(2114), - [anon_sym_output_error] = ACTIONS(2114), - [anon_sym_type] = ACTIONS(2114), - [anon_sym_append] = ACTIONS(2114), - [anon_sym_metadata] = ACTIONS(2114), - [anon_sym_move] = ACTIONS(2114), - [anon_sym_read] = ACTIONS(2114), - [anon_sym_workdir] = ACTIONS(2114), - [anon_sym_write] = ACTIONS(2114), - [anon_sym_from_json] = ACTIONS(2114), - [anon_sym_to_json] = ACTIONS(2114), - [anon_sym_to_string] = ACTIONS(2114), - [anon_sym_to_float] = ACTIONS(2114), - [anon_sym_bash] = ACTIONS(2114), - [anon_sym_fish] = ACTIONS(2114), - [anon_sym_raw] = ACTIONS(2114), - [anon_sym_sh] = ACTIONS(2114), - [anon_sym_zsh] = ACTIONS(2114), - [anon_sym_random] = ACTIONS(2114), - [anon_sym_random_boolean] = ACTIONS(2114), - [anon_sym_random_float] = ACTIONS(2114), - [anon_sym_random_integer] = ACTIONS(2114), - [anon_sym_columns] = ACTIONS(2114), - [anon_sym_rows] = ACTIONS(2114), - [anon_sym_reverse] = ACTIONS(2114), + [sym_block] = STATE(606), + [sym_statement] = STATE(10), + [sym_expression] = STATE(571), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(558), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [429] = { - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_RBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(1964), - [anon_sym_DOT_DOT] = ACTIONS(1964), - [anon_sym_PLUS] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_SLASH] = ACTIONS(1964), - [anon_sym_PERCENT] = ACTIONS(1964), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_GT] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_GT_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_elseif] = ACTIONS(1964), - [anon_sym_else] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [sym_block] = STATE(1545), + [sym_statement] = STATE(255), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [430] = { - [ts_builtin_sym_end] = ACTIONS(2116), - [sym_identifier] = ACTIONS(2118), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2116), - [anon_sym_RBRACE] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_LPAREN] = ACTIONS(2116), - [anon_sym_RPAREN] = ACTIONS(2116), - [anon_sym_COMMA] = ACTIONS(2116), - [sym_integer] = ACTIONS(2118), - [sym_float] = ACTIONS(2116), - [sym_string] = ACTIONS(2116), - [anon_sym_true] = ACTIONS(2118), - [anon_sym_false] = ACTIONS(2118), - [anon_sym_LBRACK] = ACTIONS(2116), - [anon_sym_RBRACK] = ACTIONS(2116), - [anon_sym_COLON] = ACTIONS(2116), - [anon_sym_DOT_DOT] = ACTIONS(2116), - [anon_sym_PLUS] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2118), - [anon_sym_STAR] = ACTIONS(2116), - [anon_sym_SLASH] = ACTIONS(2116), - [anon_sym_PERCENT] = ACTIONS(2116), - [anon_sym_EQ_EQ] = ACTIONS(2116), - [anon_sym_BANG_EQ] = ACTIONS(2116), - [anon_sym_AMP_AMP] = ACTIONS(2116), - [anon_sym_PIPE_PIPE] = ACTIONS(2116), - [anon_sym_GT] = ACTIONS(2118), - [anon_sym_LT] = ACTIONS(2118), - [anon_sym_GT_EQ] = ACTIONS(2116), - [anon_sym_LT_EQ] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2118), - [anon_sym_elseif] = ACTIONS(2116), - [anon_sym_else] = ACTIONS(2118), - [anon_sym_match] = ACTIONS(2118), - [anon_sym_EQ_GT] = ACTIONS(2116), - [anon_sym_while] = ACTIONS(2118), - [anon_sym_for] = ACTIONS(2118), - [anon_sym_transform] = ACTIONS(2118), - [anon_sym_filter] = ACTIONS(2118), - [anon_sym_find] = ACTIONS(2118), - [anon_sym_remove] = ACTIONS(2118), - [anon_sym_reduce] = ACTIONS(2118), - [anon_sym_select] = ACTIONS(2118), - [anon_sym_insert] = ACTIONS(2118), - [anon_sym_async] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2118), - [anon_sym_table] = ACTIONS(2118), - [anon_sym_assert] = ACTIONS(2118), - [anon_sym_assert_equal] = ACTIONS(2118), - [anon_sym_download] = ACTIONS(2118), - [anon_sym_help] = ACTIONS(2118), - [anon_sym_length] = ACTIONS(2118), - [anon_sym_output] = ACTIONS(2118), - [anon_sym_output_error] = ACTIONS(2118), - [anon_sym_type] = ACTIONS(2118), - [anon_sym_append] = ACTIONS(2118), - [anon_sym_metadata] = ACTIONS(2118), - [anon_sym_move] = ACTIONS(2118), - [anon_sym_read] = ACTIONS(2118), - [anon_sym_workdir] = ACTIONS(2118), - [anon_sym_write] = ACTIONS(2118), - [anon_sym_from_json] = ACTIONS(2118), - [anon_sym_to_json] = ACTIONS(2118), - [anon_sym_to_string] = ACTIONS(2118), - [anon_sym_to_float] = ACTIONS(2118), - [anon_sym_bash] = ACTIONS(2118), - [anon_sym_fish] = ACTIONS(2118), - [anon_sym_raw] = ACTIONS(2118), - [anon_sym_sh] = ACTIONS(2118), - [anon_sym_zsh] = ACTIONS(2118), - [anon_sym_random] = ACTIONS(2118), - [anon_sym_random_boolean] = ACTIONS(2118), - [anon_sym_random_float] = ACTIONS(2118), - [anon_sym_random_integer] = ACTIONS(2118), - [anon_sym_columns] = ACTIONS(2118), - [anon_sym_rows] = ACTIONS(2118), - [anon_sym_reverse] = ACTIONS(2118), + [sym_block] = STATE(1524), + [sym_statement] = STATE(43), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(43), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [431] = { - [sym_math_operator] = STATE(789), - [sym_logic_operator] = STATE(790), - [ts_builtin_sym_end] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1949), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1947), - [sym_string] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_elseif] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_transform] = ACTIONS(1949), - [anon_sym_filter] = ACTIONS(1949), - [anon_sym_find] = ACTIONS(1949), - [anon_sym_remove] = ACTIONS(1949), - [anon_sym_reduce] = ACTIONS(1949), - [anon_sym_select] = ACTIONS(1949), - [anon_sym_insert] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_table] = ACTIONS(1949), - [anon_sym_assert] = ACTIONS(1949), - [anon_sym_assert_equal] = ACTIONS(1949), - [anon_sym_download] = ACTIONS(1949), - [anon_sym_help] = ACTIONS(1949), - [anon_sym_length] = ACTIONS(1949), - [anon_sym_output] = ACTIONS(1949), - [anon_sym_output_error] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_append] = ACTIONS(1949), - [anon_sym_metadata] = ACTIONS(1949), - [anon_sym_move] = ACTIONS(1949), - [anon_sym_read] = ACTIONS(1949), - [anon_sym_workdir] = ACTIONS(1949), - [anon_sym_write] = ACTIONS(1949), - [anon_sym_from_json] = ACTIONS(1949), - [anon_sym_to_json] = ACTIONS(1949), - [anon_sym_to_string] = ACTIONS(1949), - [anon_sym_to_float] = ACTIONS(1949), - [anon_sym_bash] = ACTIONS(1949), - [anon_sym_fish] = ACTIONS(1949), - [anon_sym_raw] = ACTIONS(1949), - [anon_sym_sh] = ACTIONS(1949), - [anon_sym_zsh] = ACTIONS(1949), - [anon_sym_random] = ACTIONS(1949), - [anon_sym_random_boolean] = ACTIONS(1949), - [anon_sym_random_float] = ACTIONS(1949), - [anon_sym_random_integer] = ACTIONS(1949), - [anon_sym_columns] = ACTIONS(1949), - [anon_sym_rows] = ACTIONS(1949), - [anon_sym_reverse] = ACTIONS(1949), + [sym_block] = STATE(727), + [sym_statement] = STATE(35), + [sym_expression] = STATE(701), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(582), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1866), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(320), + [aux_sym_block_repeat1] = STATE(35), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(497), + [anon_sym_EQ_GT] = ACTIONS(499), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_asyncfor] = ACTIONS(505), + [anon_sym_transform] = ACTIONS(507), + [anon_sym_filter] = ACTIONS(509), + [anon_sym_find] = ACTIONS(511), + [anon_sym_remove] = ACTIONS(513), + [anon_sym_reduce] = ACTIONS(515), + [anon_sym_select] = ACTIONS(517), + [anon_sym_insert] = ACTIONS(519), + [anon_sym_async] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(525), + [anon_sym_assert_equal] = ACTIONS(525), + [anon_sym_download] = ACTIONS(525), + [anon_sym_help] = ACTIONS(525), + [anon_sym_length] = ACTIONS(525), + [anon_sym_output] = ACTIONS(525), + [anon_sym_output_error] = ACTIONS(525), + [anon_sym_type] = ACTIONS(525), + [anon_sym_append] = ACTIONS(525), + [anon_sym_metadata] = ACTIONS(525), + [anon_sym_move] = ACTIONS(525), + [anon_sym_read] = ACTIONS(525), + [anon_sym_workdir] = ACTIONS(525), + [anon_sym_write] = ACTIONS(525), + [anon_sym_from_json] = ACTIONS(525), + [anon_sym_to_json] = ACTIONS(525), + [anon_sym_to_string] = ACTIONS(525), + [anon_sym_to_float] = ACTIONS(525), + [anon_sym_bash] = ACTIONS(525), + [anon_sym_fish] = ACTIONS(525), + [anon_sym_raw] = ACTIONS(525), + [anon_sym_sh] = ACTIONS(525), + [anon_sym_zsh] = ACTIONS(525), + [anon_sym_random] = ACTIONS(525), + [anon_sym_random_boolean] = ACTIONS(525), + [anon_sym_random_float] = ACTIONS(525), + [anon_sym_random_integer] = ACTIONS(525), + [anon_sym_columns] = ACTIONS(525), + [anon_sym_rows] = ACTIONS(525), + [anon_sym_reverse] = ACTIONS(525), }, [432] = { - [sym_math_operator] = STATE(789), - [sym_logic_operator] = STATE(790), - [ts_builtin_sym_end] = ACTIONS(1951), - [sym_identifier] = ACTIONS(1953), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1951), - [sym_string] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_elseif] = ACTIONS(1951), - [anon_sym_else] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_transform] = ACTIONS(1953), - [anon_sym_filter] = ACTIONS(1953), - [anon_sym_find] = ACTIONS(1953), - [anon_sym_remove] = ACTIONS(1953), - [anon_sym_reduce] = ACTIONS(1953), - [anon_sym_select] = ACTIONS(1953), - [anon_sym_insert] = ACTIONS(1953), - [anon_sym_async] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_table] = ACTIONS(1953), - [anon_sym_assert] = ACTIONS(1953), - [anon_sym_assert_equal] = ACTIONS(1953), - [anon_sym_download] = ACTIONS(1953), - [anon_sym_help] = ACTIONS(1953), - [anon_sym_length] = ACTIONS(1953), - [anon_sym_output] = ACTIONS(1953), - [anon_sym_output_error] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_append] = ACTIONS(1953), - [anon_sym_metadata] = ACTIONS(1953), - [anon_sym_move] = ACTIONS(1953), - [anon_sym_read] = ACTIONS(1953), - [anon_sym_workdir] = ACTIONS(1953), - [anon_sym_write] = ACTIONS(1953), - [anon_sym_from_json] = ACTIONS(1953), - [anon_sym_to_json] = ACTIONS(1953), - [anon_sym_to_string] = ACTIONS(1953), - [anon_sym_to_float] = ACTIONS(1953), - [anon_sym_bash] = ACTIONS(1953), - [anon_sym_fish] = ACTIONS(1953), - [anon_sym_raw] = ACTIONS(1953), - [anon_sym_sh] = ACTIONS(1953), - [anon_sym_zsh] = ACTIONS(1953), - [anon_sym_random] = ACTIONS(1953), - [anon_sym_random_boolean] = ACTIONS(1953), - [anon_sym_random_float] = ACTIONS(1953), - [anon_sym_random_integer] = ACTIONS(1953), - [anon_sym_columns] = ACTIONS(1953), - [anon_sym_rows] = ACTIONS(1953), - [anon_sym_reverse] = ACTIONS(1953), + [sym_block] = STATE(603), + [sym_statement] = STATE(10), + [sym_expression] = STATE(571), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(558), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [433] = { - [ts_builtin_sym_end] = ACTIONS(2120), - [sym_identifier] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_LPAREN] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2120), - [anon_sym_COMMA] = ACTIONS(2120), - [sym_integer] = ACTIONS(2122), - [sym_float] = ACTIONS(2120), - [sym_string] = ACTIONS(2120), - [anon_sym_true] = ACTIONS(2122), - [anon_sym_false] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2120), - [anon_sym_RBRACK] = ACTIONS(2120), - [anon_sym_COLON] = ACTIONS(2120), - [anon_sym_DOT_DOT] = ACTIONS(2120), - [anon_sym_PLUS] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_SLASH] = ACTIONS(2120), - [anon_sym_PERCENT] = ACTIONS(2120), - [anon_sym_EQ_EQ] = ACTIONS(2120), - [anon_sym_BANG_EQ] = ACTIONS(2120), - [anon_sym_AMP_AMP] = ACTIONS(2120), - [anon_sym_PIPE_PIPE] = ACTIONS(2120), - [anon_sym_GT] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_GT_EQ] = ACTIONS(2120), - [anon_sym_LT_EQ] = ACTIONS(2120), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_elseif] = ACTIONS(2120), - [anon_sym_else] = ACTIONS(2122), - [anon_sym_match] = ACTIONS(2122), - [anon_sym_EQ_GT] = ACTIONS(2120), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_transform] = ACTIONS(2122), - [anon_sym_filter] = ACTIONS(2122), - [anon_sym_find] = ACTIONS(2122), - [anon_sym_remove] = ACTIONS(2122), - [anon_sym_reduce] = ACTIONS(2122), - [anon_sym_select] = ACTIONS(2122), - [anon_sym_insert] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_table] = ACTIONS(2122), - [anon_sym_assert] = ACTIONS(2122), - [anon_sym_assert_equal] = ACTIONS(2122), - [anon_sym_download] = ACTIONS(2122), - [anon_sym_help] = ACTIONS(2122), - [anon_sym_length] = ACTIONS(2122), - [anon_sym_output] = ACTIONS(2122), - [anon_sym_output_error] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_append] = ACTIONS(2122), - [anon_sym_metadata] = ACTIONS(2122), - [anon_sym_move] = ACTIONS(2122), - [anon_sym_read] = ACTIONS(2122), - [anon_sym_workdir] = ACTIONS(2122), - [anon_sym_write] = ACTIONS(2122), - [anon_sym_from_json] = ACTIONS(2122), - [anon_sym_to_json] = ACTIONS(2122), - [anon_sym_to_string] = ACTIONS(2122), - [anon_sym_to_float] = ACTIONS(2122), - [anon_sym_bash] = ACTIONS(2122), - [anon_sym_fish] = ACTIONS(2122), - [anon_sym_raw] = ACTIONS(2122), - [anon_sym_sh] = ACTIONS(2122), - [anon_sym_zsh] = ACTIONS(2122), - [anon_sym_random] = ACTIONS(2122), - [anon_sym_random_boolean] = ACTIONS(2122), - [anon_sym_random_float] = ACTIONS(2122), - [anon_sym_random_integer] = ACTIONS(2122), - [anon_sym_columns] = ACTIONS(2122), - [anon_sym_rows] = ACTIONS(2122), - [anon_sym_reverse] = ACTIONS(2122), + [sym_block] = STATE(1059), + [sym_statement] = STATE(382), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(382), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [434] = { - [sym_math_operator] = STATE(660), - [sym_logic_operator] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [sym_string] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_transform] = ACTIONS(1915), - [anon_sym_filter] = ACTIONS(1915), - [anon_sym_find] = ACTIONS(1915), - [anon_sym_remove] = ACTIONS(1915), - [anon_sym_reduce] = ACTIONS(1915), - [anon_sym_select] = ACTIONS(1915), - [anon_sym_insert] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_table] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_assert_equal] = ACTIONS(1915), - [anon_sym_download] = ACTIONS(1915), - [anon_sym_help] = ACTIONS(1915), - [anon_sym_length] = ACTIONS(1915), - [anon_sym_output] = ACTIONS(1915), - [anon_sym_output_error] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_append] = ACTIONS(1915), - [anon_sym_metadata] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_read] = ACTIONS(1915), - [anon_sym_workdir] = ACTIONS(1915), - [anon_sym_write] = ACTIONS(1915), - [anon_sym_from_json] = ACTIONS(1915), - [anon_sym_to_json] = ACTIONS(1915), - [anon_sym_to_string] = ACTIONS(1915), - [anon_sym_to_float] = ACTIONS(1915), - [anon_sym_bash] = ACTIONS(1915), - [anon_sym_fish] = ACTIONS(1915), - [anon_sym_raw] = ACTIONS(1915), - [anon_sym_sh] = ACTIONS(1915), - [anon_sym_zsh] = ACTIONS(1915), - [anon_sym_random] = ACTIONS(1915), - [anon_sym_random_boolean] = ACTIONS(1915), - [anon_sym_random_float] = ACTIONS(1915), - [anon_sym_random_integer] = ACTIONS(1915), - [anon_sym_columns] = ACTIONS(1915), - [anon_sym_rows] = ACTIONS(1915), - [anon_sym_reverse] = ACTIONS(1915), + [sym_block] = STATE(1543), + [sym_statement] = STATE(259), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(259), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [435] = { - [sym_math_operator] = STATE(773), - [sym_logic_operator] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1930), - [sym_string] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_COLON] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1930), - [anon_sym_PIPE_PIPE] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_elseif] = ACTIONS(1930), - [anon_sym_else] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_transform] = ACTIONS(1932), - [anon_sym_filter] = ACTIONS(1932), - [anon_sym_find] = ACTIONS(1932), - [anon_sym_remove] = ACTIONS(1932), - [anon_sym_reduce] = ACTIONS(1932), - [anon_sym_select] = ACTIONS(1932), - [anon_sym_insert] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_table] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_assert_equal] = ACTIONS(1932), - [anon_sym_download] = ACTIONS(1932), - [anon_sym_help] = ACTIONS(1932), - [anon_sym_length] = ACTIONS(1932), - [anon_sym_output] = ACTIONS(1932), - [anon_sym_output_error] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_append] = ACTIONS(1932), - [anon_sym_metadata] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_read] = ACTIONS(1932), - [anon_sym_workdir] = ACTIONS(1932), - [anon_sym_write] = ACTIONS(1932), - [anon_sym_from_json] = ACTIONS(1932), - [anon_sym_to_json] = ACTIONS(1932), - [anon_sym_to_string] = ACTIONS(1932), - [anon_sym_to_float] = ACTIONS(1932), - [anon_sym_bash] = ACTIONS(1932), - [anon_sym_fish] = ACTIONS(1932), - [anon_sym_raw] = ACTIONS(1932), - [anon_sym_sh] = ACTIONS(1932), - [anon_sym_zsh] = ACTIONS(1932), - [anon_sym_random] = ACTIONS(1932), - [anon_sym_random_boolean] = ACTIONS(1932), - [anon_sym_random_float] = ACTIONS(1932), - [anon_sym_random_integer] = ACTIONS(1932), - [anon_sym_columns] = ACTIONS(1932), - [anon_sym_rows] = ACTIONS(1932), - [anon_sym_reverse] = ACTIONS(1932), + [sym_block] = STATE(604), + [sym_statement] = STATE(10), + [sym_expression] = STATE(571), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(558), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [436] = { - [sym_math_operator] = STATE(773), - [sym_logic_operator] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(1951), - [sym_identifier] = ACTIONS(1953), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1951), - [sym_string] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_elseif] = ACTIONS(1951), - [anon_sym_else] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_transform] = ACTIONS(1953), - [anon_sym_filter] = ACTIONS(1953), - [anon_sym_find] = ACTIONS(1953), - [anon_sym_remove] = ACTIONS(1953), - [anon_sym_reduce] = ACTIONS(1953), - [anon_sym_select] = ACTIONS(1953), - [anon_sym_insert] = ACTIONS(1953), - [anon_sym_async] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_table] = ACTIONS(1953), - [anon_sym_assert] = ACTIONS(1953), - [anon_sym_assert_equal] = ACTIONS(1953), - [anon_sym_download] = ACTIONS(1953), - [anon_sym_help] = ACTIONS(1953), - [anon_sym_length] = ACTIONS(1953), - [anon_sym_output] = ACTIONS(1953), - [anon_sym_output_error] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_append] = ACTIONS(1953), - [anon_sym_metadata] = ACTIONS(1953), - [anon_sym_move] = ACTIONS(1953), - [anon_sym_read] = ACTIONS(1953), - [anon_sym_workdir] = ACTIONS(1953), - [anon_sym_write] = ACTIONS(1953), - [anon_sym_from_json] = ACTIONS(1953), - [anon_sym_to_json] = ACTIONS(1953), - [anon_sym_to_string] = ACTIONS(1953), - [anon_sym_to_float] = ACTIONS(1953), - [anon_sym_bash] = ACTIONS(1953), - [anon_sym_fish] = ACTIONS(1953), - [anon_sym_raw] = ACTIONS(1953), - [anon_sym_sh] = ACTIONS(1953), - [anon_sym_zsh] = ACTIONS(1953), - [anon_sym_random] = ACTIONS(1953), - [anon_sym_random_boolean] = ACTIONS(1953), - [anon_sym_random_float] = ACTIONS(1953), - [anon_sym_random_integer] = ACTIONS(1953), - [anon_sym_columns] = ACTIONS(1953), - [anon_sym_rows] = ACTIONS(1953), - [anon_sym_reverse] = ACTIONS(1953), + [sym_block] = STATE(1528), + [sym_statement] = STATE(43), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(43), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [437] = { - [sym_expression] = STATE(942), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_elseif] = ACTIONS(1257), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(2124), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [sym_block] = STATE(765), + [sym_statement] = STATE(51), + [sym_expression] = STATE(817), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(748), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(760), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(1280), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_asyncfor] = ACTIONS(1294), + [anon_sym_transform] = ACTIONS(1296), + [anon_sym_filter] = ACTIONS(1298), + [anon_sym_find] = ACTIONS(1300), + [anon_sym_remove] = ACTIONS(1302), + [anon_sym_reduce] = ACTIONS(1304), + [anon_sym_select] = ACTIONS(1306), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [438] = { - [sym_expression] = STATE(559), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(376), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(1237), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [sym_block] = STATE(606), + [sym_statement] = STATE(27), + [sym_expression] = STATE(663), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(637), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1998), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(296), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(313), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_asyncfor] = ACTIONS(321), + [anon_sym_transform] = ACTIONS(323), + [anon_sym_filter] = ACTIONS(325), + [anon_sym_find] = ACTIONS(327), + [anon_sym_remove] = ACTIONS(329), + [anon_sym_reduce] = ACTIONS(331), + [anon_sym_select] = ACTIONS(333), + [anon_sym_insert] = ACTIONS(335), + [anon_sym_async] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(341), + [anon_sym_assert_equal] = ACTIONS(341), + [anon_sym_download] = ACTIONS(341), + [anon_sym_help] = ACTIONS(341), + [anon_sym_length] = ACTIONS(341), + [anon_sym_output] = ACTIONS(341), + [anon_sym_output_error] = ACTIONS(341), + [anon_sym_type] = ACTIONS(341), + [anon_sym_append] = ACTIONS(341), + [anon_sym_metadata] = ACTIONS(341), + [anon_sym_move] = ACTIONS(341), + [anon_sym_read] = ACTIONS(341), + [anon_sym_workdir] = ACTIONS(341), + [anon_sym_write] = ACTIONS(341), + [anon_sym_from_json] = ACTIONS(341), + [anon_sym_to_json] = ACTIONS(341), + [anon_sym_to_string] = ACTIONS(341), + [anon_sym_to_float] = ACTIONS(341), + [anon_sym_bash] = ACTIONS(341), + [anon_sym_fish] = ACTIONS(341), + [anon_sym_raw] = ACTIONS(341), + [anon_sym_sh] = ACTIONS(341), + [anon_sym_zsh] = ACTIONS(341), + [anon_sym_random] = ACTIONS(341), + [anon_sym_random_boolean] = ACTIONS(341), + [anon_sym_random_float] = ACTIONS(341), + [anon_sym_random_integer] = ACTIONS(341), + [anon_sym_columns] = ACTIONS(341), + [anon_sym_rows] = ACTIONS(341), + [anon_sym_reverse] = ACTIONS(341), }, [439] = { - [sym_math_operator] = STATE(773), - [sym_logic_operator] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1934), - [sym_integer] = ACTIONS(1936), - [sym_float] = ACTIONS(1934), - [sym_string] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_EQ_EQ] = ACTIONS(1934), - [anon_sym_BANG_EQ] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_PIPE_PIPE] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_elseif] = ACTIONS(1934), - [anon_sym_else] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_transform] = ACTIONS(1936), - [anon_sym_filter] = ACTIONS(1936), - [anon_sym_find] = ACTIONS(1936), - [anon_sym_remove] = ACTIONS(1936), - [anon_sym_reduce] = ACTIONS(1936), - [anon_sym_select] = ACTIONS(1936), - [anon_sym_insert] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_table] = ACTIONS(1936), - [anon_sym_assert] = ACTIONS(1936), - [anon_sym_assert_equal] = ACTIONS(1936), - [anon_sym_download] = ACTIONS(1936), - [anon_sym_help] = ACTIONS(1936), - [anon_sym_length] = ACTIONS(1936), - [anon_sym_output] = ACTIONS(1936), - [anon_sym_output_error] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_append] = ACTIONS(1936), - [anon_sym_metadata] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_read] = ACTIONS(1936), - [anon_sym_workdir] = ACTIONS(1936), - [anon_sym_write] = ACTIONS(1936), - [anon_sym_from_json] = ACTIONS(1936), - [anon_sym_to_json] = ACTIONS(1936), - [anon_sym_to_string] = ACTIONS(1936), - [anon_sym_to_float] = ACTIONS(1936), - [anon_sym_bash] = ACTIONS(1936), - [anon_sym_fish] = ACTIONS(1936), - [anon_sym_raw] = ACTIONS(1936), - [anon_sym_sh] = ACTIONS(1936), - [anon_sym_zsh] = ACTIONS(1936), - [anon_sym_random] = ACTIONS(1936), - [anon_sym_random_boolean] = ACTIONS(1936), - [anon_sym_random_float] = ACTIONS(1936), - [anon_sym_random_integer] = ACTIONS(1936), - [anon_sym_columns] = ACTIONS(1936), - [anon_sym_rows] = ACTIONS(1936), - [anon_sym_reverse] = ACTIONS(1936), + [sym_block] = STATE(688), + [sym_statement] = STATE(35), + [sym_expression] = STATE(701), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(582), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1866), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(320), + [aux_sym_block_repeat1] = STATE(35), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(497), + [anon_sym_EQ_GT] = ACTIONS(499), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_asyncfor] = ACTIONS(505), + [anon_sym_transform] = ACTIONS(507), + [anon_sym_filter] = ACTIONS(509), + [anon_sym_find] = ACTIONS(511), + [anon_sym_remove] = ACTIONS(513), + [anon_sym_reduce] = ACTIONS(515), + [anon_sym_select] = ACTIONS(517), + [anon_sym_insert] = ACTIONS(519), + [anon_sym_async] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(525), + [anon_sym_assert_equal] = ACTIONS(525), + [anon_sym_download] = ACTIONS(525), + [anon_sym_help] = ACTIONS(525), + [anon_sym_length] = ACTIONS(525), + [anon_sym_output] = ACTIONS(525), + [anon_sym_output_error] = ACTIONS(525), + [anon_sym_type] = ACTIONS(525), + [anon_sym_append] = ACTIONS(525), + [anon_sym_metadata] = ACTIONS(525), + [anon_sym_move] = ACTIONS(525), + [anon_sym_read] = ACTIONS(525), + [anon_sym_workdir] = ACTIONS(525), + [anon_sym_write] = ACTIONS(525), + [anon_sym_from_json] = ACTIONS(525), + [anon_sym_to_json] = ACTIONS(525), + [anon_sym_to_string] = ACTIONS(525), + [anon_sym_to_float] = ACTIONS(525), + [anon_sym_bash] = ACTIONS(525), + [anon_sym_fish] = ACTIONS(525), + [anon_sym_raw] = ACTIONS(525), + [anon_sym_sh] = ACTIONS(525), + [anon_sym_zsh] = ACTIONS(525), + [anon_sym_random] = ACTIONS(525), + [anon_sym_random_boolean] = ACTIONS(525), + [anon_sym_random_float] = ACTIONS(525), + [anon_sym_random_integer] = ACTIONS(525), + [anon_sym_columns] = ACTIONS(525), + [anon_sym_rows] = ACTIONS(525), + [anon_sym_reverse] = ACTIONS(525), }, [440] = { - [sym_expression] = STATE(942), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_elseif] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(723), + [sym_statement] = STATE(45), + [sym_expression] = STATE(795), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(611), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(2015), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(325), + [aux_sym_block_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(913), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_while] = ACTIONS(917), + [anon_sym_for] = ACTIONS(919), + [anon_sym_asyncfor] = ACTIONS(921), + [anon_sym_transform] = ACTIONS(923), + [anon_sym_filter] = ACTIONS(925), + [anon_sym_find] = ACTIONS(927), + [anon_sym_remove] = ACTIONS(929), + [anon_sym_reduce] = ACTIONS(931), + [anon_sym_select] = ACTIONS(933), + [anon_sym_insert] = ACTIONS(935), + [anon_sym_async] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(939), + [anon_sym_assert] = ACTIONS(941), + [anon_sym_assert_equal] = ACTIONS(941), + [anon_sym_download] = ACTIONS(941), + [anon_sym_help] = ACTIONS(941), + [anon_sym_length] = ACTIONS(941), + [anon_sym_output] = ACTIONS(941), + [anon_sym_output_error] = ACTIONS(941), + [anon_sym_type] = ACTIONS(941), + [anon_sym_append] = ACTIONS(941), + [anon_sym_metadata] = ACTIONS(941), + [anon_sym_move] = ACTIONS(941), + [anon_sym_read] = ACTIONS(941), + [anon_sym_workdir] = ACTIONS(941), + [anon_sym_write] = ACTIONS(941), + [anon_sym_from_json] = ACTIONS(941), + [anon_sym_to_json] = ACTIONS(941), + [anon_sym_to_string] = ACTIONS(941), + [anon_sym_to_float] = ACTIONS(941), + [anon_sym_bash] = ACTIONS(941), + [anon_sym_fish] = ACTIONS(941), + [anon_sym_raw] = ACTIONS(941), + [anon_sym_sh] = ACTIONS(941), + [anon_sym_zsh] = ACTIONS(941), + [anon_sym_random] = ACTIONS(941), + [anon_sym_random_boolean] = ACTIONS(941), + [anon_sym_random_float] = ACTIONS(941), + [anon_sym_random_integer] = ACTIONS(941), + [anon_sym_columns] = ACTIONS(941), + [anon_sym_rows] = ACTIONS(941), + [anon_sym_reverse] = ACTIONS(941), }, [441] = { - [sym_math_operator] = STATE(773), - [sym_logic_operator] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1926), - [sym_integer] = ACTIONS(1928), - [sym_float] = ACTIONS(1926), - [sym_string] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_COLON] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_elseif] = ACTIONS(1926), - [anon_sym_else] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_transform] = ACTIONS(1928), - [anon_sym_filter] = ACTIONS(1928), - [anon_sym_find] = ACTIONS(1928), - [anon_sym_remove] = ACTIONS(1928), - [anon_sym_reduce] = ACTIONS(1928), - [anon_sym_select] = ACTIONS(1928), - [anon_sym_insert] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_table] = ACTIONS(1928), - [anon_sym_assert] = ACTIONS(1928), - [anon_sym_assert_equal] = ACTIONS(1928), - [anon_sym_download] = ACTIONS(1928), - [anon_sym_help] = ACTIONS(1928), - [anon_sym_length] = ACTIONS(1928), - [anon_sym_output] = ACTIONS(1928), - [anon_sym_output_error] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_append] = ACTIONS(1928), - [anon_sym_metadata] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_read] = ACTIONS(1928), - [anon_sym_workdir] = ACTIONS(1928), - [anon_sym_write] = ACTIONS(1928), - [anon_sym_from_json] = ACTIONS(1928), - [anon_sym_to_json] = ACTIONS(1928), - [anon_sym_to_string] = ACTIONS(1928), - [anon_sym_to_float] = ACTIONS(1928), - [anon_sym_bash] = ACTIONS(1928), - [anon_sym_fish] = ACTIONS(1928), - [anon_sym_raw] = ACTIONS(1928), - [anon_sym_sh] = ACTIONS(1928), - [anon_sym_zsh] = ACTIONS(1928), - [anon_sym_random] = ACTIONS(1928), - [anon_sym_random_boolean] = ACTIONS(1928), - [anon_sym_random_float] = ACTIONS(1928), - [anon_sym_random_integer] = ACTIONS(1928), - [anon_sym_columns] = ACTIONS(1928), - [anon_sym_rows] = ACTIONS(1928), - [anon_sym_reverse] = ACTIONS(1928), + [sym_block] = STATE(1545), + [sym_statement] = STATE(257), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(257), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [442] = { - [sym_else_if] = STATE(442), - [aux_sym_if_else_repeat1] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(1955), - [sym_identifier] = ACTIONS(1957), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [sym_integer] = ACTIONS(1957), - [sym_float] = ACTIONS(1955), - [sym_string] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1957), - [anon_sym_false] = ACTIONS(1957), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(1955), - [anon_sym_SLASH] = ACTIONS(1955), - [anon_sym_PERCENT] = ACTIONS(1955), - [anon_sym_EQ_EQ] = ACTIONS(1955), - [anon_sym_BANG_EQ] = ACTIONS(1955), - [anon_sym_AMP_AMP] = ACTIONS(1955), - [anon_sym_PIPE_PIPE] = ACTIONS(1955), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_GT_EQ] = ACTIONS(1955), - [anon_sym_LT_EQ] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_elseif] = ACTIONS(2127), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_EQ_GT] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_transform] = ACTIONS(1957), - [anon_sym_filter] = ACTIONS(1957), - [anon_sym_find] = ACTIONS(1957), - [anon_sym_remove] = ACTIONS(1957), - [anon_sym_reduce] = ACTIONS(1957), - [anon_sym_select] = ACTIONS(1957), - [anon_sym_insert] = ACTIONS(1957), - [anon_sym_async] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_table] = ACTIONS(1957), - [anon_sym_assert] = ACTIONS(1957), - [anon_sym_assert_equal] = ACTIONS(1957), - [anon_sym_download] = ACTIONS(1957), - [anon_sym_help] = ACTIONS(1957), - [anon_sym_length] = ACTIONS(1957), - [anon_sym_output] = ACTIONS(1957), - [anon_sym_output_error] = ACTIONS(1957), - [anon_sym_type] = ACTIONS(1957), - [anon_sym_append] = ACTIONS(1957), - [anon_sym_metadata] = ACTIONS(1957), - [anon_sym_move] = ACTIONS(1957), - [anon_sym_read] = ACTIONS(1957), - [anon_sym_workdir] = ACTIONS(1957), - [anon_sym_write] = ACTIONS(1957), - [anon_sym_from_json] = ACTIONS(1957), - [anon_sym_to_json] = ACTIONS(1957), - [anon_sym_to_string] = ACTIONS(1957), - [anon_sym_to_float] = ACTIONS(1957), - [anon_sym_bash] = ACTIONS(1957), - [anon_sym_fish] = ACTIONS(1957), - [anon_sym_raw] = ACTIONS(1957), - [anon_sym_sh] = ACTIONS(1957), - [anon_sym_zsh] = ACTIONS(1957), - [anon_sym_random] = ACTIONS(1957), - [anon_sym_random_boolean] = ACTIONS(1957), - [anon_sym_random_float] = ACTIONS(1957), - [anon_sym_random_integer] = ACTIONS(1957), - [anon_sym_columns] = ACTIONS(1957), - [anon_sym_rows] = ACTIONS(1957), - [anon_sym_reverse] = ACTIONS(1957), + [sym_block] = STATE(1025), + [sym_statement] = STATE(352), + [sym_expression] = STATE(877), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(782), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(978), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1639), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_asyncfor] = ACTIONS(1647), + [anon_sym_transform] = ACTIONS(1649), + [anon_sym_filter] = ACTIONS(1651), + [anon_sym_find] = ACTIONS(1653), + [anon_sym_remove] = ACTIONS(1655), + [anon_sym_reduce] = ACTIONS(1657), + [anon_sym_select] = ACTIONS(1659), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [443] = { - [sym_math_operator] = STATE(623), - [sym_logic_operator] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(2031), - [sym_integer] = ACTIONS(1940), - [sym_float] = ACTIONS(1938), - [sym_string] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_RBRACK] = ACTIONS(1938), - [anon_sym_COLON] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_transform] = ACTIONS(1940), - [anon_sym_filter] = ACTIONS(1940), - [anon_sym_find] = ACTIONS(1940), - [anon_sym_remove] = ACTIONS(1940), - [anon_sym_reduce] = ACTIONS(1940), - [anon_sym_select] = ACTIONS(1940), - [anon_sym_insert] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_table] = ACTIONS(1940), - [anon_sym_assert] = ACTIONS(1940), - [anon_sym_assert_equal] = ACTIONS(1940), - [anon_sym_download] = ACTIONS(1940), - [anon_sym_help] = ACTIONS(1940), - [anon_sym_length] = ACTIONS(1940), - [anon_sym_output] = ACTIONS(1940), - [anon_sym_output_error] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_append] = ACTIONS(1940), - [anon_sym_metadata] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_read] = ACTIONS(1940), - [anon_sym_workdir] = ACTIONS(1940), - [anon_sym_write] = ACTIONS(1940), - [anon_sym_from_json] = ACTIONS(1940), - [anon_sym_to_json] = ACTIONS(1940), - [anon_sym_to_string] = ACTIONS(1940), - [anon_sym_to_float] = ACTIONS(1940), - [anon_sym_bash] = ACTIONS(1940), - [anon_sym_fish] = ACTIONS(1940), - [anon_sym_raw] = ACTIONS(1940), - [anon_sym_sh] = ACTIONS(1940), - [anon_sym_zsh] = ACTIONS(1940), - [anon_sym_random] = ACTIONS(1940), - [anon_sym_random_boolean] = ACTIONS(1940), - [anon_sym_random_float] = ACTIONS(1940), - [anon_sym_random_integer] = ACTIONS(1940), - [anon_sym_columns] = ACTIONS(1940), - [anon_sym_rows] = ACTIONS(1940), - [anon_sym_reverse] = ACTIONS(1940), + [sym_block] = STATE(696), + [sym_statement] = STATE(45), + [sym_expression] = STATE(795), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(611), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(2015), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(325), + [aux_sym_block_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(913), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_while] = ACTIONS(917), + [anon_sym_for] = ACTIONS(919), + [anon_sym_asyncfor] = ACTIONS(921), + [anon_sym_transform] = ACTIONS(923), + [anon_sym_filter] = ACTIONS(925), + [anon_sym_find] = ACTIONS(927), + [anon_sym_remove] = ACTIONS(929), + [anon_sym_reduce] = ACTIONS(931), + [anon_sym_select] = ACTIONS(933), + [anon_sym_insert] = ACTIONS(935), + [anon_sym_async] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(939), + [anon_sym_assert] = ACTIONS(941), + [anon_sym_assert_equal] = ACTIONS(941), + [anon_sym_download] = ACTIONS(941), + [anon_sym_help] = ACTIONS(941), + [anon_sym_length] = ACTIONS(941), + [anon_sym_output] = ACTIONS(941), + [anon_sym_output_error] = ACTIONS(941), + [anon_sym_type] = ACTIONS(941), + [anon_sym_append] = ACTIONS(941), + [anon_sym_metadata] = ACTIONS(941), + [anon_sym_move] = ACTIONS(941), + [anon_sym_read] = ACTIONS(941), + [anon_sym_workdir] = ACTIONS(941), + [anon_sym_write] = ACTIONS(941), + [anon_sym_from_json] = ACTIONS(941), + [anon_sym_to_json] = ACTIONS(941), + [anon_sym_to_string] = ACTIONS(941), + [anon_sym_to_float] = ACTIONS(941), + [anon_sym_bash] = ACTIONS(941), + [anon_sym_fish] = ACTIONS(941), + [anon_sym_raw] = ACTIONS(941), + [anon_sym_sh] = ACTIONS(941), + [anon_sym_zsh] = ACTIONS(941), + [anon_sym_random] = ACTIONS(941), + [anon_sym_random_boolean] = ACTIONS(941), + [anon_sym_random_float] = ACTIONS(941), + [anon_sym_random_integer] = ACTIONS(941), + [anon_sym_columns] = ACTIONS(941), + [anon_sym_rows] = ACTIONS(941), + [anon_sym_reverse] = ACTIONS(941), }, [444] = { - [sym_math_operator] = STATE(660), - [sym_logic_operator] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(2130), - [sym_integer] = ACTIONS(1940), - [sym_float] = ACTIONS(1938), - [sym_string] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_transform] = ACTIONS(1940), - [anon_sym_filter] = ACTIONS(1940), - [anon_sym_find] = ACTIONS(1940), - [anon_sym_remove] = ACTIONS(1940), - [anon_sym_reduce] = ACTIONS(1940), - [anon_sym_select] = ACTIONS(1940), - [anon_sym_insert] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_table] = ACTIONS(1940), - [anon_sym_assert] = ACTIONS(1940), - [anon_sym_assert_equal] = ACTIONS(1940), - [anon_sym_download] = ACTIONS(1940), - [anon_sym_help] = ACTIONS(1940), - [anon_sym_length] = ACTIONS(1940), - [anon_sym_output] = ACTIONS(1940), - [anon_sym_output_error] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_append] = ACTIONS(1940), - [anon_sym_metadata] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_read] = ACTIONS(1940), - [anon_sym_workdir] = ACTIONS(1940), - [anon_sym_write] = ACTIONS(1940), - [anon_sym_from_json] = ACTIONS(1940), - [anon_sym_to_json] = ACTIONS(1940), - [anon_sym_to_string] = ACTIONS(1940), - [anon_sym_to_float] = ACTIONS(1940), - [anon_sym_bash] = ACTIONS(1940), - [anon_sym_fish] = ACTIONS(1940), - [anon_sym_raw] = ACTIONS(1940), - [anon_sym_sh] = ACTIONS(1940), - [anon_sym_zsh] = ACTIONS(1940), - [anon_sym_random] = ACTIONS(1940), - [anon_sym_random_boolean] = ACTIONS(1940), - [anon_sym_random_float] = ACTIONS(1940), - [anon_sym_random_integer] = ACTIONS(1940), - [anon_sym_columns] = ACTIONS(1940), - [anon_sym_rows] = ACTIONS(1940), - [anon_sym_reverse] = ACTIONS(1940), + [sym_block] = STATE(1545), + [sym_statement] = STATE(258), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(258), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [445] = { - [sym_expression] = STATE(960), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(447), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_COMMA] = ACTIONS(1294), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_elseif] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(606), + [sym_statement] = STATE(21), + [sym_expression] = STATE(593), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(584), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1776), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(286), + [aux_sym_block_repeat1] = STATE(21), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(201), + [anon_sym_while] = ACTIONS(203), + [anon_sym_for] = ACTIONS(205), + [anon_sym_asyncfor] = ACTIONS(207), + [anon_sym_transform] = ACTIONS(209), + [anon_sym_filter] = ACTIONS(211), + [anon_sym_find] = ACTIONS(213), + [anon_sym_remove] = ACTIONS(215), + [anon_sym_reduce] = ACTIONS(217), + [anon_sym_select] = ACTIONS(219), + [anon_sym_insert] = ACTIONS(221), + [anon_sym_async] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_assert_equal] = ACTIONS(227), + [anon_sym_download] = ACTIONS(227), + [anon_sym_help] = ACTIONS(227), + [anon_sym_length] = ACTIONS(227), + [anon_sym_output] = ACTIONS(227), + [anon_sym_output_error] = ACTIONS(227), + [anon_sym_type] = ACTIONS(227), + [anon_sym_append] = ACTIONS(227), + [anon_sym_metadata] = ACTIONS(227), + [anon_sym_move] = ACTIONS(227), + [anon_sym_read] = ACTIONS(227), + [anon_sym_workdir] = ACTIONS(227), + [anon_sym_write] = ACTIONS(227), + [anon_sym_from_json] = ACTIONS(227), + [anon_sym_to_json] = ACTIONS(227), + [anon_sym_to_string] = ACTIONS(227), + [anon_sym_to_float] = ACTIONS(227), + [anon_sym_bash] = ACTIONS(227), + [anon_sym_fish] = ACTIONS(227), + [anon_sym_raw] = ACTIONS(227), + [anon_sym_sh] = ACTIONS(227), + [anon_sym_zsh] = ACTIONS(227), + [anon_sym_random] = ACTIONS(227), + [anon_sym_random_boolean] = ACTIONS(227), + [anon_sym_random_float] = ACTIONS(227), + [anon_sym_random_integer] = ACTIONS(227), + [anon_sym_columns] = ACTIONS(227), + [anon_sym_rows] = ACTIONS(227), + [anon_sym_reverse] = ACTIONS(227), }, [446] = { - [sym_math_operator] = STATE(623), - [sym_logic_operator] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1934), - [anon_sym_COMMA] = ACTIONS(1934), - [sym_integer] = ACTIONS(1936), - [sym_float] = ACTIONS(1934), - [sym_string] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_RBRACK] = ACTIONS(1934), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_EQ_EQ] = ACTIONS(1934), - [anon_sym_BANG_EQ] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_PIPE_PIPE] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_transform] = ACTIONS(1936), - [anon_sym_filter] = ACTIONS(1936), - [anon_sym_find] = ACTIONS(1936), - [anon_sym_remove] = ACTIONS(1936), - [anon_sym_reduce] = ACTIONS(1936), - [anon_sym_select] = ACTIONS(1936), - [anon_sym_insert] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_table] = ACTIONS(1936), - [anon_sym_assert] = ACTIONS(1936), - [anon_sym_assert_equal] = ACTIONS(1936), - [anon_sym_download] = ACTIONS(1936), - [anon_sym_help] = ACTIONS(1936), - [anon_sym_length] = ACTIONS(1936), - [anon_sym_output] = ACTIONS(1936), - [anon_sym_output_error] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_append] = ACTIONS(1936), - [anon_sym_metadata] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_read] = ACTIONS(1936), - [anon_sym_workdir] = ACTIONS(1936), - [anon_sym_write] = ACTIONS(1936), - [anon_sym_from_json] = ACTIONS(1936), - [anon_sym_to_json] = ACTIONS(1936), - [anon_sym_to_string] = ACTIONS(1936), - [anon_sym_to_float] = ACTIONS(1936), - [anon_sym_bash] = ACTIONS(1936), - [anon_sym_fish] = ACTIONS(1936), - [anon_sym_raw] = ACTIONS(1936), - [anon_sym_sh] = ACTIONS(1936), - [anon_sym_zsh] = ACTIONS(1936), - [anon_sym_random] = ACTIONS(1936), - [anon_sym_random_boolean] = ACTIONS(1936), - [anon_sym_random_float] = ACTIONS(1936), - [anon_sym_random_integer] = ACTIONS(1936), - [anon_sym_columns] = ACTIONS(1936), - [anon_sym_rows] = ACTIONS(1936), - [anon_sym_reverse] = ACTIONS(1936), + [sym_block] = STATE(727), + [sym_statement] = STATE(45), + [sym_expression] = STATE(795), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(611), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(2015), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(325), + [aux_sym_block_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(913), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_while] = ACTIONS(917), + [anon_sym_for] = ACTIONS(919), + [anon_sym_asyncfor] = ACTIONS(921), + [anon_sym_transform] = ACTIONS(923), + [anon_sym_filter] = ACTIONS(925), + [anon_sym_find] = ACTIONS(927), + [anon_sym_remove] = ACTIONS(929), + [anon_sym_reduce] = ACTIONS(931), + [anon_sym_select] = ACTIONS(933), + [anon_sym_insert] = ACTIONS(935), + [anon_sym_async] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(939), + [anon_sym_assert] = ACTIONS(941), + [anon_sym_assert_equal] = ACTIONS(941), + [anon_sym_download] = ACTIONS(941), + [anon_sym_help] = ACTIONS(941), + [anon_sym_length] = ACTIONS(941), + [anon_sym_output] = ACTIONS(941), + [anon_sym_output_error] = ACTIONS(941), + [anon_sym_type] = ACTIONS(941), + [anon_sym_append] = ACTIONS(941), + [anon_sym_metadata] = ACTIONS(941), + [anon_sym_move] = ACTIONS(941), + [anon_sym_read] = ACTIONS(941), + [anon_sym_workdir] = ACTIONS(941), + [anon_sym_write] = ACTIONS(941), + [anon_sym_from_json] = ACTIONS(941), + [anon_sym_to_json] = ACTIONS(941), + [anon_sym_to_string] = ACTIONS(941), + [anon_sym_to_float] = ACTIONS(941), + [anon_sym_bash] = ACTIONS(941), + [anon_sym_fish] = ACTIONS(941), + [anon_sym_raw] = ACTIONS(941), + [anon_sym_sh] = ACTIONS(941), + [anon_sym_zsh] = ACTIONS(941), + [anon_sym_random] = ACTIONS(941), + [anon_sym_random_boolean] = ACTIONS(941), + [anon_sym_random_float] = ACTIONS(941), + [anon_sym_random_integer] = ACTIONS(941), + [anon_sym_columns] = ACTIONS(941), + [anon_sym_rows] = ACTIONS(941), + [anon_sym_reverse] = ACTIONS(941), }, [447] = { - [sym_expression] = STATE(960), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(447), - [sym_identifier] = ACTIONS(1259), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_COMMA] = ACTIONS(1257), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_elseif] = ACTIONS(1257), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(2124), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [sym_block] = STATE(1543), + [sym_statement] = STATE(60), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(875), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), }, [448] = { - [sym_math_operator] = STATE(773), - [sym_logic_operator] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_elseif] = ACTIONS(1964), - [anon_sym_else] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [sym_block] = STATE(803), + [sym_statement] = STATE(33), + [sym_expression] = STATE(732), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(620), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(654), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(33), + [sym_identifier] = ACTIONS(623), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(629), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_asyncfor] = ACTIONS(637), + [anon_sym_transform] = ACTIONS(639), + [anon_sym_filter] = ACTIONS(641), + [anon_sym_find] = ACTIONS(643), + [anon_sym_remove] = ACTIONS(645), + [anon_sym_reduce] = ACTIONS(647), + [anon_sym_select] = ACTIONS(649), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [449] = { - [sym_math_operator] = STATE(623), - [sym_logic_operator] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1951), - [sym_identifier] = ACTIONS(1953), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1951), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1951), - [sym_string] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_RBRACK] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_transform] = ACTIONS(1953), - [anon_sym_filter] = ACTIONS(1953), - [anon_sym_find] = ACTIONS(1953), - [anon_sym_remove] = ACTIONS(1953), - [anon_sym_reduce] = ACTIONS(1953), - [anon_sym_select] = ACTIONS(1953), - [anon_sym_insert] = ACTIONS(1953), - [anon_sym_async] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_table] = ACTIONS(1953), - [anon_sym_assert] = ACTIONS(1953), - [anon_sym_assert_equal] = ACTIONS(1953), - [anon_sym_download] = ACTIONS(1953), - [anon_sym_help] = ACTIONS(1953), - [anon_sym_length] = ACTIONS(1953), - [anon_sym_output] = ACTIONS(1953), - [anon_sym_output_error] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_append] = ACTIONS(1953), - [anon_sym_metadata] = ACTIONS(1953), - [anon_sym_move] = ACTIONS(1953), - [anon_sym_read] = ACTIONS(1953), - [anon_sym_workdir] = ACTIONS(1953), - [anon_sym_write] = ACTIONS(1953), - [anon_sym_from_json] = ACTIONS(1953), - [anon_sym_to_json] = ACTIONS(1953), - [anon_sym_to_string] = ACTIONS(1953), - [anon_sym_to_float] = ACTIONS(1953), - [anon_sym_bash] = ACTIONS(1953), - [anon_sym_fish] = ACTIONS(1953), - [anon_sym_raw] = ACTIONS(1953), - [anon_sym_sh] = ACTIONS(1953), - [anon_sym_zsh] = ACTIONS(1953), - [anon_sym_random] = ACTIONS(1953), - [anon_sym_random_boolean] = ACTIONS(1953), - [anon_sym_random_float] = ACTIONS(1953), - [anon_sym_random_integer] = ACTIONS(1953), - [anon_sym_columns] = ACTIONS(1953), - [anon_sym_rows] = ACTIONS(1953), - [anon_sym_reverse] = ACTIONS(1953), + [sym_block] = STATE(1653), + [sym_statement] = STATE(371), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [450] = { - [sym_math_operator] = STATE(773), - [sym_logic_operator] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1949), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1947), - [sym_string] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_elseif] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_transform] = ACTIONS(1949), - [anon_sym_filter] = ACTIONS(1949), - [anon_sym_find] = ACTIONS(1949), - [anon_sym_remove] = ACTIONS(1949), - [anon_sym_reduce] = ACTIONS(1949), - [anon_sym_select] = ACTIONS(1949), - [anon_sym_insert] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_table] = ACTIONS(1949), - [anon_sym_assert] = ACTIONS(1949), - [anon_sym_assert_equal] = ACTIONS(1949), - [anon_sym_download] = ACTIONS(1949), - [anon_sym_help] = ACTIONS(1949), - [anon_sym_length] = ACTIONS(1949), - [anon_sym_output] = ACTIONS(1949), - [anon_sym_output_error] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_append] = ACTIONS(1949), - [anon_sym_metadata] = ACTIONS(1949), - [anon_sym_move] = ACTIONS(1949), - [anon_sym_read] = ACTIONS(1949), - [anon_sym_workdir] = ACTIONS(1949), - [anon_sym_write] = ACTIONS(1949), - [anon_sym_from_json] = ACTIONS(1949), - [anon_sym_to_json] = ACTIONS(1949), - [anon_sym_to_string] = ACTIONS(1949), - [anon_sym_to_float] = ACTIONS(1949), - [anon_sym_bash] = ACTIONS(1949), - [anon_sym_fish] = ACTIONS(1949), - [anon_sym_raw] = ACTIONS(1949), - [anon_sym_sh] = ACTIONS(1949), - [anon_sym_zsh] = ACTIONS(1949), - [anon_sym_random] = ACTIONS(1949), - [anon_sym_random_boolean] = ACTIONS(1949), - [anon_sym_random_float] = ACTIONS(1949), - [anon_sym_random_integer] = ACTIONS(1949), - [anon_sym_columns] = ACTIONS(1949), - [anon_sym_rows] = ACTIONS(1949), - [anon_sym_reverse] = ACTIONS(1949), + [sym_block] = STATE(1543), + [sym_statement] = STATE(107), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(107), + [sym_identifier] = ACTIONS(1198), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [451] = { - [sym_math_operator] = STATE(623), - [sym_logic_operator] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_RBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [sym_block] = STATE(861), + [sym_statement] = STATE(61), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [452] = { - [sym_math_operator] = STATE(623), - [sym_logic_operator] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [anon_sym_COMMA] = ACTIONS(1930), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1930), - [sym_string] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_RBRACK] = ACTIONS(1930), - [anon_sym_COLON] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1930), - [anon_sym_PIPE_PIPE] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_transform] = ACTIONS(1932), - [anon_sym_filter] = ACTIONS(1932), - [anon_sym_find] = ACTIONS(1932), - [anon_sym_remove] = ACTIONS(1932), - [anon_sym_reduce] = ACTIONS(1932), - [anon_sym_select] = ACTIONS(1932), - [anon_sym_insert] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_table] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_assert_equal] = ACTIONS(1932), - [anon_sym_download] = ACTIONS(1932), - [anon_sym_help] = ACTIONS(1932), - [anon_sym_length] = ACTIONS(1932), - [anon_sym_output] = ACTIONS(1932), - [anon_sym_output_error] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_append] = ACTIONS(1932), - [anon_sym_metadata] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_read] = ACTIONS(1932), - [anon_sym_workdir] = ACTIONS(1932), - [anon_sym_write] = ACTIONS(1932), - [anon_sym_from_json] = ACTIONS(1932), - [anon_sym_to_json] = ACTIONS(1932), - [anon_sym_to_string] = ACTIONS(1932), - [anon_sym_to_float] = ACTIONS(1932), - [anon_sym_bash] = ACTIONS(1932), - [anon_sym_fish] = ACTIONS(1932), - [anon_sym_raw] = ACTIONS(1932), - [anon_sym_sh] = ACTIONS(1932), - [anon_sym_zsh] = ACTIONS(1932), - [anon_sym_random] = ACTIONS(1932), - [anon_sym_random_boolean] = ACTIONS(1932), - [anon_sym_random_float] = ACTIONS(1932), - [anon_sym_random_integer] = ACTIONS(1932), - [anon_sym_columns] = ACTIONS(1932), - [anon_sym_rows] = ACTIONS(1932), - [anon_sym_reverse] = ACTIONS(1932), + [sym_block] = STATE(1011), + [sym_statement] = STATE(58), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(1198), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3083), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [453] = { - [sym_math_operator] = STATE(623), - [sym_logic_operator] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1926), - [anon_sym_COMMA] = ACTIONS(1926), - [sym_integer] = ACTIONS(1928), - [sym_float] = ACTIONS(1926), - [sym_string] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_RBRACK] = ACTIONS(1926), - [anon_sym_COLON] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_transform] = ACTIONS(1928), - [anon_sym_filter] = ACTIONS(1928), - [anon_sym_find] = ACTIONS(1928), - [anon_sym_remove] = ACTIONS(1928), - [anon_sym_reduce] = ACTIONS(1928), - [anon_sym_select] = ACTIONS(1928), - [anon_sym_insert] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_table] = ACTIONS(1928), - [anon_sym_assert] = ACTIONS(1928), - [anon_sym_assert_equal] = ACTIONS(1928), - [anon_sym_download] = ACTIONS(1928), - [anon_sym_help] = ACTIONS(1928), - [anon_sym_length] = ACTIONS(1928), - [anon_sym_output] = ACTIONS(1928), - [anon_sym_output_error] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_append] = ACTIONS(1928), - [anon_sym_metadata] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_read] = ACTIONS(1928), - [anon_sym_workdir] = ACTIONS(1928), - [anon_sym_write] = ACTIONS(1928), - [anon_sym_from_json] = ACTIONS(1928), - [anon_sym_to_json] = ACTIONS(1928), - [anon_sym_to_string] = ACTIONS(1928), - [anon_sym_to_float] = ACTIONS(1928), - [anon_sym_bash] = ACTIONS(1928), - [anon_sym_fish] = ACTIONS(1928), - [anon_sym_raw] = ACTIONS(1928), - [anon_sym_sh] = ACTIONS(1928), - [anon_sym_zsh] = ACTIONS(1928), - [anon_sym_random] = ACTIONS(1928), - [anon_sym_random_boolean] = ACTIONS(1928), - [anon_sym_random_float] = ACTIONS(1928), - [anon_sym_random_integer] = ACTIONS(1928), - [anon_sym_columns] = ACTIONS(1928), - [anon_sym_rows] = ACTIONS(1928), - [anon_sym_reverse] = ACTIONS(1928), + [sym_block] = STATE(987), + [sym_statement] = STATE(42), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(42), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [454] = { - [sym_math_operator] = STATE(623), - [sym_logic_operator] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1949), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_COMMA] = ACTIONS(1947), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1947), - [sym_string] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_RBRACK] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_transform] = ACTIONS(1949), - [anon_sym_filter] = ACTIONS(1949), - [anon_sym_find] = ACTIONS(1949), - [anon_sym_remove] = ACTIONS(1949), - [anon_sym_reduce] = ACTIONS(1949), - [anon_sym_select] = ACTIONS(1949), - [anon_sym_insert] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_table] = ACTIONS(1949), - [anon_sym_assert] = ACTIONS(1949), - [anon_sym_assert_equal] = ACTIONS(1949), - [anon_sym_download] = ACTIONS(1949), - [anon_sym_help] = ACTIONS(1949), - [anon_sym_length] = ACTIONS(1949), - [anon_sym_output] = ACTIONS(1949), - [anon_sym_output_error] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_append] = ACTIONS(1949), - [anon_sym_metadata] = ACTIONS(1949), - [anon_sym_move] = ACTIONS(1949), - [anon_sym_read] = ACTIONS(1949), - [anon_sym_workdir] = ACTIONS(1949), - [anon_sym_write] = ACTIONS(1949), - [anon_sym_from_json] = ACTIONS(1949), - [anon_sym_to_json] = ACTIONS(1949), - [anon_sym_to_string] = ACTIONS(1949), - [anon_sym_to_float] = ACTIONS(1949), - [anon_sym_bash] = ACTIONS(1949), - [anon_sym_fish] = ACTIONS(1949), - [anon_sym_raw] = ACTIONS(1949), - [anon_sym_sh] = ACTIONS(1949), - [anon_sym_zsh] = ACTIONS(1949), - [anon_sym_random] = ACTIONS(1949), - [anon_sym_random_boolean] = ACTIONS(1949), - [anon_sym_random_float] = ACTIONS(1949), - [anon_sym_random_integer] = ACTIONS(1949), - [anon_sym_columns] = ACTIONS(1949), - [anon_sym_rows] = ACTIONS(1949), - [anon_sym_reverse] = ACTIONS(1949), + [sym_statement] = STATE(376), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [455] = { - [ts_builtin_sym_end] = ACTIONS(2094), - [sym_identifier] = ACTIONS(2096), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2094), - [anon_sym_RBRACE] = ACTIONS(2094), - [anon_sym_SEMI] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_RPAREN] = ACTIONS(2094), - [anon_sym_COMMA] = ACTIONS(2094), - [sym_integer] = ACTIONS(2096), - [sym_float] = ACTIONS(2094), - [sym_string] = ACTIONS(2094), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_RBRACK] = ACTIONS(2094), - [anon_sym_COLON] = ACTIONS(2094), - [anon_sym_DOT_DOT] = ACTIONS(2094), - [anon_sym_PLUS] = ACTIONS(2094), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_SLASH] = ACTIONS(2094), - [anon_sym_PERCENT] = ACTIONS(2094), - [anon_sym_EQ_EQ] = ACTIONS(2094), - [anon_sym_BANG_EQ] = ACTIONS(2094), - [anon_sym_AMP_AMP] = ACTIONS(2094), - [anon_sym_PIPE_PIPE] = ACTIONS(2094), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2094), - [anon_sym_LT_EQ] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2096), - [anon_sym_match] = ACTIONS(2096), - [anon_sym_EQ_GT] = ACTIONS(2094), - [anon_sym_while] = ACTIONS(2096), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_transform] = ACTIONS(2096), - [anon_sym_filter] = ACTIONS(2096), - [anon_sym_find] = ACTIONS(2096), - [anon_sym_remove] = ACTIONS(2096), - [anon_sym_reduce] = ACTIONS(2096), - [anon_sym_select] = ACTIONS(2096), - [anon_sym_insert] = ACTIONS(2096), - [anon_sym_async] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_table] = ACTIONS(2096), - [anon_sym_assert] = ACTIONS(2096), - [anon_sym_assert_equal] = ACTIONS(2096), - [anon_sym_download] = ACTIONS(2096), - [anon_sym_help] = ACTIONS(2096), - [anon_sym_length] = ACTIONS(2096), - [anon_sym_output] = ACTIONS(2096), - [anon_sym_output_error] = ACTIONS(2096), - [anon_sym_type] = ACTIONS(2096), - [anon_sym_append] = ACTIONS(2096), - [anon_sym_metadata] = ACTIONS(2096), - [anon_sym_move] = ACTIONS(2096), - [anon_sym_read] = ACTIONS(2096), - [anon_sym_workdir] = ACTIONS(2096), - [anon_sym_write] = ACTIONS(2096), - [anon_sym_from_json] = ACTIONS(2096), - [anon_sym_to_json] = ACTIONS(2096), - [anon_sym_to_string] = ACTIONS(2096), - [anon_sym_to_float] = ACTIONS(2096), - [anon_sym_bash] = ACTIONS(2096), - [anon_sym_fish] = ACTIONS(2096), - [anon_sym_raw] = ACTIONS(2096), - [anon_sym_sh] = ACTIONS(2096), - [anon_sym_zsh] = ACTIONS(2096), - [anon_sym_random] = ACTIONS(2096), - [anon_sym_random_boolean] = ACTIONS(2096), - [anon_sym_random_float] = ACTIONS(2096), - [anon_sym_random_integer] = ACTIONS(2096), - [anon_sym_columns] = ACTIONS(2096), - [anon_sym_rows] = ACTIONS(2096), - [anon_sym_reverse] = ACTIONS(2096), + [sym_block] = STATE(993), + [sym_statement] = STATE(42), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(42), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [456] = { - [sym_math_operator] = STATE(733), - [sym_logic_operator] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [sym_string] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(2132), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_transform] = ACTIONS(1915), - [anon_sym_filter] = ACTIONS(1915), - [anon_sym_find] = ACTIONS(1915), - [anon_sym_remove] = ACTIONS(1915), - [anon_sym_reduce] = ACTIONS(1915), - [anon_sym_select] = ACTIONS(1915), - [anon_sym_insert] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_table] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_assert_equal] = ACTIONS(1915), - [anon_sym_download] = ACTIONS(1915), - [anon_sym_help] = ACTIONS(1915), - [anon_sym_length] = ACTIONS(1915), - [anon_sym_output] = ACTIONS(1915), - [anon_sym_output_error] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_append] = ACTIONS(1915), - [anon_sym_metadata] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_read] = ACTIONS(1915), - [anon_sym_workdir] = ACTIONS(1915), - [anon_sym_write] = ACTIONS(1915), - [anon_sym_from_json] = ACTIONS(1915), - [anon_sym_to_json] = ACTIONS(1915), - [anon_sym_to_string] = ACTIONS(1915), - [anon_sym_to_float] = ACTIONS(1915), - [anon_sym_bash] = ACTIONS(1915), - [anon_sym_fish] = ACTIONS(1915), - [anon_sym_raw] = ACTIONS(1915), - [anon_sym_sh] = ACTIONS(1915), - [anon_sym_zsh] = ACTIONS(1915), - [anon_sym_random] = ACTIONS(1915), - [anon_sym_random_boolean] = ACTIONS(1915), - [anon_sym_random_float] = ACTIONS(1915), - [anon_sym_random_integer] = ACTIONS(1915), - [anon_sym_columns] = ACTIONS(1915), - [anon_sym_rows] = ACTIONS(1915), - [anon_sym_reverse] = ACTIONS(1915), + [sym_block] = STATE(696), + [sym_statement] = STATE(35), + [sym_expression] = STATE(701), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(582), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1866), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(320), + [aux_sym_block_repeat1] = STATE(35), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(497), + [anon_sym_EQ_GT] = ACTIONS(499), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_asyncfor] = ACTIONS(505), + [anon_sym_transform] = ACTIONS(507), + [anon_sym_filter] = ACTIONS(509), + [anon_sym_find] = ACTIONS(511), + [anon_sym_remove] = ACTIONS(513), + [anon_sym_reduce] = ACTIONS(515), + [anon_sym_select] = ACTIONS(517), + [anon_sym_insert] = ACTIONS(519), + [anon_sym_async] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(525), + [anon_sym_assert_equal] = ACTIONS(525), + [anon_sym_download] = ACTIONS(525), + [anon_sym_help] = ACTIONS(525), + [anon_sym_length] = ACTIONS(525), + [anon_sym_output] = ACTIONS(525), + [anon_sym_output_error] = ACTIONS(525), + [anon_sym_type] = ACTIONS(525), + [anon_sym_append] = ACTIONS(525), + [anon_sym_metadata] = ACTIONS(525), + [anon_sym_move] = ACTIONS(525), + [anon_sym_read] = ACTIONS(525), + [anon_sym_workdir] = ACTIONS(525), + [anon_sym_write] = ACTIONS(525), + [anon_sym_from_json] = ACTIONS(525), + [anon_sym_to_json] = ACTIONS(525), + [anon_sym_to_string] = ACTIONS(525), + [anon_sym_to_float] = ACTIONS(525), + [anon_sym_bash] = ACTIONS(525), + [anon_sym_fish] = ACTIONS(525), + [anon_sym_raw] = ACTIONS(525), + [anon_sym_sh] = ACTIONS(525), + [anon_sym_zsh] = ACTIONS(525), + [anon_sym_random] = ACTIONS(525), + [anon_sym_random_boolean] = ACTIONS(525), + [anon_sym_random_float] = ACTIONS(525), + [anon_sym_random_integer] = ACTIONS(525), + [anon_sym_columns] = ACTIONS(525), + [anon_sym_rows] = ACTIONS(525), + [anon_sym_reverse] = ACTIONS(525), }, [457] = { - [ts_builtin_sym_end] = ACTIONS(2000), - [sym_identifier] = ACTIONS(2002), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2000), - [anon_sym_RBRACE] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2000), - [anon_sym_RPAREN] = ACTIONS(2000), - [anon_sym_COMMA] = ACTIONS(2000), - [sym_integer] = ACTIONS(2002), - [sym_float] = ACTIONS(2000), - [sym_string] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2002), - [anon_sym_false] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2000), - [anon_sym_RBRACK] = ACTIONS(2000), - [anon_sym_COLON] = ACTIONS(2000), - [anon_sym_DOT_DOT] = ACTIONS(2000), - [anon_sym_PLUS] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2000), - [anon_sym_SLASH] = ACTIONS(2000), - [anon_sym_PERCENT] = ACTIONS(2000), - [anon_sym_EQ_EQ] = ACTIONS(2000), - [anon_sym_BANG_EQ] = ACTIONS(2000), - [anon_sym_AMP_AMP] = ACTIONS(2000), - [anon_sym_PIPE_PIPE] = ACTIONS(2000), - [anon_sym_GT] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(2002), - [anon_sym_GT_EQ] = ACTIONS(2000), - [anon_sym_LT_EQ] = ACTIONS(2000), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_match] = ACTIONS(2002), - [anon_sym_EQ_GT] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_transform] = ACTIONS(2002), - [anon_sym_filter] = ACTIONS(2002), - [anon_sym_find] = ACTIONS(2002), - [anon_sym_remove] = ACTIONS(2002), - [anon_sym_reduce] = ACTIONS(2002), - [anon_sym_select] = ACTIONS(2002), - [anon_sym_insert] = ACTIONS(2002), - [anon_sym_async] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_table] = ACTIONS(2002), - [anon_sym_assert] = ACTIONS(2002), - [anon_sym_assert_equal] = ACTIONS(2002), - [anon_sym_download] = ACTIONS(2002), - [anon_sym_help] = ACTIONS(2002), - [anon_sym_length] = ACTIONS(2002), - [anon_sym_output] = ACTIONS(2002), - [anon_sym_output_error] = ACTIONS(2002), - [anon_sym_type] = ACTIONS(2002), - [anon_sym_append] = ACTIONS(2002), - [anon_sym_metadata] = ACTIONS(2002), - [anon_sym_move] = ACTIONS(2002), - [anon_sym_read] = ACTIONS(2002), - [anon_sym_workdir] = ACTIONS(2002), - [anon_sym_write] = ACTIONS(2002), - [anon_sym_from_json] = ACTIONS(2002), - [anon_sym_to_json] = ACTIONS(2002), - [anon_sym_to_string] = ACTIONS(2002), - [anon_sym_to_float] = ACTIONS(2002), - [anon_sym_bash] = ACTIONS(2002), - [anon_sym_fish] = ACTIONS(2002), - [anon_sym_raw] = ACTIONS(2002), - [anon_sym_sh] = ACTIONS(2002), - [anon_sym_zsh] = ACTIONS(2002), - [anon_sym_random] = ACTIONS(2002), - [anon_sym_random_boolean] = ACTIONS(2002), - [anon_sym_random_float] = ACTIONS(2002), - [anon_sym_random_integer] = ACTIONS(2002), - [anon_sym_columns] = ACTIONS(2002), - [anon_sym_rows] = ACTIONS(2002), - [anon_sym_reverse] = ACTIONS(2002), + [sym_block] = STATE(788), + [sym_statement] = STATE(33), + [sym_expression] = STATE(732), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(620), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(654), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(33), + [sym_identifier] = ACTIONS(623), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(629), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_asyncfor] = ACTIONS(637), + [anon_sym_transform] = ACTIONS(639), + [anon_sym_filter] = ACTIONS(641), + [anon_sym_find] = ACTIONS(643), + [anon_sym_remove] = ACTIONS(645), + [anon_sym_reduce] = ACTIONS(647), + [anon_sym_select] = ACTIONS(649), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [458] = { - [ts_builtin_sym_end] = ACTIONS(2004), - [sym_identifier] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2004), - [anon_sym_RBRACE] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2004), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_RPAREN] = ACTIONS(2004), - [anon_sym_COMMA] = ACTIONS(2004), - [sym_integer] = ACTIONS(2006), - [sym_float] = ACTIONS(2004), - [sym_string] = ACTIONS(2004), - [anon_sym_true] = ACTIONS(2006), - [anon_sym_false] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2004), - [anon_sym_RBRACK] = ACTIONS(2004), - [anon_sym_COLON] = ACTIONS(2004), - [anon_sym_DOT_DOT] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2004), - [anon_sym_SLASH] = ACTIONS(2004), - [anon_sym_PERCENT] = ACTIONS(2004), - [anon_sym_EQ_EQ] = ACTIONS(2004), - [anon_sym_BANG_EQ] = ACTIONS(2004), - [anon_sym_AMP_AMP] = ACTIONS(2004), - [anon_sym_PIPE_PIPE] = ACTIONS(2004), - [anon_sym_GT] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(2006), - [anon_sym_GT_EQ] = ACTIONS(2004), - [anon_sym_LT_EQ] = ACTIONS(2004), - [anon_sym_if] = ACTIONS(2006), - [anon_sym_match] = ACTIONS(2006), - [anon_sym_EQ_GT] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2006), - [anon_sym_for] = ACTIONS(2006), - [anon_sym_transform] = ACTIONS(2006), - [anon_sym_filter] = ACTIONS(2006), - [anon_sym_find] = ACTIONS(2006), - [anon_sym_remove] = ACTIONS(2006), - [anon_sym_reduce] = ACTIONS(2006), - [anon_sym_select] = ACTIONS(2006), - [anon_sym_insert] = ACTIONS(2006), - [anon_sym_async] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_table] = ACTIONS(2006), - [anon_sym_assert] = ACTIONS(2006), - [anon_sym_assert_equal] = ACTIONS(2006), - [anon_sym_download] = ACTIONS(2006), - [anon_sym_help] = ACTIONS(2006), - [anon_sym_length] = ACTIONS(2006), - [anon_sym_output] = ACTIONS(2006), - [anon_sym_output_error] = ACTIONS(2006), - [anon_sym_type] = ACTIONS(2006), - [anon_sym_append] = ACTIONS(2006), - [anon_sym_metadata] = ACTIONS(2006), - [anon_sym_move] = ACTIONS(2006), - [anon_sym_read] = ACTIONS(2006), - [anon_sym_workdir] = ACTIONS(2006), - [anon_sym_write] = ACTIONS(2006), - [anon_sym_from_json] = ACTIONS(2006), - [anon_sym_to_json] = ACTIONS(2006), - [anon_sym_to_string] = ACTIONS(2006), - [anon_sym_to_float] = ACTIONS(2006), - [anon_sym_bash] = ACTIONS(2006), - [anon_sym_fish] = ACTIONS(2006), - [anon_sym_raw] = ACTIONS(2006), - [anon_sym_sh] = ACTIONS(2006), - [anon_sym_zsh] = ACTIONS(2006), - [anon_sym_random] = ACTIONS(2006), - [anon_sym_random_boolean] = ACTIONS(2006), - [anon_sym_random_float] = ACTIONS(2006), - [anon_sym_random_integer] = ACTIONS(2006), - [anon_sym_columns] = ACTIONS(2006), - [anon_sym_rows] = ACTIONS(2006), - [anon_sym_reverse] = ACTIONS(2006), + [sym_block] = STATE(1059), + [sym_statement] = STATE(381), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [459] = { - [ts_builtin_sym_end] = ACTIONS(2008), - [sym_identifier] = ACTIONS(2010), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_RBRACE] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_LPAREN] = ACTIONS(2008), - [anon_sym_RPAREN] = ACTIONS(2008), - [anon_sym_COMMA] = ACTIONS(2008), - [sym_integer] = ACTIONS(2010), - [sym_float] = ACTIONS(2008), - [sym_string] = ACTIONS(2008), - [anon_sym_true] = ACTIONS(2010), - [anon_sym_false] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2008), - [anon_sym_RBRACK] = ACTIONS(2008), - [anon_sym_COLON] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2008), - [anon_sym_PLUS] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2008), - [anon_sym_SLASH] = ACTIONS(2008), - [anon_sym_PERCENT] = ACTIONS(2008), - [anon_sym_EQ_EQ] = ACTIONS(2008), - [anon_sym_BANG_EQ] = ACTIONS(2008), - [anon_sym_AMP_AMP] = ACTIONS(2008), - [anon_sym_PIPE_PIPE] = ACTIONS(2008), - [anon_sym_GT] = ACTIONS(2010), - [anon_sym_LT] = ACTIONS(2010), - [anon_sym_GT_EQ] = ACTIONS(2008), - [anon_sym_LT_EQ] = ACTIONS(2008), - [anon_sym_if] = ACTIONS(2010), - [anon_sym_match] = ACTIONS(2010), - [anon_sym_EQ_GT] = ACTIONS(2008), - [anon_sym_while] = ACTIONS(2010), - [anon_sym_for] = ACTIONS(2010), - [anon_sym_transform] = ACTIONS(2010), - [anon_sym_filter] = ACTIONS(2010), - [anon_sym_find] = ACTIONS(2010), - [anon_sym_remove] = ACTIONS(2010), - [anon_sym_reduce] = ACTIONS(2010), - [anon_sym_select] = ACTIONS(2010), - [anon_sym_insert] = ACTIONS(2010), - [anon_sym_async] = ACTIONS(2010), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_table] = ACTIONS(2010), - [anon_sym_assert] = ACTIONS(2010), - [anon_sym_assert_equal] = ACTIONS(2010), - [anon_sym_download] = ACTIONS(2010), - [anon_sym_help] = ACTIONS(2010), - [anon_sym_length] = ACTIONS(2010), - [anon_sym_output] = ACTIONS(2010), - [anon_sym_output_error] = ACTIONS(2010), - [anon_sym_type] = ACTIONS(2010), - [anon_sym_append] = ACTIONS(2010), - [anon_sym_metadata] = ACTIONS(2010), - [anon_sym_move] = ACTIONS(2010), - [anon_sym_read] = ACTIONS(2010), - [anon_sym_workdir] = ACTIONS(2010), - [anon_sym_write] = ACTIONS(2010), - [anon_sym_from_json] = ACTIONS(2010), - [anon_sym_to_json] = ACTIONS(2010), - [anon_sym_to_string] = ACTIONS(2010), - [anon_sym_to_float] = ACTIONS(2010), - [anon_sym_bash] = ACTIONS(2010), - [anon_sym_fish] = ACTIONS(2010), - [anon_sym_raw] = ACTIONS(2010), - [anon_sym_sh] = ACTIONS(2010), - [anon_sym_zsh] = ACTIONS(2010), - [anon_sym_random] = ACTIONS(2010), - [anon_sym_random_boolean] = ACTIONS(2010), - [anon_sym_random_float] = ACTIONS(2010), - [anon_sym_random_integer] = ACTIONS(2010), - [anon_sym_columns] = ACTIONS(2010), - [anon_sym_rows] = ACTIONS(2010), - [anon_sym_reverse] = ACTIONS(2010), + [sym_statement] = STATE(376), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [460] = { - [ts_builtin_sym_end] = ACTIONS(2012), - [sym_identifier] = ACTIONS(2014), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2012), - [anon_sym_RBRACE] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2012), - [anon_sym_LPAREN] = ACTIONS(2012), - [anon_sym_RPAREN] = ACTIONS(2012), - [anon_sym_COMMA] = ACTIONS(2012), - [sym_integer] = ACTIONS(2014), - [sym_float] = ACTIONS(2012), - [sym_string] = ACTIONS(2012), - [anon_sym_true] = ACTIONS(2014), - [anon_sym_false] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2012), - [anon_sym_RBRACK] = ACTIONS(2012), - [anon_sym_COLON] = ACTIONS(2012), - [anon_sym_DOT_DOT] = ACTIONS(2012), - [anon_sym_PLUS] = ACTIONS(2012), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2012), - [anon_sym_SLASH] = ACTIONS(2012), - [anon_sym_PERCENT] = ACTIONS(2012), - [anon_sym_EQ_EQ] = ACTIONS(2012), - [anon_sym_BANG_EQ] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2012), - [anon_sym_PIPE_PIPE] = ACTIONS(2012), - [anon_sym_GT] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(2014), - [anon_sym_GT_EQ] = ACTIONS(2012), - [anon_sym_LT_EQ] = ACTIONS(2012), - [anon_sym_if] = ACTIONS(2014), - [anon_sym_match] = ACTIONS(2014), - [anon_sym_EQ_GT] = ACTIONS(2012), - [anon_sym_while] = ACTIONS(2014), - [anon_sym_for] = ACTIONS(2014), - [anon_sym_transform] = ACTIONS(2014), - [anon_sym_filter] = ACTIONS(2014), - [anon_sym_find] = ACTIONS(2014), - [anon_sym_remove] = ACTIONS(2014), - [anon_sym_reduce] = ACTIONS(2014), - [anon_sym_select] = ACTIONS(2014), - [anon_sym_insert] = ACTIONS(2014), - [anon_sym_async] = ACTIONS(2014), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_table] = ACTIONS(2014), - [anon_sym_assert] = ACTIONS(2014), - [anon_sym_assert_equal] = ACTIONS(2014), - [anon_sym_download] = ACTIONS(2014), - [anon_sym_help] = ACTIONS(2014), - [anon_sym_length] = ACTIONS(2014), - [anon_sym_output] = ACTIONS(2014), - [anon_sym_output_error] = ACTIONS(2014), - [anon_sym_type] = ACTIONS(2014), - [anon_sym_append] = ACTIONS(2014), - [anon_sym_metadata] = ACTIONS(2014), - [anon_sym_move] = ACTIONS(2014), - [anon_sym_read] = ACTIONS(2014), - [anon_sym_workdir] = ACTIONS(2014), - [anon_sym_write] = ACTIONS(2014), - [anon_sym_from_json] = ACTIONS(2014), - [anon_sym_to_json] = ACTIONS(2014), - [anon_sym_to_string] = ACTIONS(2014), - [anon_sym_to_float] = ACTIONS(2014), - [anon_sym_bash] = ACTIONS(2014), - [anon_sym_fish] = ACTIONS(2014), - [anon_sym_raw] = ACTIONS(2014), - [anon_sym_sh] = ACTIONS(2014), - [anon_sym_zsh] = ACTIONS(2014), - [anon_sym_random] = ACTIONS(2014), - [anon_sym_random_boolean] = ACTIONS(2014), - [anon_sym_random_float] = ACTIONS(2014), - [anon_sym_random_integer] = ACTIONS(2014), - [anon_sym_columns] = ACTIONS(2014), - [anon_sym_rows] = ACTIONS(2014), - [anon_sym_reverse] = ACTIONS(2014), + [sym_block] = STATE(872), + [sym_statement] = STATE(39), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(39), + [sym_identifier] = ACTIONS(875), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), }, [461] = { - [ts_builtin_sym_end] = ACTIONS(2016), - [sym_identifier] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2016), - [anon_sym_RBRACE] = ACTIONS(2016), - [anon_sym_SEMI] = ACTIONS(2016), - [anon_sym_LPAREN] = ACTIONS(2016), - [anon_sym_RPAREN] = ACTIONS(2016), - [anon_sym_COMMA] = ACTIONS(2016), - [sym_integer] = ACTIONS(2018), - [sym_float] = ACTIONS(2016), - [sym_string] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_RBRACK] = ACTIONS(2016), - [anon_sym_COLON] = ACTIONS(2016), - [anon_sym_DOT_DOT] = ACTIONS(2016), - [anon_sym_PLUS] = ACTIONS(2016), - [anon_sym_DASH] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2016), - [anon_sym_SLASH] = ACTIONS(2016), - [anon_sym_PERCENT] = ACTIONS(2016), - [anon_sym_EQ_EQ] = ACTIONS(2016), - [anon_sym_BANG_EQ] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_GT] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(2018), - [anon_sym_GT_EQ] = ACTIONS(2016), - [anon_sym_LT_EQ] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2018), - [anon_sym_match] = ACTIONS(2018), - [anon_sym_EQ_GT] = ACTIONS(2016), - [anon_sym_while] = ACTIONS(2018), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_transform] = ACTIONS(2018), - [anon_sym_filter] = ACTIONS(2018), - [anon_sym_find] = ACTIONS(2018), - [anon_sym_remove] = ACTIONS(2018), - [anon_sym_reduce] = ACTIONS(2018), - [anon_sym_select] = ACTIONS(2018), - [anon_sym_insert] = ACTIONS(2018), - [anon_sym_async] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2018), - [anon_sym_table] = ACTIONS(2018), - [anon_sym_assert] = ACTIONS(2018), - [anon_sym_assert_equal] = ACTIONS(2018), - [anon_sym_download] = ACTIONS(2018), - [anon_sym_help] = ACTIONS(2018), - [anon_sym_length] = ACTIONS(2018), - [anon_sym_output] = ACTIONS(2018), - [anon_sym_output_error] = ACTIONS(2018), - [anon_sym_type] = ACTIONS(2018), - [anon_sym_append] = ACTIONS(2018), - [anon_sym_metadata] = ACTIONS(2018), - [anon_sym_move] = ACTIONS(2018), - [anon_sym_read] = ACTIONS(2018), - [anon_sym_workdir] = ACTIONS(2018), - [anon_sym_write] = ACTIONS(2018), - [anon_sym_from_json] = ACTIONS(2018), - [anon_sym_to_json] = ACTIONS(2018), - [anon_sym_to_string] = ACTIONS(2018), - [anon_sym_to_float] = ACTIONS(2018), - [anon_sym_bash] = ACTIONS(2018), - [anon_sym_fish] = ACTIONS(2018), - [anon_sym_raw] = ACTIONS(2018), - [anon_sym_sh] = ACTIONS(2018), - [anon_sym_zsh] = ACTIONS(2018), - [anon_sym_random] = ACTIONS(2018), - [anon_sym_random_boolean] = ACTIONS(2018), - [anon_sym_random_float] = ACTIONS(2018), - [anon_sym_random_integer] = ACTIONS(2018), - [anon_sym_columns] = ACTIONS(2018), - [anon_sym_rows] = ACTIONS(2018), - [anon_sym_reverse] = ACTIONS(2018), + [sym_block] = STATE(607), + [sym_statement] = STATE(27), + [sym_expression] = STATE(663), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(637), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1998), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(296), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(313), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_asyncfor] = ACTIONS(321), + [anon_sym_transform] = ACTIONS(323), + [anon_sym_filter] = ACTIONS(325), + [anon_sym_find] = ACTIONS(327), + [anon_sym_remove] = ACTIONS(329), + [anon_sym_reduce] = ACTIONS(331), + [anon_sym_select] = ACTIONS(333), + [anon_sym_insert] = ACTIONS(335), + [anon_sym_async] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(341), + [anon_sym_assert_equal] = ACTIONS(341), + [anon_sym_download] = ACTIONS(341), + [anon_sym_help] = ACTIONS(341), + [anon_sym_length] = ACTIONS(341), + [anon_sym_output] = ACTIONS(341), + [anon_sym_output_error] = ACTIONS(341), + [anon_sym_type] = ACTIONS(341), + [anon_sym_append] = ACTIONS(341), + [anon_sym_metadata] = ACTIONS(341), + [anon_sym_move] = ACTIONS(341), + [anon_sym_read] = ACTIONS(341), + [anon_sym_workdir] = ACTIONS(341), + [anon_sym_write] = ACTIONS(341), + [anon_sym_from_json] = ACTIONS(341), + [anon_sym_to_json] = ACTIONS(341), + [anon_sym_to_string] = ACTIONS(341), + [anon_sym_to_float] = ACTIONS(341), + [anon_sym_bash] = ACTIONS(341), + [anon_sym_fish] = ACTIONS(341), + [anon_sym_raw] = ACTIONS(341), + [anon_sym_sh] = ACTIONS(341), + [anon_sym_zsh] = ACTIONS(341), + [anon_sym_random] = ACTIONS(341), + [anon_sym_random_boolean] = ACTIONS(341), + [anon_sym_random_float] = ACTIONS(341), + [anon_sym_random_integer] = ACTIONS(341), + [anon_sym_columns] = ACTIONS(341), + [anon_sym_rows] = ACTIONS(341), + [anon_sym_reverse] = ACTIONS(341), }, [462] = { - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(494), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [sym_block] = STATE(872), + [sym_statement] = STATE(61), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1253), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), [sym_string] = ACTIONS(13), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_EQ_GT] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_assert_equal] = ACTIONS(1907), - [anon_sym_download] = ACTIONS(1907), - [anon_sym_help] = ACTIONS(1907), - [anon_sym_length] = ACTIONS(1907), - [anon_sym_output] = ACTIONS(1907), - [anon_sym_output_error] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_append] = ACTIONS(1907), - [anon_sym_metadata] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_read] = ACTIONS(1907), - [anon_sym_workdir] = ACTIONS(1907), - [anon_sym_write] = ACTIONS(1907), - [anon_sym_from_json] = ACTIONS(1907), - [anon_sym_to_json] = ACTIONS(1907), - [anon_sym_to_string] = ACTIONS(1907), - [anon_sym_to_float] = ACTIONS(1907), - [anon_sym_bash] = ACTIONS(1907), - [anon_sym_fish] = ACTIONS(1907), - [anon_sym_raw] = ACTIONS(1907), - [anon_sym_sh] = ACTIONS(1907), - [anon_sym_zsh] = ACTIONS(1907), - [anon_sym_random] = ACTIONS(1907), - [anon_sym_random_boolean] = ACTIONS(1907), - [anon_sym_random_float] = ACTIONS(1907), - [anon_sym_random_integer] = ACTIONS(1907), - [anon_sym_columns] = ACTIONS(1907), - [anon_sym_rows] = ACTIONS(1907), - [anon_sym_reverse] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [463] = { - [ts_builtin_sym_end] = ACTIONS(2023), - [sym_identifier] = ACTIONS(2025), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_COMMA] = ACTIONS(2023), - [sym_integer] = ACTIONS(2025), - [sym_float] = ACTIONS(2023), - [sym_string] = ACTIONS(2023), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = ACTIONS(2025), - [anon_sym_LBRACK] = ACTIONS(2023), - [anon_sym_RBRACK] = ACTIONS(2023), - [anon_sym_COLON] = ACTIONS(2023), - [anon_sym_DOT_DOT] = ACTIONS(2023), - [anon_sym_PLUS] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2025), - [anon_sym_STAR] = ACTIONS(2023), - [anon_sym_SLASH] = ACTIONS(2023), - [anon_sym_PERCENT] = ACTIONS(2023), - [anon_sym_EQ_EQ] = ACTIONS(2023), - [anon_sym_BANG_EQ] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_GT] = ACTIONS(2025), - [anon_sym_LT] = ACTIONS(2025), - [anon_sym_GT_EQ] = ACTIONS(2023), - [anon_sym_LT_EQ] = ACTIONS(2023), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_match] = ACTIONS(2025), - [anon_sym_EQ_GT] = ACTIONS(2023), - [anon_sym_while] = ACTIONS(2025), - [anon_sym_for] = ACTIONS(2025), - [anon_sym_transform] = ACTIONS(2025), - [anon_sym_filter] = ACTIONS(2025), - [anon_sym_find] = ACTIONS(2025), - [anon_sym_remove] = ACTIONS(2025), - [anon_sym_reduce] = ACTIONS(2025), - [anon_sym_select] = ACTIONS(2025), - [anon_sym_insert] = ACTIONS(2025), - [anon_sym_async] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_table] = ACTIONS(2025), - [anon_sym_assert] = ACTIONS(2025), - [anon_sym_assert_equal] = ACTIONS(2025), - [anon_sym_download] = ACTIONS(2025), - [anon_sym_help] = ACTIONS(2025), - [anon_sym_length] = ACTIONS(2025), - [anon_sym_output] = ACTIONS(2025), - [anon_sym_output_error] = ACTIONS(2025), - [anon_sym_type] = ACTIONS(2025), - [anon_sym_append] = ACTIONS(2025), - [anon_sym_metadata] = ACTIONS(2025), - [anon_sym_move] = ACTIONS(2025), - [anon_sym_read] = ACTIONS(2025), - [anon_sym_workdir] = ACTIONS(2025), - [anon_sym_write] = ACTIONS(2025), - [anon_sym_from_json] = ACTIONS(2025), - [anon_sym_to_json] = ACTIONS(2025), - [anon_sym_to_string] = ACTIONS(2025), - [anon_sym_to_float] = ACTIONS(2025), - [anon_sym_bash] = ACTIONS(2025), - [anon_sym_fish] = ACTIONS(2025), - [anon_sym_raw] = ACTIONS(2025), - [anon_sym_sh] = ACTIONS(2025), - [anon_sym_zsh] = ACTIONS(2025), - [anon_sym_random] = ACTIONS(2025), - [anon_sym_random_boolean] = ACTIONS(2025), - [anon_sym_random_float] = ACTIONS(2025), - [anon_sym_random_integer] = ACTIONS(2025), - [anon_sym_columns] = ACTIONS(2025), - [anon_sym_rows] = ACTIONS(2025), - [anon_sym_reverse] = ACTIONS(2025), + [sym_block] = STATE(1545), + [sym_statement] = STATE(259), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(259), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [464] = { - [sym_expression] = STATE(973), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(230), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(1524), + [sym_statement] = STATE(48), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(48), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [465] = { - [ts_builtin_sym_end] = ACTIONS(2027), - [sym_identifier] = ACTIONS(2029), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2027), - [anon_sym_RBRACE] = ACTIONS(2027), - [anon_sym_SEMI] = ACTIONS(2027), - [anon_sym_LPAREN] = ACTIONS(2027), - [anon_sym_RPAREN] = ACTIONS(2027), - [anon_sym_COMMA] = ACTIONS(2027), - [sym_integer] = ACTIONS(2029), - [sym_float] = ACTIONS(2027), - [sym_string] = ACTIONS(2027), - [anon_sym_true] = ACTIONS(2029), - [anon_sym_false] = ACTIONS(2029), - [anon_sym_LBRACK] = ACTIONS(2027), - [anon_sym_RBRACK] = ACTIONS(2027), - [anon_sym_COLON] = ACTIONS(2027), - [anon_sym_DOT_DOT] = ACTIONS(2027), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_STAR] = ACTIONS(2027), - [anon_sym_SLASH] = ACTIONS(2027), - [anon_sym_PERCENT] = ACTIONS(2027), - [anon_sym_EQ_EQ] = ACTIONS(2027), - [anon_sym_BANG_EQ] = ACTIONS(2027), - [anon_sym_AMP_AMP] = ACTIONS(2027), - [anon_sym_PIPE_PIPE] = ACTIONS(2027), - [anon_sym_GT] = ACTIONS(2029), - [anon_sym_LT] = ACTIONS(2029), - [anon_sym_GT_EQ] = ACTIONS(2027), - [anon_sym_LT_EQ] = ACTIONS(2027), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_EQ_GT] = ACTIONS(2027), - [anon_sym_while] = ACTIONS(2029), - [anon_sym_for] = ACTIONS(2029), - [anon_sym_transform] = ACTIONS(2029), - [anon_sym_filter] = ACTIONS(2029), - [anon_sym_find] = ACTIONS(2029), - [anon_sym_remove] = ACTIONS(2029), - [anon_sym_reduce] = ACTIONS(2029), - [anon_sym_select] = ACTIONS(2029), - [anon_sym_insert] = ACTIONS(2029), - [anon_sym_async] = ACTIONS(2029), - [anon_sym_PIPE] = ACTIONS(2029), - [anon_sym_table] = ACTIONS(2029), - [anon_sym_assert] = ACTIONS(2029), - [anon_sym_assert_equal] = ACTIONS(2029), - [anon_sym_download] = ACTIONS(2029), - [anon_sym_help] = ACTIONS(2029), - [anon_sym_length] = ACTIONS(2029), - [anon_sym_output] = ACTIONS(2029), - [anon_sym_output_error] = ACTIONS(2029), - [anon_sym_type] = ACTIONS(2029), - [anon_sym_append] = ACTIONS(2029), - [anon_sym_metadata] = ACTIONS(2029), - [anon_sym_move] = ACTIONS(2029), - [anon_sym_read] = ACTIONS(2029), - [anon_sym_workdir] = ACTIONS(2029), - [anon_sym_write] = ACTIONS(2029), - [anon_sym_from_json] = ACTIONS(2029), - [anon_sym_to_json] = ACTIONS(2029), - [anon_sym_to_string] = ACTIONS(2029), - [anon_sym_to_float] = ACTIONS(2029), - [anon_sym_bash] = ACTIONS(2029), - [anon_sym_fish] = ACTIONS(2029), - [anon_sym_raw] = ACTIONS(2029), - [anon_sym_sh] = ACTIONS(2029), - [anon_sym_zsh] = ACTIONS(2029), - [anon_sym_random] = ACTIONS(2029), - [anon_sym_random_boolean] = ACTIONS(2029), - [anon_sym_random_float] = ACTIONS(2029), - [anon_sym_random_integer] = ACTIONS(2029), - [anon_sym_columns] = ACTIONS(2029), - [anon_sym_rows] = ACTIONS(2029), - [anon_sym_reverse] = ACTIONS(2029), + [sym_block] = STATE(1503), + [sym_statement] = STATE(370), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(370), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [466] = { - [ts_builtin_sym_end] = ACTIONS(2068), - [sym_identifier] = ACTIONS(2070), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_RBRACE] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_LPAREN] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2068), - [anon_sym_COMMA] = ACTIONS(2068), - [sym_integer] = ACTIONS(2070), - [sym_float] = ACTIONS(2068), - [sym_string] = ACTIONS(2068), - [anon_sym_true] = ACTIONS(2070), - [anon_sym_false] = ACTIONS(2070), - [anon_sym_LBRACK] = ACTIONS(2068), - [anon_sym_RBRACK] = ACTIONS(2068), - [anon_sym_COLON] = ACTIONS(2068), - [anon_sym_DOT_DOT] = ACTIONS(2068), - [anon_sym_PLUS] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2068), - [anon_sym_SLASH] = ACTIONS(2068), - [anon_sym_PERCENT] = ACTIONS(2068), - [anon_sym_EQ_EQ] = ACTIONS(2068), - [anon_sym_BANG_EQ] = ACTIONS(2068), - [anon_sym_AMP_AMP] = ACTIONS(2068), - [anon_sym_PIPE_PIPE] = ACTIONS(2068), - [anon_sym_GT] = ACTIONS(2070), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT_EQ] = ACTIONS(2068), - [anon_sym_LT_EQ] = ACTIONS(2068), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_match] = ACTIONS(2070), - [anon_sym_EQ_GT] = ACTIONS(2068), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_transform] = ACTIONS(2070), - [anon_sym_filter] = ACTIONS(2070), - [anon_sym_find] = ACTIONS(2070), - [anon_sym_remove] = ACTIONS(2070), - [anon_sym_reduce] = ACTIONS(2070), - [anon_sym_select] = ACTIONS(2070), - [anon_sym_insert] = ACTIONS(2070), - [anon_sym_async] = ACTIONS(2070), - [anon_sym_PIPE] = ACTIONS(2070), - [anon_sym_table] = ACTIONS(2070), - [anon_sym_assert] = ACTIONS(2070), - [anon_sym_assert_equal] = ACTIONS(2070), - [anon_sym_download] = ACTIONS(2070), - [anon_sym_help] = ACTIONS(2070), - [anon_sym_length] = ACTIONS(2070), - [anon_sym_output] = ACTIONS(2070), - [anon_sym_output_error] = ACTIONS(2070), - [anon_sym_type] = ACTIONS(2070), - [anon_sym_append] = ACTIONS(2070), - [anon_sym_metadata] = ACTIONS(2070), - [anon_sym_move] = ACTIONS(2070), - [anon_sym_read] = ACTIONS(2070), - [anon_sym_workdir] = ACTIONS(2070), - [anon_sym_write] = ACTIONS(2070), - [anon_sym_from_json] = ACTIONS(2070), - [anon_sym_to_json] = ACTIONS(2070), - [anon_sym_to_string] = ACTIONS(2070), - [anon_sym_to_float] = ACTIONS(2070), - [anon_sym_bash] = ACTIONS(2070), - [anon_sym_fish] = ACTIONS(2070), - [anon_sym_raw] = ACTIONS(2070), - [anon_sym_sh] = ACTIONS(2070), - [anon_sym_zsh] = ACTIONS(2070), - [anon_sym_random] = ACTIONS(2070), - [anon_sym_random_boolean] = ACTIONS(2070), - [anon_sym_random_float] = ACTIONS(2070), - [anon_sym_random_integer] = ACTIONS(2070), - [anon_sym_columns] = ACTIONS(2070), - [anon_sym_rows] = ACTIONS(2070), - [anon_sym_reverse] = ACTIONS(2070), + [sym_block] = STATE(1528), + [sym_statement] = STATE(48), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(48), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [467] = { - [ts_builtin_sym_end] = ACTIONS(2034), - [sym_identifier] = ACTIONS(2036), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2034), - [anon_sym_RBRACE] = ACTIONS(2034), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2034), - [anon_sym_RPAREN] = ACTIONS(2034), - [anon_sym_COMMA] = ACTIONS(2034), - [sym_integer] = ACTIONS(2036), - [sym_float] = ACTIONS(2034), - [sym_string] = ACTIONS(2034), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2034), - [anon_sym_RBRACK] = ACTIONS(2034), - [anon_sym_COLON] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2034), - [anon_sym_PLUS] = ACTIONS(2034), - [anon_sym_DASH] = ACTIONS(2036), - [anon_sym_STAR] = ACTIONS(2034), - [anon_sym_SLASH] = ACTIONS(2034), - [anon_sym_PERCENT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_GT] = ACTIONS(2036), - [anon_sym_LT] = ACTIONS(2036), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_EQ_GT] = ACTIONS(2034), - [anon_sym_while] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_transform] = ACTIONS(2036), - [anon_sym_filter] = ACTIONS(2036), - [anon_sym_find] = ACTIONS(2036), - [anon_sym_remove] = ACTIONS(2036), - [anon_sym_reduce] = ACTIONS(2036), - [anon_sym_select] = ACTIONS(2036), - [anon_sym_insert] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_table] = ACTIONS(2036), - [anon_sym_assert] = ACTIONS(2036), - [anon_sym_assert_equal] = ACTIONS(2036), - [anon_sym_download] = ACTIONS(2036), - [anon_sym_help] = ACTIONS(2036), - [anon_sym_length] = ACTIONS(2036), - [anon_sym_output] = ACTIONS(2036), - [anon_sym_output_error] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_append] = ACTIONS(2036), - [anon_sym_metadata] = ACTIONS(2036), - [anon_sym_move] = ACTIONS(2036), - [anon_sym_read] = ACTIONS(2036), - [anon_sym_workdir] = ACTIONS(2036), - [anon_sym_write] = ACTIONS(2036), - [anon_sym_from_json] = ACTIONS(2036), - [anon_sym_to_json] = ACTIONS(2036), - [anon_sym_to_string] = ACTIONS(2036), - [anon_sym_to_float] = ACTIONS(2036), - [anon_sym_bash] = ACTIONS(2036), - [anon_sym_fish] = ACTIONS(2036), - [anon_sym_raw] = ACTIONS(2036), - [anon_sym_sh] = ACTIONS(2036), - [anon_sym_zsh] = ACTIONS(2036), - [anon_sym_random] = ACTIONS(2036), - [anon_sym_random_boolean] = ACTIONS(2036), - [anon_sym_random_float] = ACTIONS(2036), - [anon_sym_random_integer] = ACTIONS(2036), - [anon_sym_columns] = ACTIONS(2036), - [anon_sym_rows] = ACTIONS(2036), - [anon_sym_reverse] = ACTIONS(2036), + [sym_block] = STATE(872), + [sym_statement] = STATE(57), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [468] = { - [sym_expression] = STATE(960), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(445), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_statement] = STATE(376), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [469] = { - [ts_builtin_sym_end] = ACTIONS(2048), - [sym_identifier] = ACTIONS(2050), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_RBRACE] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(2048), - [anon_sym_RPAREN] = ACTIONS(2048), - [anon_sym_COMMA] = ACTIONS(2048), - [sym_integer] = ACTIONS(2050), - [sym_float] = ACTIONS(2048), - [sym_string] = ACTIONS(2048), - [anon_sym_true] = ACTIONS(2050), - [anon_sym_false] = ACTIONS(2050), - [anon_sym_LBRACK] = ACTIONS(2048), - [anon_sym_RBRACK] = ACTIONS(2048), - [anon_sym_COLON] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2048), - [anon_sym_PLUS] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_SLASH] = ACTIONS(2048), - [anon_sym_PERCENT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2048), - [anon_sym_if] = ACTIONS(2050), - [anon_sym_match] = ACTIONS(2050), - [anon_sym_EQ_GT] = ACTIONS(2048), - [anon_sym_while] = ACTIONS(2050), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_transform] = ACTIONS(2050), - [anon_sym_filter] = ACTIONS(2050), - [anon_sym_find] = ACTIONS(2050), - [anon_sym_remove] = ACTIONS(2050), - [anon_sym_reduce] = ACTIONS(2050), - [anon_sym_select] = ACTIONS(2050), - [anon_sym_insert] = ACTIONS(2050), - [anon_sym_async] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_table] = ACTIONS(2050), - [anon_sym_assert] = ACTIONS(2050), - [anon_sym_assert_equal] = ACTIONS(2050), - [anon_sym_download] = ACTIONS(2050), - [anon_sym_help] = ACTIONS(2050), - [anon_sym_length] = ACTIONS(2050), - [anon_sym_output] = ACTIONS(2050), - [anon_sym_output_error] = ACTIONS(2050), - [anon_sym_type] = ACTIONS(2050), - [anon_sym_append] = ACTIONS(2050), - [anon_sym_metadata] = ACTIONS(2050), - [anon_sym_move] = ACTIONS(2050), - [anon_sym_read] = ACTIONS(2050), - [anon_sym_workdir] = ACTIONS(2050), - [anon_sym_write] = ACTIONS(2050), - [anon_sym_from_json] = ACTIONS(2050), - [anon_sym_to_json] = ACTIONS(2050), - [anon_sym_to_string] = ACTIONS(2050), - [anon_sym_to_float] = ACTIONS(2050), - [anon_sym_bash] = ACTIONS(2050), - [anon_sym_fish] = ACTIONS(2050), - [anon_sym_raw] = ACTIONS(2050), - [anon_sym_sh] = ACTIONS(2050), - [anon_sym_zsh] = ACTIONS(2050), - [anon_sym_random] = ACTIONS(2050), - [anon_sym_random_boolean] = ACTIONS(2050), - [anon_sym_random_float] = ACTIONS(2050), - [anon_sym_random_integer] = ACTIONS(2050), - [anon_sym_columns] = ACTIONS(2050), - [anon_sym_rows] = ACTIONS(2050), - [anon_sym_reverse] = ACTIONS(2050), + [sym_block] = STATE(704), + [sym_statement] = STATE(35), + [sym_expression] = STATE(701), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(582), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1866), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(320), + [aux_sym_block_repeat1] = STATE(35), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(497), + [anon_sym_EQ_GT] = ACTIONS(499), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_asyncfor] = ACTIONS(505), + [anon_sym_transform] = ACTIONS(507), + [anon_sym_filter] = ACTIONS(509), + [anon_sym_find] = ACTIONS(511), + [anon_sym_remove] = ACTIONS(513), + [anon_sym_reduce] = ACTIONS(515), + [anon_sym_select] = ACTIONS(517), + [anon_sym_insert] = ACTIONS(519), + [anon_sym_async] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(525), + [anon_sym_assert_equal] = ACTIONS(525), + [anon_sym_download] = ACTIONS(525), + [anon_sym_help] = ACTIONS(525), + [anon_sym_length] = ACTIONS(525), + [anon_sym_output] = ACTIONS(525), + [anon_sym_output_error] = ACTIONS(525), + [anon_sym_type] = ACTIONS(525), + [anon_sym_append] = ACTIONS(525), + [anon_sym_metadata] = ACTIONS(525), + [anon_sym_move] = ACTIONS(525), + [anon_sym_read] = ACTIONS(525), + [anon_sym_workdir] = ACTIONS(525), + [anon_sym_write] = ACTIONS(525), + [anon_sym_from_json] = ACTIONS(525), + [anon_sym_to_json] = ACTIONS(525), + [anon_sym_to_string] = ACTIONS(525), + [anon_sym_to_float] = ACTIONS(525), + [anon_sym_bash] = ACTIONS(525), + [anon_sym_fish] = ACTIONS(525), + [anon_sym_raw] = ACTIONS(525), + [anon_sym_sh] = ACTIONS(525), + [anon_sym_zsh] = ACTIONS(525), + [anon_sym_random] = ACTIONS(525), + [anon_sym_random_boolean] = ACTIONS(525), + [anon_sym_random_float] = ACTIONS(525), + [anon_sym_random_integer] = ACTIONS(525), + [anon_sym_columns] = ACTIONS(525), + [anon_sym_rows] = ACTIONS(525), + [anon_sym_reverse] = ACTIONS(525), }, [470] = { - [ts_builtin_sym_end] = ACTIONS(2040), - [sym_identifier] = ACTIONS(2042), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_RBRACE] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2040), - [anon_sym_RPAREN] = ACTIONS(2040), - [anon_sym_COMMA] = ACTIONS(2040), - [sym_integer] = ACTIONS(2042), - [sym_float] = ACTIONS(2040), - [sym_string] = ACTIONS(2040), - [anon_sym_true] = ACTIONS(2042), - [anon_sym_false] = ACTIONS(2042), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_RBRACK] = ACTIONS(2040), - [anon_sym_COLON] = ACTIONS(2040), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_PLUS] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2042), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_SLASH] = ACTIONS(2040), - [anon_sym_PERCENT] = ACTIONS(2040), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2040), - [anon_sym_AMP_AMP] = ACTIONS(2040), - [anon_sym_PIPE_PIPE] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2042), - [anon_sym_LT] = ACTIONS(2042), - [anon_sym_GT_EQ] = ACTIONS(2040), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(2042), - [anon_sym_match] = ACTIONS(2042), - [anon_sym_EQ_GT] = ACTIONS(2040), - [anon_sym_while] = ACTIONS(2042), - [anon_sym_for] = ACTIONS(2042), - [anon_sym_transform] = ACTIONS(2042), - [anon_sym_filter] = ACTIONS(2042), - [anon_sym_find] = ACTIONS(2042), - [anon_sym_remove] = ACTIONS(2042), - [anon_sym_reduce] = ACTIONS(2042), - [anon_sym_select] = ACTIONS(2042), - [anon_sym_insert] = ACTIONS(2042), - [anon_sym_async] = ACTIONS(2042), - [anon_sym_PIPE] = ACTIONS(2042), - [anon_sym_table] = ACTIONS(2042), - [anon_sym_assert] = ACTIONS(2042), - [anon_sym_assert_equal] = ACTIONS(2042), - [anon_sym_download] = ACTIONS(2042), - [anon_sym_help] = ACTIONS(2042), - [anon_sym_length] = ACTIONS(2042), - [anon_sym_output] = ACTIONS(2042), - [anon_sym_output_error] = ACTIONS(2042), - [anon_sym_type] = ACTIONS(2042), - [anon_sym_append] = ACTIONS(2042), - [anon_sym_metadata] = ACTIONS(2042), - [anon_sym_move] = ACTIONS(2042), - [anon_sym_read] = ACTIONS(2042), - [anon_sym_workdir] = ACTIONS(2042), - [anon_sym_write] = ACTIONS(2042), - [anon_sym_from_json] = ACTIONS(2042), - [anon_sym_to_json] = ACTIONS(2042), - [anon_sym_to_string] = ACTIONS(2042), - [anon_sym_to_float] = ACTIONS(2042), - [anon_sym_bash] = ACTIONS(2042), - [anon_sym_fish] = ACTIONS(2042), - [anon_sym_raw] = ACTIONS(2042), - [anon_sym_sh] = ACTIONS(2042), - [anon_sym_zsh] = ACTIONS(2042), - [anon_sym_random] = ACTIONS(2042), - [anon_sym_random_boolean] = ACTIONS(2042), - [anon_sym_random_float] = ACTIONS(2042), - [anon_sym_random_integer] = ACTIONS(2042), - [anon_sym_columns] = ACTIONS(2042), - [anon_sym_rows] = ACTIONS(2042), - [anon_sym_reverse] = ACTIONS(2042), + [sym_block] = STATE(1543), + [sym_statement] = STATE(254), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(254), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [471] = { - [sym_expression] = STATE(958), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(861), + [sym_statement] = STATE(46), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(1198), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [472] = { - [ts_builtin_sym_end] = ACTIONS(2052), - [sym_identifier] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_RBRACE] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_LPAREN] = ACTIONS(2052), - [anon_sym_RPAREN] = ACTIONS(2052), - [anon_sym_COMMA] = ACTIONS(2052), - [sym_integer] = ACTIONS(2054), - [sym_float] = ACTIONS(2052), - [sym_string] = ACTIONS(2052), - [anon_sym_true] = ACTIONS(2054), - [anon_sym_false] = ACTIONS(2054), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_RBRACK] = ACTIONS(2052), - [anon_sym_COLON] = ACTIONS(2052), - [anon_sym_DOT_DOT] = ACTIONS(2052), - [anon_sym_PLUS] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_SLASH] = ACTIONS(2052), - [anon_sym_PERCENT] = ACTIONS(2052), - [anon_sym_EQ_EQ] = ACTIONS(2052), - [anon_sym_BANG_EQ] = ACTIONS(2052), - [anon_sym_AMP_AMP] = ACTIONS(2052), - [anon_sym_PIPE_PIPE] = ACTIONS(2052), - [anon_sym_GT] = ACTIONS(2054), - [anon_sym_LT] = ACTIONS(2054), - [anon_sym_GT_EQ] = ACTIONS(2052), - [anon_sym_LT_EQ] = ACTIONS(2052), - [anon_sym_if] = ACTIONS(2054), - [anon_sym_match] = ACTIONS(2054), - [anon_sym_EQ_GT] = ACTIONS(2052), - [anon_sym_while] = ACTIONS(2054), - [anon_sym_for] = ACTIONS(2054), - [anon_sym_transform] = ACTIONS(2054), - [anon_sym_filter] = ACTIONS(2054), - [anon_sym_find] = ACTIONS(2054), - [anon_sym_remove] = ACTIONS(2054), - [anon_sym_reduce] = ACTIONS(2054), - [anon_sym_select] = ACTIONS(2054), - [anon_sym_insert] = ACTIONS(2054), - [anon_sym_async] = ACTIONS(2054), - [anon_sym_PIPE] = ACTIONS(2054), - [anon_sym_table] = ACTIONS(2054), - [anon_sym_assert] = ACTIONS(2054), - [anon_sym_assert_equal] = ACTIONS(2054), - [anon_sym_download] = ACTIONS(2054), - [anon_sym_help] = ACTIONS(2054), - [anon_sym_length] = ACTIONS(2054), - [anon_sym_output] = ACTIONS(2054), - [anon_sym_output_error] = ACTIONS(2054), - [anon_sym_type] = ACTIONS(2054), - [anon_sym_append] = ACTIONS(2054), - [anon_sym_metadata] = ACTIONS(2054), - [anon_sym_move] = ACTIONS(2054), - [anon_sym_read] = ACTIONS(2054), - [anon_sym_workdir] = ACTIONS(2054), - [anon_sym_write] = ACTIONS(2054), - [anon_sym_from_json] = ACTIONS(2054), - [anon_sym_to_json] = ACTIONS(2054), - [anon_sym_to_string] = ACTIONS(2054), - [anon_sym_to_float] = ACTIONS(2054), - [anon_sym_bash] = ACTIONS(2054), - [anon_sym_fish] = ACTIONS(2054), - [anon_sym_raw] = ACTIONS(2054), - [anon_sym_sh] = ACTIONS(2054), - [anon_sym_zsh] = ACTIONS(2054), - [anon_sym_random] = ACTIONS(2054), - [anon_sym_random_boolean] = ACTIONS(2054), - [anon_sym_random_float] = ACTIONS(2054), - [anon_sym_random_integer] = ACTIONS(2054), - [anon_sym_columns] = ACTIONS(2054), - [anon_sym_rows] = ACTIONS(2054), - [anon_sym_reverse] = ACTIONS(2054), + [sym_statement] = STATE(376), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [473] = { - [ts_builtin_sym_end] = ACTIONS(2072), - [sym_identifier] = ACTIONS(2074), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_COMMA] = ACTIONS(2072), - [sym_integer] = ACTIONS(2074), - [sym_float] = ACTIONS(2072), - [sym_string] = ACTIONS(2072), - [anon_sym_true] = ACTIONS(2074), - [anon_sym_false] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_RBRACK] = ACTIONS(2072), - [anon_sym_COLON] = ACTIONS(2072), - [anon_sym_DOT_DOT] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_SLASH] = ACTIONS(2072), - [anon_sym_PERCENT] = ACTIONS(2072), - [anon_sym_EQ_EQ] = ACTIONS(2072), - [anon_sym_BANG_EQ] = ACTIONS(2072), - [anon_sym_AMP_AMP] = ACTIONS(2072), - [anon_sym_PIPE_PIPE] = ACTIONS(2072), - [anon_sym_GT] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2074), - [anon_sym_GT_EQ] = ACTIONS(2072), - [anon_sym_LT_EQ] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2074), - [anon_sym_match] = ACTIONS(2074), - [anon_sym_EQ_GT] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2074), - [anon_sym_for] = ACTIONS(2074), - [anon_sym_transform] = ACTIONS(2074), - [anon_sym_filter] = ACTIONS(2074), - [anon_sym_find] = ACTIONS(2074), - [anon_sym_remove] = ACTIONS(2074), - [anon_sym_reduce] = ACTIONS(2074), - [anon_sym_select] = ACTIONS(2074), - [anon_sym_insert] = ACTIONS(2074), - [anon_sym_async] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_table] = ACTIONS(2074), - [anon_sym_assert] = ACTIONS(2074), - [anon_sym_assert_equal] = ACTIONS(2074), - [anon_sym_download] = ACTIONS(2074), - [anon_sym_help] = ACTIONS(2074), - [anon_sym_length] = ACTIONS(2074), - [anon_sym_output] = ACTIONS(2074), - [anon_sym_output_error] = ACTIONS(2074), - [anon_sym_type] = ACTIONS(2074), - [anon_sym_append] = ACTIONS(2074), - [anon_sym_metadata] = ACTIONS(2074), - [anon_sym_move] = ACTIONS(2074), - [anon_sym_read] = ACTIONS(2074), - [anon_sym_workdir] = ACTIONS(2074), - [anon_sym_write] = ACTIONS(2074), - [anon_sym_from_json] = ACTIONS(2074), - [anon_sym_to_json] = ACTIONS(2074), - [anon_sym_to_string] = ACTIONS(2074), - [anon_sym_to_float] = ACTIONS(2074), - [anon_sym_bash] = ACTIONS(2074), - [anon_sym_fish] = ACTIONS(2074), - [anon_sym_raw] = ACTIONS(2074), - [anon_sym_sh] = ACTIONS(2074), - [anon_sym_zsh] = ACTIONS(2074), - [anon_sym_random] = ACTIONS(2074), - [anon_sym_random_boolean] = ACTIONS(2074), - [anon_sym_random_float] = ACTIONS(2074), - [anon_sym_random_integer] = ACTIONS(2074), - [anon_sym_columns] = ACTIONS(2074), - [anon_sym_rows] = ACTIONS(2074), - [anon_sym_reverse] = ACTIONS(2074), + [sym_block] = STATE(688), + [sym_statement] = STATE(17), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), }, [474] = { - [ts_builtin_sym_end] = ACTIONS(2076), - [sym_identifier] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [sym_integer] = ACTIONS(2078), - [sym_float] = ACTIONS(2076), - [sym_string] = ACTIONS(2076), - [anon_sym_true] = ACTIONS(2078), - [anon_sym_false] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_RBRACK] = ACTIONS(2076), - [anon_sym_COLON] = ACTIONS(2076), - [anon_sym_DOT_DOT] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_SLASH] = ACTIONS(2076), - [anon_sym_PERCENT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_match] = ACTIONS(2078), - [anon_sym_EQ_GT] = ACTIONS(2076), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_transform] = ACTIONS(2078), - [anon_sym_filter] = ACTIONS(2078), - [anon_sym_find] = ACTIONS(2078), - [anon_sym_remove] = ACTIONS(2078), - [anon_sym_reduce] = ACTIONS(2078), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_insert] = ACTIONS(2078), - [anon_sym_async] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_table] = ACTIONS(2078), - [anon_sym_assert] = ACTIONS(2078), - [anon_sym_assert_equal] = ACTIONS(2078), - [anon_sym_download] = ACTIONS(2078), - [anon_sym_help] = ACTIONS(2078), - [anon_sym_length] = ACTIONS(2078), - [anon_sym_output] = ACTIONS(2078), - [anon_sym_output_error] = ACTIONS(2078), - [anon_sym_type] = ACTIONS(2078), - [anon_sym_append] = ACTIONS(2078), - [anon_sym_metadata] = ACTIONS(2078), - [anon_sym_move] = ACTIONS(2078), - [anon_sym_read] = ACTIONS(2078), - [anon_sym_workdir] = ACTIONS(2078), - [anon_sym_write] = ACTIONS(2078), - [anon_sym_from_json] = ACTIONS(2078), - [anon_sym_to_json] = ACTIONS(2078), - [anon_sym_to_string] = ACTIONS(2078), - [anon_sym_to_float] = ACTIONS(2078), - [anon_sym_bash] = ACTIONS(2078), - [anon_sym_fish] = ACTIONS(2078), - [anon_sym_raw] = ACTIONS(2078), - [anon_sym_sh] = ACTIONS(2078), - [anon_sym_zsh] = ACTIONS(2078), - [anon_sym_random] = ACTIONS(2078), - [anon_sym_random_boolean] = ACTIONS(2078), - [anon_sym_random_float] = ACTIONS(2078), - [anon_sym_random_integer] = ACTIONS(2078), - [anon_sym_columns] = ACTIONS(2078), - [anon_sym_rows] = ACTIONS(2078), - [anon_sym_reverse] = ACTIONS(2078), + [sym_block] = STATE(851), + [sym_statement] = STATE(61), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [475] = { - [ts_builtin_sym_end] = ACTIONS(2064), - [sym_identifier] = ACTIONS(2066), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2064), - [anon_sym_RPAREN] = ACTIONS(2064), - [anon_sym_COMMA] = ACTIONS(2064), - [sym_integer] = ACTIONS(2066), - [sym_float] = ACTIONS(2064), - [sym_string] = ACTIONS(2064), - [anon_sym_true] = ACTIONS(2066), - [anon_sym_false] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(2064), - [anon_sym_RBRACK] = ACTIONS(2064), - [anon_sym_COLON] = ACTIONS(2064), - [anon_sym_DOT_DOT] = ACTIONS(2064), - [anon_sym_PLUS] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_SLASH] = ACTIONS(2064), - [anon_sym_PERCENT] = ACTIONS(2064), - [anon_sym_EQ_EQ] = ACTIONS(2064), - [anon_sym_BANG_EQ] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_GT_EQ] = ACTIONS(2064), - [anon_sym_LT_EQ] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2066), - [anon_sym_match] = ACTIONS(2066), - [anon_sym_EQ_GT] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2066), - [anon_sym_for] = ACTIONS(2066), - [anon_sym_transform] = ACTIONS(2066), - [anon_sym_filter] = ACTIONS(2066), - [anon_sym_find] = ACTIONS(2066), - [anon_sym_remove] = ACTIONS(2066), - [anon_sym_reduce] = ACTIONS(2066), - [anon_sym_select] = ACTIONS(2066), - [anon_sym_insert] = ACTIONS(2066), - [anon_sym_async] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_table] = ACTIONS(2066), - [anon_sym_assert] = ACTIONS(2066), - [anon_sym_assert_equal] = ACTIONS(2066), - [anon_sym_download] = ACTIONS(2066), - [anon_sym_help] = ACTIONS(2066), - [anon_sym_length] = ACTIONS(2066), - [anon_sym_output] = ACTIONS(2066), - [anon_sym_output_error] = ACTIONS(2066), - [anon_sym_type] = ACTIONS(2066), - [anon_sym_append] = ACTIONS(2066), - [anon_sym_metadata] = ACTIONS(2066), - [anon_sym_move] = ACTIONS(2066), - [anon_sym_read] = ACTIONS(2066), - [anon_sym_workdir] = ACTIONS(2066), - [anon_sym_write] = ACTIONS(2066), - [anon_sym_from_json] = ACTIONS(2066), - [anon_sym_to_json] = ACTIONS(2066), - [anon_sym_to_string] = ACTIONS(2066), - [anon_sym_to_float] = ACTIONS(2066), - [anon_sym_bash] = ACTIONS(2066), - [anon_sym_fish] = ACTIONS(2066), - [anon_sym_raw] = ACTIONS(2066), - [anon_sym_sh] = ACTIONS(2066), - [anon_sym_zsh] = ACTIONS(2066), - [anon_sym_random] = ACTIONS(2066), - [anon_sym_random_boolean] = ACTIONS(2066), - [anon_sym_random_float] = ACTIONS(2066), - [anon_sym_random_integer] = ACTIONS(2066), - [anon_sym_columns] = ACTIONS(2066), - [anon_sym_rows] = ACTIONS(2066), - [anon_sym_reverse] = ACTIONS(2066), + [sym_block] = STATE(803), + [sym_statement] = STATE(22), + [sym_expression] = STATE(685), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(576), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(647), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(229), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(247), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(251), + [anon_sym_for] = ACTIONS(253), + [anon_sym_asyncfor] = ACTIONS(255), + [anon_sym_transform] = ACTIONS(257), + [anon_sym_filter] = ACTIONS(259), + [anon_sym_find] = ACTIONS(261), + [anon_sym_remove] = ACTIONS(263), + [anon_sym_reduce] = ACTIONS(265), + [anon_sym_select] = ACTIONS(267), + [anon_sym_insert] = ACTIONS(269), + [anon_sym_async] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), }, [476] = { - [ts_builtin_sym_end] = ACTIONS(2112), - [sym_identifier] = ACTIONS(2114), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2112), - [anon_sym_LPAREN] = ACTIONS(2112), - [anon_sym_RPAREN] = ACTIONS(2112), - [anon_sym_COMMA] = ACTIONS(2112), - [sym_integer] = ACTIONS(2114), - [sym_float] = ACTIONS(2112), - [sym_string] = ACTIONS(2112), - [anon_sym_true] = ACTIONS(2114), - [anon_sym_false] = ACTIONS(2114), - [anon_sym_LBRACK] = ACTIONS(2112), - [anon_sym_RBRACK] = ACTIONS(2112), - [anon_sym_COLON] = ACTIONS(2112), - [anon_sym_DOT_DOT] = ACTIONS(2112), - [anon_sym_PLUS] = ACTIONS(2112), - [anon_sym_DASH] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2112), - [anon_sym_SLASH] = ACTIONS(2112), - [anon_sym_PERCENT] = ACTIONS(2112), - [anon_sym_EQ_EQ] = ACTIONS(2112), - [anon_sym_BANG_EQ] = ACTIONS(2112), - [anon_sym_AMP_AMP] = ACTIONS(2112), - [anon_sym_PIPE_PIPE] = ACTIONS(2112), - [anon_sym_GT] = ACTIONS(2114), - [anon_sym_LT] = ACTIONS(2114), - [anon_sym_GT_EQ] = ACTIONS(2112), - [anon_sym_LT_EQ] = ACTIONS(2112), - [anon_sym_if] = ACTIONS(2114), - [anon_sym_match] = ACTIONS(2114), - [anon_sym_EQ_GT] = ACTIONS(2112), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_transform] = ACTIONS(2114), - [anon_sym_filter] = ACTIONS(2114), - [anon_sym_find] = ACTIONS(2114), - [anon_sym_remove] = ACTIONS(2114), - [anon_sym_reduce] = ACTIONS(2114), - [anon_sym_select] = ACTIONS(2114), - [anon_sym_insert] = ACTIONS(2114), - [anon_sym_async] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_table] = ACTIONS(2114), - [anon_sym_assert] = ACTIONS(2114), - [anon_sym_assert_equal] = ACTIONS(2114), - [anon_sym_download] = ACTIONS(2114), - [anon_sym_help] = ACTIONS(2114), - [anon_sym_length] = ACTIONS(2114), - [anon_sym_output] = ACTIONS(2114), - [anon_sym_output_error] = ACTIONS(2114), - [anon_sym_type] = ACTIONS(2114), - [anon_sym_append] = ACTIONS(2114), - [anon_sym_metadata] = ACTIONS(2114), - [anon_sym_move] = ACTIONS(2114), - [anon_sym_read] = ACTIONS(2114), - [anon_sym_workdir] = ACTIONS(2114), - [anon_sym_write] = ACTIONS(2114), - [anon_sym_from_json] = ACTIONS(2114), - [anon_sym_to_json] = ACTIONS(2114), - [anon_sym_to_string] = ACTIONS(2114), - [anon_sym_to_float] = ACTIONS(2114), - [anon_sym_bash] = ACTIONS(2114), - [anon_sym_fish] = ACTIONS(2114), - [anon_sym_raw] = ACTIONS(2114), - [anon_sym_sh] = ACTIONS(2114), - [anon_sym_zsh] = ACTIONS(2114), - [anon_sym_random] = ACTIONS(2114), - [anon_sym_random_boolean] = ACTIONS(2114), - [anon_sym_random_float] = ACTIONS(2114), - [anon_sym_random_integer] = ACTIONS(2114), - [anon_sym_columns] = ACTIONS(2114), - [anon_sym_rows] = ACTIONS(2114), - [anon_sym_reverse] = ACTIONS(2114), + [sym_block] = STATE(723), + [sym_statement] = STATE(24), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(24), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [477] = { - [ts_builtin_sym_end] = ACTIONS(2084), - [sym_identifier] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(2084), - [anon_sym_COMMA] = ACTIONS(2084), - [sym_integer] = ACTIONS(2086), - [sym_float] = ACTIONS(2084), - [sym_string] = ACTIONS(2084), - [anon_sym_true] = ACTIONS(2086), - [anon_sym_false] = ACTIONS(2086), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_RBRACK] = ACTIONS(2084), - [anon_sym_COLON] = ACTIONS(2084), - [anon_sym_DOT_DOT] = ACTIONS(2084), - [anon_sym_PLUS] = ACTIONS(2084), - [anon_sym_DASH] = ACTIONS(2086), - [anon_sym_STAR] = ACTIONS(2084), - [anon_sym_SLASH] = ACTIONS(2084), - [anon_sym_PERCENT] = ACTIONS(2084), - [anon_sym_EQ_EQ] = ACTIONS(2084), - [anon_sym_BANG_EQ] = ACTIONS(2084), - [anon_sym_AMP_AMP] = ACTIONS(2084), - [anon_sym_PIPE_PIPE] = ACTIONS(2084), - [anon_sym_GT] = ACTIONS(2086), - [anon_sym_LT] = ACTIONS(2086), - [anon_sym_GT_EQ] = ACTIONS(2084), - [anon_sym_LT_EQ] = ACTIONS(2084), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_match] = ACTIONS(2086), - [anon_sym_EQ_GT] = ACTIONS(2084), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_transform] = ACTIONS(2086), - [anon_sym_filter] = ACTIONS(2086), - [anon_sym_find] = ACTIONS(2086), - [anon_sym_remove] = ACTIONS(2086), - [anon_sym_reduce] = ACTIONS(2086), - [anon_sym_select] = ACTIONS(2086), - [anon_sym_insert] = ACTIONS(2086), - [anon_sym_async] = ACTIONS(2086), - [anon_sym_PIPE] = ACTIONS(2086), - [anon_sym_table] = ACTIONS(2086), - [anon_sym_assert] = ACTIONS(2086), - [anon_sym_assert_equal] = ACTIONS(2086), - [anon_sym_download] = ACTIONS(2086), - [anon_sym_help] = ACTIONS(2086), - [anon_sym_length] = ACTIONS(2086), - [anon_sym_output] = ACTIONS(2086), - [anon_sym_output_error] = ACTIONS(2086), - [anon_sym_type] = ACTIONS(2086), - [anon_sym_append] = ACTIONS(2086), - [anon_sym_metadata] = ACTIONS(2086), - [anon_sym_move] = ACTIONS(2086), - [anon_sym_read] = ACTIONS(2086), - [anon_sym_workdir] = ACTIONS(2086), - [anon_sym_write] = ACTIONS(2086), - [anon_sym_from_json] = ACTIONS(2086), - [anon_sym_to_json] = ACTIONS(2086), - [anon_sym_to_string] = ACTIONS(2086), - [anon_sym_to_float] = ACTIONS(2086), - [anon_sym_bash] = ACTIONS(2086), - [anon_sym_fish] = ACTIONS(2086), - [anon_sym_raw] = ACTIONS(2086), - [anon_sym_sh] = ACTIONS(2086), - [anon_sym_zsh] = ACTIONS(2086), - [anon_sym_random] = ACTIONS(2086), - [anon_sym_random_boolean] = ACTIONS(2086), - [anon_sym_random_float] = ACTIONS(2086), - [anon_sym_random_integer] = ACTIONS(2086), - [anon_sym_columns] = ACTIONS(2086), - [anon_sym_rows] = ACTIONS(2086), - [anon_sym_reverse] = ACTIONS(2086), + [sym_block] = STATE(1069), + [sym_statement] = STATE(382), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(382), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [478] = { - [sym_expression] = STATE(942), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(440), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(848), + [sym_statement] = STATE(39), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(39), + [sym_identifier] = ACTIONS(875), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), }, [479] = { - [sym_math_operator] = STATE(623), - [sym_logic_operator] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(2130), - [sym_integer] = ACTIONS(1940), - [sym_float] = ACTIONS(1938), - [sym_string] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_COLON] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_transform] = ACTIONS(1940), - [anon_sym_filter] = ACTIONS(1940), - [anon_sym_find] = ACTIONS(1940), - [anon_sym_remove] = ACTIONS(1940), - [anon_sym_reduce] = ACTIONS(1940), - [anon_sym_select] = ACTIONS(1940), - [anon_sym_insert] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_table] = ACTIONS(1940), - [anon_sym_assert] = ACTIONS(1940), - [anon_sym_assert_equal] = ACTIONS(1940), - [anon_sym_download] = ACTIONS(1940), - [anon_sym_help] = ACTIONS(1940), - [anon_sym_length] = ACTIONS(1940), - [anon_sym_output] = ACTIONS(1940), - [anon_sym_output_error] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_append] = ACTIONS(1940), - [anon_sym_metadata] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_read] = ACTIONS(1940), - [anon_sym_workdir] = ACTIONS(1940), - [anon_sym_write] = ACTIONS(1940), - [anon_sym_from_json] = ACTIONS(1940), - [anon_sym_to_json] = ACTIONS(1940), - [anon_sym_to_string] = ACTIONS(1940), - [anon_sym_to_float] = ACTIONS(1940), - [anon_sym_bash] = ACTIONS(1940), - [anon_sym_fish] = ACTIONS(1940), - [anon_sym_raw] = ACTIONS(1940), - [anon_sym_sh] = ACTIONS(1940), - [anon_sym_zsh] = ACTIONS(1940), - [anon_sym_random] = ACTIONS(1940), - [anon_sym_random_boolean] = ACTIONS(1940), - [anon_sym_random_float] = ACTIONS(1940), - [anon_sym_random_integer] = ACTIONS(1940), - [anon_sym_columns] = ACTIONS(1940), - [anon_sym_rows] = ACTIONS(1940), - [anon_sym_reverse] = ACTIONS(1940), + [sym_block] = STATE(872), + [sym_statement] = STATE(46), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(1198), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [480] = { - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2080), - [anon_sym_RPAREN] = ACTIONS(2080), - [anon_sym_COMMA] = ACTIONS(2080), - [sym_integer] = ACTIONS(2082), - [sym_float] = ACTIONS(2080), - [sym_string] = ACTIONS(2080), - [anon_sym_true] = ACTIONS(2082), - [anon_sym_false] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_RBRACK] = ACTIONS(2080), - [anon_sym_COLON] = ACTIONS(2080), - [anon_sym_DOT_DOT] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_PERCENT] = ACTIONS(2080), - [anon_sym_EQ_EQ] = ACTIONS(2080), - [anon_sym_BANG_EQ] = ACTIONS(2080), - [anon_sym_AMP_AMP] = ACTIONS(2080), - [anon_sym_PIPE_PIPE] = ACTIONS(2080), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2080), - [anon_sym_LT_EQ] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2082), - [anon_sym_match] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2082), - [anon_sym_for] = ACTIONS(2082), - [anon_sym_transform] = ACTIONS(2082), - [anon_sym_filter] = ACTIONS(2082), - [anon_sym_find] = ACTIONS(2082), - [anon_sym_remove] = ACTIONS(2082), - [anon_sym_reduce] = ACTIONS(2082), - [anon_sym_select] = ACTIONS(2082), - [anon_sym_insert] = ACTIONS(2082), - [anon_sym_async] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_table] = ACTIONS(2082), - [anon_sym_assert] = ACTIONS(2082), - [anon_sym_assert_equal] = ACTIONS(2082), - [anon_sym_download] = ACTIONS(2082), - [anon_sym_help] = ACTIONS(2082), - [anon_sym_length] = ACTIONS(2082), - [anon_sym_output] = ACTIONS(2082), - [anon_sym_output_error] = ACTIONS(2082), - [anon_sym_type] = ACTIONS(2082), - [anon_sym_append] = ACTIONS(2082), - [anon_sym_metadata] = ACTIONS(2082), - [anon_sym_move] = ACTIONS(2082), - [anon_sym_read] = ACTIONS(2082), - [anon_sym_workdir] = ACTIONS(2082), - [anon_sym_write] = ACTIONS(2082), - [anon_sym_from_json] = ACTIONS(2082), - [anon_sym_to_json] = ACTIONS(2082), - [anon_sym_to_string] = ACTIONS(2082), - [anon_sym_to_float] = ACTIONS(2082), - [anon_sym_bash] = ACTIONS(2082), - [anon_sym_fish] = ACTIONS(2082), - [anon_sym_raw] = ACTIONS(2082), - [anon_sym_sh] = ACTIONS(2082), - [anon_sym_zsh] = ACTIONS(2082), - [anon_sym_random] = ACTIONS(2082), - [anon_sym_random_boolean] = ACTIONS(2082), - [anon_sym_random_float] = ACTIONS(2082), - [anon_sym_random_integer] = ACTIONS(2082), - [anon_sym_columns] = ACTIONS(2082), - [anon_sym_rows] = ACTIONS(2082), - [anon_sym_reverse] = ACTIONS(2082), + [sym_block] = STATE(858), + [sym_statement] = STATE(39), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(39), + [sym_identifier] = ACTIONS(875), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), }, [481] = { - [ts_builtin_sym_end] = ACTIONS(2060), - [sym_identifier] = ACTIONS(2062), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_RBRACE] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2060), - [anon_sym_RPAREN] = ACTIONS(2060), - [anon_sym_COMMA] = ACTIONS(2060), - [sym_integer] = ACTIONS(2062), - [sym_float] = ACTIONS(2060), - [sym_string] = ACTIONS(2060), - [anon_sym_true] = ACTIONS(2062), - [anon_sym_false] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_RBRACK] = ACTIONS(2060), - [anon_sym_COLON] = ACTIONS(2060), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_PERCENT] = ACTIONS(2060), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2060), - [anon_sym_AMP_AMP] = ACTIONS(2060), - [anon_sym_PIPE_PIPE] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2062), - [anon_sym_LT] = ACTIONS(2062), - [anon_sym_GT_EQ] = ACTIONS(2060), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2062), - [anon_sym_match] = ACTIONS(2062), - [anon_sym_EQ_GT] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2062), - [anon_sym_for] = ACTIONS(2062), - [anon_sym_transform] = ACTIONS(2062), - [anon_sym_filter] = ACTIONS(2062), - [anon_sym_find] = ACTIONS(2062), - [anon_sym_remove] = ACTIONS(2062), - [anon_sym_reduce] = ACTIONS(2062), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_insert] = ACTIONS(2062), - [anon_sym_async] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_table] = ACTIONS(2062), - [anon_sym_assert] = ACTIONS(2062), - [anon_sym_assert_equal] = ACTIONS(2062), - [anon_sym_download] = ACTIONS(2062), - [anon_sym_help] = ACTIONS(2062), - [anon_sym_length] = ACTIONS(2062), - [anon_sym_output] = ACTIONS(2062), - [anon_sym_output_error] = ACTIONS(2062), - [anon_sym_type] = ACTIONS(2062), - [anon_sym_append] = ACTIONS(2062), - [anon_sym_metadata] = ACTIONS(2062), - [anon_sym_move] = ACTIONS(2062), - [anon_sym_read] = ACTIONS(2062), - [anon_sym_workdir] = ACTIONS(2062), - [anon_sym_write] = ACTIONS(2062), - [anon_sym_from_json] = ACTIONS(2062), - [anon_sym_to_json] = ACTIONS(2062), - [anon_sym_to_string] = ACTIONS(2062), - [anon_sym_to_float] = ACTIONS(2062), - [anon_sym_bash] = ACTIONS(2062), - [anon_sym_fish] = ACTIONS(2062), - [anon_sym_raw] = ACTIONS(2062), - [anon_sym_sh] = ACTIONS(2062), - [anon_sym_zsh] = ACTIONS(2062), - [anon_sym_random] = ACTIONS(2062), - [anon_sym_random_boolean] = ACTIONS(2062), - [anon_sym_random_float] = ACTIONS(2062), - [anon_sym_random_integer] = ACTIONS(2062), - [anon_sym_columns] = ACTIONS(2062), - [anon_sym_rows] = ACTIONS(2062), - [anon_sym_reverse] = ACTIONS(2062), + [sym_block] = STATE(851), + [sym_statement] = STATE(46), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(1198), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [482] = { - [ts_builtin_sym_end] = ACTIONS(2120), - [sym_identifier] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_LPAREN] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2120), - [anon_sym_COMMA] = ACTIONS(2120), - [sym_integer] = ACTIONS(2122), - [sym_float] = ACTIONS(2120), - [sym_string] = ACTIONS(2120), - [anon_sym_true] = ACTIONS(2122), - [anon_sym_false] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2120), - [anon_sym_RBRACK] = ACTIONS(2120), - [anon_sym_COLON] = ACTIONS(2120), - [anon_sym_DOT_DOT] = ACTIONS(2120), - [anon_sym_PLUS] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_SLASH] = ACTIONS(2120), - [anon_sym_PERCENT] = ACTIONS(2120), - [anon_sym_EQ_EQ] = ACTIONS(2120), - [anon_sym_BANG_EQ] = ACTIONS(2120), - [anon_sym_AMP_AMP] = ACTIONS(2120), - [anon_sym_PIPE_PIPE] = ACTIONS(2120), - [anon_sym_GT] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_GT_EQ] = ACTIONS(2120), - [anon_sym_LT_EQ] = ACTIONS(2120), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_match] = ACTIONS(2122), - [anon_sym_EQ_GT] = ACTIONS(2120), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_transform] = ACTIONS(2122), - [anon_sym_filter] = ACTIONS(2122), - [anon_sym_find] = ACTIONS(2122), - [anon_sym_remove] = ACTIONS(2122), - [anon_sym_reduce] = ACTIONS(2122), - [anon_sym_select] = ACTIONS(2122), - [anon_sym_insert] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_table] = ACTIONS(2122), - [anon_sym_assert] = ACTIONS(2122), - [anon_sym_assert_equal] = ACTIONS(2122), - [anon_sym_download] = ACTIONS(2122), - [anon_sym_help] = ACTIONS(2122), - [anon_sym_length] = ACTIONS(2122), - [anon_sym_output] = ACTIONS(2122), - [anon_sym_output_error] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_append] = ACTIONS(2122), - [anon_sym_metadata] = ACTIONS(2122), - [anon_sym_move] = ACTIONS(2122), - [anon_sym_read] = ACTIONS(2122), - [anon_sym_workdir] = ACTIONS(2122), - [anon_sym_write] = ACTIONS(2122), - [anon_sym_from_json] = ACTIONS(2122), - [anon_sym_to_json] = ACTIONS(2122), - [anon_sym_to_string] = ACTIONS(2122), - [anon_sym_to_float] = ACTIONS(2122), - [anon_sym_bash] = ACTIONS(2122), - [anon_sym_fish] = ACTIONS(2122), - [anon_sym_raw] = ACTIONS(2122), - [anon_sym_sh] = ACTIONS(2122), - [anon_sym_zsh] = ACTIONS(2122), - [anon_sym_random] = ACTIONS(2122), - [anon_sym_random_boolean] = ACTIONS(2122), - [anon_sym_random_float] = ACTIONS(2122), - [anon_sym_random_integer] = ACTIONS(2122), - [anon_sym_columns] = ACTIONS(2122), - [anon_sym_rows] = ACTIONS(2122), - [anon_sym_reverse] = ACTIONS(2122), + [sym_block] = STATE(704), + [sym_statement] = STATE(24), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(24), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [483] = { - [sym_expression] = STATE(971), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(516), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(688), + [sym_statement] = STATE(24), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(24), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [484] = { - [ts_builtin_sym_end] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1996), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_RBRACE] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_RPAREN] = ACTIONS(1994), - [anon_sym_COMMA] = ACTIONS(1994), - [sym_integer] = ACTIONS(1996), - [sym_float] = ACTIONS(1994), - [sym_string] = ACTIONS(1994), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_RBRACK] = ACTIONS(1994), - [anon_sym_COLON] = ACTIONS(1994), - [anon_sym_DOT_DOT] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1996), - [anon_sym_STAR] = ACTIONS(1994), - [anon_sym_SLASH] = ACTIONS(1994), - [anon_sym_PERCENT] = ACTIONS(1994), - [anon_sym_EQ_EQ] = ACTIONS(1994), - [anon_sym_BANG_EQ] = ACTIONS(1994), - [anon_sym_AMP_AMP] = ACTIONS(1994), - [anon_sym_PIPE_PIPE] = ACTIONS(1994), - [anon_sym_GT] = ACTIONS(1996), - [anon_sym_LT] = ACTIONS(1996), - [anon_sym_GT_EQ] = ACTIONS(1994), - [anon_sym_LT_EQ] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1996), - [anon_sym_match] = ACTIONS(1996), - [anon_sym_EQ_GT] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1996), - [anon_sym_for] = ACTIONS(1996), - [anon_sym_transform] = ACTIONS(1996), - [anon_sym_filter] = ACTIONS(1996), - [anon_sym_find] = ACTIONS(1996), - [anon_sym_remove] = ACTIONS(1996), - [anon_sym_reduce] = ACTIONS(1996), - [anon_sym_select] = ACTIONS(1996), - [anon_sym_insert] = ACTIONS(1996), - [anon_sym_async] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(1996), - [anon_sym_table] = ACTIONS(1996), - [anon_sym_assert] = ACTIONS(1996), - [anon_sym_assert_equal] = ACTIONS(1996), - [anon_sym_download] = ACTIONS(1996), - [anon_sym_help] = ACTIONS(1996), - [anon_sym_length] = ACTIONS(1996), - [anon_sym_output] = ACTIONS(1996), - [anon_sym_output_error] = ACTIONS(1996), - [anon_sym_type] = ACTIONS(1996), - [anon_sym_append] = ACTIONS(1996), - [anon_sym_metadata] = ACTIONS(1996), - [anon_sym_move] = ACTIONS(1996), - [anon_sym_read] = ACTIONS(1996), - [anon_sym_workdir] = ACTIONS(1996), - [anon_sym_write] = ACTIONS(1996), - [anon_sym_from_json] = ACTIONS(1996), - [anon_sym_to_json] = ACTIONS(1996), - [anon_sym_to_string] = ACTIONS(1996), - [anon_sym_to_float] = ACTIONS(1996), - [anon_sym_bash] = ACTIONS(1996), - [anon_sym_fish] = ACTIONS(1996), - [anon_sym_raw] = ACTIONS(1996), - [anon_sym_sh] = ACTIONS(1996), - [anon_sym_zsh] = ACTIONS(1996), - [anon_sym_random] = ACTIONS(1996), - [anon_sym_random_boolean] = ACTIONS(1996), - [anon_sym_random_float] = ACTIONS(1996), - [anon_sym_random_integer] = ACTIONS(1996), - [anon_sym_columns] = ACTIONS(1996), - [anon_sym_rows] = ACTIONS(1996), - [anon_sym_reverse] = ACTIONS(1996), + [sym_block] = STATE(788), + [sym_statement] = STATE(22), + [sym_expression] = STATE(685), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(576), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(647), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(229), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(247), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(251), + [anon_sym_for] = ACTIONS(253), + [anon_sym_asyncfor] = ACTIONS(255), + [anon_sym_transform] = ACTIONS(257), + [anon_sym_filter] = ACTIONS(259), + [anon_sym_find] = ACTIONS(261), + [anon_sym_remove] = ACTIONS(263), + [anon_sym_reduce] = ACTIONS(265), + [anon_sym_select] = ACTIONS(267), + [anon_sym_insert] = ACTIONS(269), + [anon_sym_async] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), }, [485] = { - [sym_expression] = STATE(974), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(607), + [sym_statement] = STATE(12), + [sym_expression] = STATE(583), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(567), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [aux_sym_block_repeat1] = STATE(12), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_asyncfor] = ACTIONS(127), + [anon_sym_transform] = ACTIONS(129), + [anon_sym_filter] = ACTIONS(131), + [anon_sym_find] = ACTIONS(133), + [anon_sym_remove] = ACTIONS(135), + [anon_sym_reduce] = ACTIONS(137), + [anon_sym_select] = ACTIONS(139), + [anon_sym_insert] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [486] = { - [ts_builtin_sym_end] = ACTIONS(2116), - [sym_identifier] = ACTIONS(2118), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2116), - [anon_sym_RBRACE] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_LPAREN] = ACTIONS(2116), - [anon_sym_RPAREN] = ACTIONS(2116), - [anon_sym_COMMA] = ACTIONS(2116), - [sym_integer] = ACTIONS(2118), - [sym_float] = ACTIONS(2116), - [sym_string] = ACTIONS(2116), - [anon_sym_true] = ACTIONS(2118), - [anon_sym_false] = ACTIONS(2118), - [anon_sym_LBRACK] = ACTIONS(2116), - [anon_sym_RBRACK] = ACTIONS(2116), - [anon_sym_COLON] = ACTIONS(2116), - [anon_sym_DOT_DOT] = ACTIONS(2116), - [anon_sym_PLUS] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2118), - [anon_sym_STAR] = ACTIONS(2116), - [anon_sym_SLASH] = ACTIONS(2116), - [anon_sym_PERCENT] = ACTIONS(2116), - [anon_sym_EQ_EQ] = ACTIONS(2116), - [anon_sym_BANG_EQ] = ACTIONS(2116), - [anon_sym_AMP_AMP] = ACTIONS(2116), - [anon_sym_PIPE_PIPE] = ACTIONS(2116), - [anon_sym_GT] = ACTIONS(2118), - [anon_sym_LT] = ACTIONS(2118), - [anon_sym_GT_EQ] = ACTIONS(2116), - [anon_sym_LT_EQ] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2118), - [anon_sym_match] = ACTIONS(2118), - [anon_sym_EQ_GT] = ACTIONS(2116), - [anon_sym_while] = ACTIONS(2118), - [anon_sym_for] = ACTIONS(2118), - [anon_sym_transform] = ACTIONS(2118), - [anon_sym_filter] = ACTIONS(2118), - [anon_sym_find] = ACTIONS(2118), - [anon_sym_remove] = ACTIONS(2118), - [anon_sym_reduce] = ACTIONS(2118), - [anon_sym_select] = ACTIONS(2118), - [anon_sym_insert] = ACTIONS(2118), - [anon_sym_async] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2118), - [anon_sym_table] = ACTIONS(2118), - [anon_sym_assert] = ACTIONS(2118), - [anon_sym_assert_equal] = ACTIONS(2118), - [anon_sym_download] = ACTIONS(2118), - [anon_sym_help] = ACTIONS(2118), - [anon_sym_length] = ACTIONS(2118), - [anon_sym_output] = ACTIONS(2118), - [anon_sym_output_error] = ACTIONS(2118), - [anon_sym_type] = ACTIONS(2118), - [anon_sym_append] = ACTIONS(2118), - [anon_sym_metadata] = ACTIONS(2118), - [anon_sym_move] = ACTIONS(2118), - [anon_sym_read] = ACTIONS(2118), - [anon_sym_workdir] = ACTIONS(2118), - [anon_sym_write] = ACTIONS(2118), - [anon_sym_from_json] = ACTIONS(2118), - [anon_sym_to_json] = ACTIONS(2118), - [anon_sym_to_string] = ACTIONS(2118), - [anon_sym_to_float] = ACTIONS(2118), - [anon_sym_bash] = ACTIONS(2118), - [anon_sym_fish] = ACTIONS(2118), - [anon_sym_raw] = ACTIONS(2118), - [anon_sym_sh] = ACTIONS(2118), - [anon_sym_zsh] = ACTIONS(2118), - [anon_sym_random] = ACTIONS(2118), - [anon_sym_random_boolean] = ACTIONS(2118), - [anon_sym_random_float] = ACTIONS(2118), - [anon_sym_random_integer] = ACTIONS(2118), - [anon_sym_columns] = ACTIONS(2118), - [anon_sym_rows] = ACTIONS(2118), - [anon_sym_reverse] = ACTIONS(2118), + [sym_block] = STATE(1069), + [sym_statement] = STATE(381), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [487] = { - [sym_expression] = STATE(968), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(603), + [sym_statement] = STATE(27), + [sym_expression] = STATE(663), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(637), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1998), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(296), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(313), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_asyncfor] = ACTIONS(321), + [anon_sym_transform] = ACTIONS(323), + [anon_sym_filter] = ACTIONS(325), + [anon_sym_find] = ACTIONS(327), + [anon_sym_remove] = ACTIONS(329), + [anon_sym_reduce] = ACTIONS(331), + [anon_sym_select] = ACTIONS(333), + [anon_sym_insert] = ACTIONS(335), + [anon_sym_async] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(341), + [anon_sym_assert_equal] = ACTIONS(341), + [anon_sym_download] = ACTIONS(341), + [anon_sym_help] = ACTIONS(341), + [anon_sym_length] = ACTIONS(341), + [anon_sym_output] = ACTIONS(341), + [anon_sym_output_error] = ACTIONS(341), + [anon_sym_type] = ACTIONS(341), + [anon_sym_append] = ACTIONS(341), + [anon_sym_metadata] = ACTIONS(341), + [anon_sym_move] = ACTIONS(341), + [anon_sym_read] = ACTIONS(341), + [anon_sym_workdir] = ACTIONS(341), + [anon_sym_write] = ACTIONS(341), + [anon_sym_from_json] = ACTIONS(341), + [anon_sym_to_json] = ACTIONS(341), + [anon_sym_to_string] = ACTIONS(341), + [anon_sym_to_float] = ACTIONS(341), + [anon_sym_bash] = ACTIONS(341), + [anon_sym_fish] = ACTIONS(341), + [anon_sym_raw] = ACTIONS(341), + [anon_sym_sh] = ACTIONS(341), + [anon_sym_zsh] = ACTIONS(341), + [anon_sym_random] = ACTIONS(341), + [anon_sym_random_boolean] = ACTIONS(341), + [anon_sym_random_float] = ACTIONS(341), + [anon_sym_random_integer] = ACTIONS(341), + [anon_sym_columns] = ACTIONS(341), + [anon_sym_rows] = ACTIONS(341), + [anon_sym_reverse] = ACTIONS(341), }, [488] = { - [sym_math_operator] = STATE(773), - [sym_logic_operator] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_elseif] = ACTIONS(1964), - [anon_sym_else] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [sym_block] = STATE(1004), + [sym_statement] = STATE(260), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3083), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [489] = { - [ts_builtin_sym_end] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2110), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_RBRACE] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2108), - [anon_sym_LPAREN] = ACTIONS(2108), - [anon_sym_RPAREN] = ACTIONS(2108), - [anon_sym_COMMA] = ACTIONS(2108), - [sym_integer] = ACTIONS(2110), - [sym_float] = ACTIONS(2108), - [sym_string] = ACTIONS(2108), - [anon_sym_true] = ACTIONS(2110), - [anon_sym_false] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_RBRACK] = ACTIONS(2108), - [anon_sym_COLON] = ACTIONS(2108), - [anon_sym_DOT_DOT] = ACTIONS(2108), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_STAR] = ACTIONS(2108), - [anon_sym_SLASH] = ACTIONS(2108), - [anon_sym_PERCENT] = ACTIONS(2108), - [anon_sym_EQ_EQ] = ACTIONS(2108), - [anon_sym_BANG_EQ] = ACTIONS(2108), - [anon_sym_AMP_AMP] = ACTIONS(2108), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2110), - [anon_sym_GT_EQ] = ACTIONS(2108), - [anon_sym_LT_EQ] = ACTIONS(2108), - [anon_sym_if] = ACTIONS(2110), - [anon_sym_match] = ACTIONS(2110), - [anon_sym_EQ_GT] = ACTIONS(2108), - [anon_sym_while] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(2110), - [anon_sym_transform] = ACTIONS(2110), - [anon_sym_filter] = ACTIONS(2110), - [anon_sym_find] = ACTIONS(2110), - [anon_sym_remove] = ACTIONS(2110), - [anon_sym_reduce] = ACTIONS(2110), - [anon_sym_select] = ACTIONS(2110), - [anon_sym_insert] = ACTIONS(2110), - [anon_sym_async] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(2110), - [anon_sym_table] = ACTIONS(2110), - [anon_sym_assert] = ACTIONS(2110), - [anon_sym_assert_equal] = ACTIONS(2110), - [anon_sym_download] = ACTIONS(2110), - [anon_sym_help] = ACTIONS(2110), - [anon_sym_length] = ACTIONS(2110), - [anon_sym_output] = ACTIONS(2110), - [anon_sym_output_error] = ACTIONS(2110), - [anon_sym_type] = ACTIONS(2110), - [anon_sym_append] = ACTIONS(2110), - [anon_sym_metadata] = ACTIONS(2110), - [anon_sym_move] = ACTIONS(2110), - [anon_sym_read] = ACTIONS(2110), - [anon_sym_workdir] = ACTIONS(2110), - [anon_sym_write] = ACTIONS(2110), - [anon_sym_from_json] = ACTIONS(2110), - [anon_sym_to_json] = ACTIONS(2110), - [anon_sym_to_string] = ACTIONS(2110), - [anon_sym_to_float] = ACTIONS(2110), - [anon_sym_bash] = ACTIONS(2110), - [anon_sym_fish] = ACTIONS(2110), - [anon_sym_raw] = ACTIONS(2110), - [anon_sym_sh] = ACTIONS(2110), - [anon_sym_zsh] = ACTIONS(2110), - [anon_sym_random] = ACTIONS(2110), - [anon_sym_random_boolean] = ACTIONS(2110), - [anon_sym_random_float] = ACTIONS(2110), - [anon_sym_random_integer] = ACTIONS(2110), - [anon_sym_columns] = ACTIONS(2110), - [anon_sym_rows] = ACTIONS(2110), - [anon_sym_reverse] = ACTIONS(2110), + [sym_block] = STATE(622), + [sym_statement] = STATE(12), + [sym_expression] = STATE(583), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(567), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [aux_sym_block_repeat1] = STATE(12), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_asyncfor] = ACTIONS(127), + [anon_sym_transform] = ACTIONS(129), + [anon_sym_filter] = ACTIONS(131), + [anon_sym_find] = ACTIONS(133), + [anon_sym_remove] = ACTIONS(135), + [anon_sym_reduce] = ACTIONS(137), + [anon_sym_select] = ACTIONS(139), + [anon_sym_insert] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [490] = { - [sym_expression] = STATE(938), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(171), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(723), + [sym_statement] = STATE(35), + [sym_expression] = STATE(701), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(582), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1866), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(320), + [aux_sym_block_repeat1] = STATE(35), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(497), + [anon_sym_EQ_GT] = ACTIONS(499), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_asyncfor] = ACTIONS(505), + [anon_sym_transform] = ACTIONS(507), + [anon_sym_filter] = ACTIONS(509), + [anon_sym_find] = ACTIONS(511), + [anon_sym_remove] = ACTIONS(513), + [anon_sym_reduce] = ACTIONS(515), + [anon_sym_select] = ACTIONS(517), + [anon_sym_insert] = ACTIONS(519), + [anon_sym_async] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(525), + [anon_sym_assert_equal] = ACTIONS(525), + [anon_sym_download] = ACTIONS(525), + [anon_sym_help] = ACTIONS(525), + [anon_sym_length] = ACTIONS(525), + [anon_sym_output] = ACTIONS(525), + [anon_sym_output_error] = ACTIONS(525), + [anon_sym_type] = ACTIONS(525), + [anon_sym_append] = ACTIONS(525), + [anon_sym_metadata] = ACTIONS(525), + [anon_sym_move] = ACTIONS(525), + [anon_sym_read] = ACTIONS(525), + [anon_sym_workdir] = ACTIONS(525), + [anon_sym_write] = ACTIONS(525), + [anon_sym_from_json] = ACTIONS(525), + [anon_sym_to_json] = ACTIONS(525), + [anon_sym_to_string] = ACTIONS(525), + [anon_sym_to_float] = ACTIONS(525), + [anon_sym_bash] = ACTIONS(525), + [anon_sym_fish] = ACTIONS(525), + [anon_sym_raw] = ACTIONS(525), + [anon_sym_sh] = ACTIONS(525), + [anon_sym_zsh] = ACTIONS(525), + [anon_sym_random] = ACTIONS(525), + [anon_sym_random_boolean] = ACTIONS(525), + [anon_sym_random_float] = ACTIONS(525), + [anon_sym_random_integer] = ACTIONS(525), + [anon_sym_columns] = ACTIONS(525), + [anon_sym_rows] = ACTIONS(525), + [anon_sym_reverse] = ACTIONS(525), }, [491] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1345), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_COMMA] = ACTIONS(1322), - [sym_integer] = ACTIONS(1345), - [sym_float] = ACTIONS(1322), - [sym_string] = ACTIONS(1322), - [anon_sym_true] = ACTIONS(1345), - [anon_sym_false] = ACTIONS(1345), - [anon_sym_LBRACK] = ACTIONS(1322), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_EQ_GT] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_transform] = ACTIONS(1345), - [anon_sym_filter] = ACTIONS(1345), - [anon_sym_find] = ACTIONS(1345), - [anon_sym_remove] = ACTIONS(1345), - [anon_sym_reduce] = ACTIONS(1345), - [anon_sym_select] = ACTIONS(1345), - [anon_sym_insert] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1345), - [anon_sym_table] = ACTIONS(1345), - [anon_sym_assert] = ACTIONS(1345), - [anon_sym_assert_equal] = ACTIONS(1345), - [anon_sym_download] = ACTIONS(1345), - [anon_sym_help] = ACTIONS(1345), - [anon_sym_length] = ACTIONS(1345), - [anon_sym_output] = ACTIONS(1345), - [anon_sym_output_error] = ACTIONS(1345), - [anon_sym_type] = ACTIONS(1345), - [anon_sym_append] = ACTIONS(1345), - [anon_sym_metadata] = ACTIONS(1345), - [anon_sym_move] = ACTIONS(1345), - [anon_sym_read] = ACTIONS(1345), - [anon_sym_workdir] = ACTIONS(1345), - [anon_sym_write] = ACTIONS(1345), - [anon_sym_from_json] = ACTIONS(1345), - [anon_sym_to_json] = ACTIONS(1345), - [anon_sym_to_string] = ACTIONS(1345), - [anon_sym_to_float] = ACTIONS(1345), - [anon_sym_bash] = ACTIONS(1345), - [anon_sym_fish] = ACTIONS(1345), - [anon_sym_raw] = ACTIONS(1345), - [anon_sym_sh] = ACTIONS(1345), - [anon_sym_zsh] = ACTIONS(1345), - [anon_sym_random] = ACTIONS(1345), - [anon_sym_random_boolean] = ACTIONS(1345), - [anon_sym_random_float] = ACTIONS(1345), - [anon_sym_random_integer] = ACTIONS(1345), - [anon_sym_columns] = ACTIONS(1345), - [anon_sym_rows] = ACTIONS(1345), - [anon_sym_reverse] = ACTIONS(1345), + [sym_statement] = STATE(376), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [492] = { - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(501), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1245), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_EQ_GT] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_assert_equal] = ACTIONS(1907), - [anon_sym_download] = ACTIONS(1907), - [anon_sym_help] = ACTIONS(1907), - [anon_sym_length] = ACTIONS(1907), - [anon_sym_output] = ACTIONS(1907), - [anon_sym_output_error] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_append] = ACTIONS(1907), - [anon_sym_metadata] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_read] = ACTIONS(1907), - [anon_sym_workdir] = ACTIONS(1907), - [anon_sym_write] = ACTIONS(1907), - [anon_sym_from_json] = ACTIONS(1907), - [anon_sym_to_json] = ACTIONS(1907), - [anon_sym_to_string] = ACTIONS(1907), - [anon_sym_to_float] = ACTIONS(1907), - [anon_sym_bash] = ACTIONS(1907), - [anon_sym_fish] = ACTIONS(1907), - [anon_sym_raw] = ACTIONS(1907), - [anon_sym_sh] = ACTIONS(1907), - [anon_sym_zsh] = ACTIONS(1907), - [anon_sym_random] = ACTIONS(1907), - [anon_sym_random_boolean] = ACTIONS(1907), - [anon_sym_random_float] = ACTIONS(1907), - [anon_sym_random_integer] = ACTIONS(1907), - [anon_sym_columns] = ACTIONS(1907), - [anon_sym_rows] = ACTIONS(1907), - [anon_sym_reverse] = ACTIONS(1907), + [sym_block] = STATE(799), + [sym_statement] = STATE(22), + [sym_expression] = STATE(685), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(576), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(647), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(229), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(247), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(251), + [anon_sym_for] = ACTIONS(253), + [anon_sym_asyncfor] = ACTIONS(255), + [anon_sym_transform] = ACTIONS(257), + [anon_sym_filter] = ACTIONS(259), + [anon_sym_find] = ACTIONS(261), + [anon_sym_remove] = ACTIONS(263), + [anon_sym_reduce] = ACTIONS(265), + [anon_sym_select] = ACTIONS(267), + [anon_sym_insert] = ACTIONS(269), + [anon_sym_async] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), }, [493] = { - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_RBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(1964), - [anon_sym_DOT_DOT] = ACTIONS(1964), - [anon_sym_PLUS] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_SLASH] = ACTIONS(1964), - [anon_sym_PERCENT] = ACTIONS(1964), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_GT] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_GT_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [sym_statement] = STATE(376), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [494] = { - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(501), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1318), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_EQ_GT] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_assert_equal] = ACTIONS(1907), - [anon_sym_download] = ACTIONS(1907), - [anon_sym_help] = ACTIONS(1907), - [anon_sym_length] = ACTIONS(1907), - [anon_sym_output] = ACTIONS(1907), - [anon_sym_output_error] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_append] = ACTIONS(1907), - [anon_sym_metadata] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_read] = ACTIONS(1907), - [anon_sym_workdir] = ACTIONS(1907), - [anon_sym_write] = ACTIONS(1907), - [anon_sym_from_json] = ACTIONS(1907), - [anon_sym_to_json] = ACTIONS(1907), - [anon_sym_to_string] = ACTIONS(1907), - [anon_sym_to_float] = ACTIONS(1907), - [anon_sym_bash] = ACTIONS(1907), - [anon_sym_fish] = ACTIONS(1907), - [anon_sym_raw] = ACTIONS(1907), - [anon_sym_sh] = ACTIONS(1907), - [anon_sym_zsh] = ACTIONS(1907), - [anon_sym_random] = ACTIONS(1907), - [anon_sym_random_boolean] = ACTIONS(1907), - [anon_sym_random_float] = ACTIONS(1907), - [anon_sym_random_integer] = ACTIONS(1907), - [anon_sym_columns] = ACTIONS(1907), - [anon_sym_rows] = ACTIONS(1907), - [anon_sym_reverse] = ACTIONS(1907), + [sym_block] = STATE(604), + [sym_statement] = STATE(27), + [sym_expression] = STATE(663), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(637), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1998), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(296), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(313), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_asyncfor] = ACTIONS(321), + [anon_sym_transform] = ACTIONS(323), + [anon_sym_filter] = ACTIONS(325), + [anon_sym_find] = ACTIONS(327), + [anon_sym_remove] = ACTIONS(329), + [anon_sym_reduce] = ACTIONS(331), + [anon_sym_select] = ACTIONS(333), + [anon_sym_insert] = ACTIONS(335), + [anon_sym_async] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(341), + [anon_sym_assert_equal] = ACTIONS(341), + [anon_sym_download] = ACTIONS(341), + [anon_sym_help] = ACTIONS(341), + [anon_sym_length] = ACTIONS(341), + [anon_sym_output] = ACTIONS(341), + [anon_sym_output_error] = ACTIONS(341), + [anon_sym_type] = ACTIONS(341), + [anon_sym_append] = ACTIONS(341), + [anon_sym_metadata] = ACTIONS(341), + [anon_sym_move] = ACTIONS(341), + [anon_sym_read] = ACTIONS(341), + [anon_sym_workdir] = ACTIONS(341), + [anon_sym_write] = ACTIONS(341), + [anon_sym_from_json] = ACTIONS(341), + [anon_sym_to_json] = ACTIONS(341), + [anon_sym_to_string] = ACTIONS(341), + [anon_sym_to_float] = ACTIONS(341), + [anon_sym_bash] = ACTIONS(341), + [anon_sym_fish] = ACTIONS(341), + [anon_sym_raw] = ACTIONS(341), + [anon_sym_sh] = ACTIONS(341), + [anon_sym_zsh] = ACTIONS(341), + [anon_sym_random] = ACTIONS(341), + [anon_sym_random_boolean] = ACTIONS(341), + [anon_sym_random_float] = ACTIONS(341), + [anon_sym_random_integer] = ACTIONS(341), + [anon_sym_columns] = ACTIONS(341), + [anon_sym_rows] = ACTIONS(341), + [anon_sym_reverse] = ACTIONS(341), }, [495] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(1885), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [sym_string] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_RBRACK] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_transform] = ACTIONS(1887), - [anon_sym_filter] = ACTIONS(1887), - [anon_sym_find] = ACTIONS(1887), - [anon_sym_remove] = ACTIONS(1887), - [anon_sym_reduce] = ACTIONS(1887), - [anon_sym_select] = ACTIONS(1887), - [anon_sym_insert] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_table] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_assert_equal] = ACTIONS(1887), - [anon_sym_download] = ACTIONS(1887), - [anon_sym_help] = ACTIONS(1887), - [anon_sym_length] = ACTIONS(1887), - [anon_sym_output] = ACTIONS(1887), - [anon_sym_output_error] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_append] = ACTIONS(1887), - [anon_sym_metadata] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_read] = ACTIONS(1887), - [anon_sym_workdir] = ACTIONS(1887), - [anon_sym_write] = ACTIONS(1887), - [anon_sym_from_json] = ACTIONS(1887), - [anon_sym_to_json] = ACTIONS(1887), - [anon_sym_to_string] = ACTIONS(1887), - [anon_sym_to_float] = ACTIONS(1887), - [anon_sym_bash] = ACTIONS(1887), - [anon_sym_fish] = ACTIONS(1887), - [anon_sym_raw] = ACTIONS(1887), - [anon_sym_sh] = ACTIONS(1887), - [anon_sym_zsh] = ACTIONS(1887), - [anon_sym_random] = ACTIONS(1887), - [anon_sym_random_boolean] = ACTIONS(1887), - [anon_sym_random_float] = ACTIONS(1887), - [anon_sym_random_integer] = ACTIONS(1887), - [anon_sym_columns] = ACTIONS(1887), - [anon_sym_rows] = ACTIONS(1887), - [anon_sym_reverse] = ACTIONS(1887), + [sym_statement] = STATE(376), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [496] = { - [sym_expression] = STATE(961), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(215), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(607), + [sym_statement] = STATE(10), + [sym_expression] = STATE(571), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(558), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [497] = { - [sym_expression] = STATE(951), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(858), + [sym_statement] = STATE(61), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [498] = { - [sym_expression] = STATE(962), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(569), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(622), + [sym_statement] = STATE(10), + [sym_expression] = STATE(571), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(558), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [499] = { - [sym_math_operator] = STATE(733), - [sym_logic_operator] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1926), - [sym_integer] = ACTIONS(1928), - [sym_float] = ACTIONS(1926), - [sym_string] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_COLON] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(1926), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_transform] = ACTIONS(1928), - [anon_sym_filter] = ACTIONS(1928), - [anon_sym_find] = ACTIONS(1928), - [anon_sym_remove] = ACTIONS(1928), - [anon_sym_reduce] = ACTIONS(1928), - [anon_sym_select] = ACTIONS(1928), - [anon_sym_insert] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_table] = ACTIONS(1928), - [anon_sym_assert] = ACTIONS(1928), - [anon_sym_assert_equal] = ACTIONS(1928), - [anon_sym_download] = ACTIONS(1928), - [anon_sym_help] = ACTIONS(1928), - [anon_sym_length] = ACTIONS(1928), - [anon_sym_output] = ACTIONS(1928), - [anon_sym_output_error] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_append] = ACTIONS(1928), - [anon_sym_metadata] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_read] = ACTIONS(1928), - [anon_sym_workdir] = ACTIONS(1928), - [anon_sym_write] = ACTIONS(1928), - [anon_sym_from_json] = ACTIONS(1928), - [anon_sym_to_json] = ACTIONS(1928), - [anon_sym_to_string] = ACTIONS(1928), - [anon_sym_to_float] = ACTIONS(1928), - [anon_sym_bash] = ACTIONS(1928), - [anon_sym_fish] = ACTIONS(1928), - [anon_sym_raw] = ACTIONS(1928), - [anon_sym_sh] = ACTIONS(1928), - [anon_sym_zsh] = ACTIONS(1928), - [anon_sym_random] = ACTIONS(1928), - [anon_sym_random_boolean] = ACTIONS(1928), - [anon_sym_random_float] = ACTIONS(1928), - [anon_sym_random_integer] = ACTIONS(1928), - [anon_sym_columns] = ACTIONS(1928), - [anon_sym_rows] = ACTIONS(1928), - [anon_sym_reverse] = ACTIONS(1928), + [sym_block] = STATE(1545), + [sym_statement] = STATE(254), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(254), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [500] = { - [ts_builtin_sym_end] = ACTIONS(2104), - [sym_identifier] = ACTIONS(2106), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(2104), - [anon_sym_COMMA] = ACTIONS(2104), - [sym_integer] = ACTIONS(2106), - [sym_float] = ACTIONS(2104), - [sym_string] = ACTIONS(2104), - [anon_sym_true] = ACTIONS(2106), - [anon_sym_false] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2104), - [anon_sym_RBRACK] = ACTIONS(2104), - [anon_sym_COLON] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2104), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_SLASH] = ACTIONS(2104), - [anon_sym_PERCENT] = ACTIONS(2104), - [anon_sym_EQ_EQ] = ACTIONS(2104), - [anon_sym_BANG_EQ] = ACTIONS(2104), - [anon_sym_AMP_AMP] = ACTIONS(2104), - [anon_sym_PIPE_PIPE] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(2106), - [anon_sym_GT_EQ] = ACTIONS(2104), - [anon_sym_LT_EQ] = ACTIONS(2104), - [anon_sym_if] = ACTIONS(2106), - [anon_sym_match] = ACTIONS(2106), - [anon_sym_EQ_GT] = ACTIONS(2104), - [anon_sym_while] = ACTIONS(2106), - [anon_sym_for] = ACTIONS(2106), - [anon_sym_transform] = ACTIONS(2106), - [anon_sym_filter] = ACTIONS(2106), - [anon_sym_find] = ACTIONS(2106), - [anon_sym_remove] = ACTIONS(2106), - [anon_sym_reduce] = ACTIONS(2106), - [anon_sym_select] = ACTIONS(2106), - [anon_sym_insert] = ACTIONS(2106), - [anon_sym_async] = ACTIONS(2106), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_table] = ACTIONS(2106), - [anon_sym_assert] = ACTIONS(2106), - [anon_sym_assert_equal] = ACTIONS(2106), - [anon_sym_download] = ACTIONS(2106), - [anon_sym_help] = ACTIONS(2106), - [anon_sym_length] = ACTIONS(2106), - [anon_sym_output] = ACTIONS(2106), - [anon_sym_output_error] = ACTIONS(2106), - [anon_sym_type] = ACTIONS(2106), - [anon_sym_append] = ACTIONS(2106), - [anon_sym_metadata] = ACTIONS(2106), - [anon_sym_move] = ACTIONS(2106), - [anon_sym_read] = ACTIONS(2106), - [anon_sym_workdir] = ACTIONS(2106), - [anon_sym_write] = ACTIONS(2106), - [anon_sym_from_json] = ACTIONS(2106), - [anon_sym_to_json] = ACTIONS(2106), - [anon_sym_to_string] = ACTIONS(2106), - [anon_sym_to_float] = ACTIONS(2106), - [anon_sym_bash] = ACTIONS(2106), - [anon_sym_fish] = ACTIONS(2106), - [anon_sym_raw] = ACTIONS(2106), - [anon_sym_sh] = ACTIONS(2106), - [anon_sym_zsh] = ACTIONS(2106), - [anon_sym_random] = ACTIONS(2106), - [anon_sym_random_boolean] = ACTIONS(2106), - [anon_sym_random_float] = ACTIONS(2106), - [anon_sym_random_integer] = ACTIONS(2106), - [anon_sym_columns] = ACTIONS(2106), - [anon_sym_rows] = ACTIONS(2106), - [anon_sym_reverse] = ACTIONS(2106), + [sym_block] = STATE(696), + [sym_statement] = STATE(24), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(24), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [501] = { - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(501), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1368), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_RPAREN] = ACTIONS(1322), - [sym_integer] = ACTIONS(1377), - [sym_float] = ACTIONS(1380), - [sym_string] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_EQ_GT] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1920), - [anon_sym_assert] = ACTIONS(1923), - [anon_sym_assert_equal] = ACTIONS(1923), - [anon_sym_download] = ACTIONS(1923), - [anon_sym_help] = ACTIONS(1923), - [anon_sym_length] = ACTIONS(1923), - [anon_sym_output] = ACTIONS(1923), - [anon_sym_output_error] = ACTIONS(1923), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_append] = ACTIONS(1923), - [anon_sym_metadata] = ACTIONS(1923), - [anon_sym_move] = ACTIONS(1923), - [anon_sym_read] = ACTIONS(1923), - [anon_sym_workdir] = ACTIONS(1923), - [anon_sym_write] = ACTIONS(1923), - [anon_sym_from_json] = ACTIONS(1923), - [anon_sym_to_json] = ACTIONS(1923), - [anon_sym_to_string] = ACTIONS(1923), - [anon_sym_to_float] = ACTIONS(1923), - [anon_sym_bash] = ACTIONS(1923), - [anon_sym_fish] = ACTIONS(1923), - [anon_sym_raw] = ACTIONS(1923), - [anon_sym_sh] = ACTIONS(1923), - [anon_sym_zsh] = ACTIONS(1923), - [anon_sym_random] = ACTIONS(1923), - [anon_sym_random_boolean] = ACTIONS(1923), - [anon_sym_random_float] = ACTIONS(1923), - [anon_sym_random_integer] = ACTIONS(1923), - [anon_sym_columns] = ACTIONS(1923), - [anon_sym_rows] = ACTIONS(1923), - [anon_sym_reverse] = ACTIONS(1923), + [sym_block] = STATE(1021), + [sym_statement] = STATE(352), + [sym_expression] = STATE(877), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(782), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(978), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1639), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_asyncfor] = ACTIONS(1647), + [anon_sym_transform] = ACTIONS(1649), + [anon_sym_filter] = ACTIONS(1651), + [anon_sym_find] = ACTIONS(1653), + [anon_sym_remove] = ACTIONS(1655), + [anon_sym_reduce] = ACTIONS(1657), + [anon_sym_select] = ACTIONS(1659), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [502] = { - [ts_builtin_sym_end] = ACTIONS(2090), - [sym_identifier] = ACTIONS(2092), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2090), - [anon_sym_RPAREN] = ACTIONS(2090), - [anon_sym_COMMA] = ACTIONS(2090), - [sym_integer] = ACTIONS(2092), - [sym_float] = ACTIONS(2090), - [sym_string] = ACTIONS(2090), - [anon_sym_true] = ACTIONS(2092), - [anon_sym_false] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2090), - [anon_sym_RBRACK] = ACTIONS(2090), - [anon_sym_COLON] = ACTIONS(2090), - [anon_sym_DOT_DOT] = ACTIONS(2090), - [anon_sym_PLUS] = ACTIONS(2090), - [anon_sym_DASH] = ACTIONS(2092), - [anon_sym_STAR] = ACTIONS(2090), - [anon_sym_SLASH] = ACTIONS(2090), - [anon_sym_PERCENT] = ACTIONS(2090), - [anon_sym_EQ_EQ] = ACTIONS(2090), - [anon_sym_BANG_EQ] = ACTIONS(2090), - [anon_sym_AMP_AMP] = ACTIONS(2090), - [anon_sym_PIPE_PIPE] = ACTIONS(2090), - [anon_sym_GT] = ACTIONS(2092), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_GT_EQ] = ACTIONS(2090), - [anon_sym_LT_EQ] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_match] = ACTIONS(2092), - [anon_sym_EQ_GT] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_for] = ACTIONS(2092), - [anon_sym_transform] = ACTIONS(2092), - [anon_sym_filter] = ACTIONS(2092), - [anon_sym_find] = ACTIONS(2092), - [anon_sym_remove] = ACTIONS(2092), - [anon_sym_reduce] = ACTIONS(2092), - [anon_sym_select] = ACTIONS(2092), - [anon_sym_insert] = ACTIONS(2092), - [anon_sym_async] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_table] = ACTIONS(2092), - [anon_sym_assert] = ACTIONS(2092), - [anon_sym_assert_equal] = ACTIONS(2092), - [anon_sym_download] = ACTIONS(2092), - [anon_sym_help] = ACTIONS(2092), - [anon_sym_length] = ACTIONS(2092), - [anon_sym_output] = ACTIONS(2092), - [anon_sym_output_error] = ACTIONS(2092), - [anon_sym_type] = ACTIONS(2092), - [anon_sym_append] = ACTIONS(2092), - [anon_sym_metadata] = ACTIONS(2092), - [anon_sym_move] = ACTIONS(2092), - [anon_sym_read] = ACTIONS(2092), - [anon_sym_workdir] = ACTIONS(2092), - [anon_sym_write] = ACTIONS(2092), - [anon_sym_from_json] = ACTIONS(2092), - [anon_sym_to_json] = ACTIONS(2092), - [anon_sym_to_string] = ACTIONS(2092), - [anon_sym_to_float] = ACTIONS(2092), - [anon_sym_bash] = ACTIONS(2092), - [anon_sym_fish] = ACTIONS(2092), - [anon_sym_raw] = ACTIONS(2092), - [anon_sym_sh] = ACTIONS(2092), - [anon_sym_zsh] = ACTIONS(2092), - [anon_sym_random] = ACTIONS(2092), - [anon_sym_random_boolean] = ACTIONS(2092), - [anon_sym_random_float] = ACTIONS(2092), - [anon_sym_random_integer] = ACTIONS(2092), - [anon_sym_columns] = ACTIONS(2092), - [anon_sym_rows] = ACTIONS(2092), - [anon_sym_reverse] = ACTIONS(2092), + [sym_block] = STATE(622), + [sym_statement] = STATE(27), + [sym_expression] = STATE(663), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(637), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1998), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(296), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(313), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_asyncfor] = ACTIONS(321), + [anon_sym_transform] = ACTIONS(323), + [anon_sym_filter] = ACTIONS(325), + [anon_sym_find] = ACTIONS(327), + [anon_sym_remove] = ACTIONS(329), + [anon_sym_reduce] = ACTIONS(331), + [anon_sym_select] = ACTIONS(333), + [anon_sym_insert] = ACTIONS(335), + [anon_sym_async] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(341), + [anon_sym_assert_equal] = ACTIONS(341), + [anon_sym_download] = ACTIONS(341), + [anon_sym_help] = ACTIONS(341), + [anon_sym_length] = ACTIONS(341), + [anon_sym_output] = ACTIONS(341), + [anon_sym_output_error] = ACTIONS(341), + [anon_sym_type] = ACTIONS(341), + [anon_sym_append] = ACTIONS(341), + [anon_sym_metadata] = ACTIONS(341), + [anon_sym_move] = ACTIONS(341), + [anon_sym_read] = ACTIONS(341), + [anon_sym_workdir] = ACTIONS(341), + [anon_sym_write] = ACTIONS(341), + [anon_sym_from_json] = ACTIONS(341), + [anon_sym_to_json] = ACTIONS(341), + [anon_sym_to_string] = ACTIONS(341), + [anon_sym_to_float] = ACTIONS(341), + [anon_sym_bash] = ACTIONS(341), + [anon_sym_fish] = ACTIONS(341), + [anon_sym_raw] = ACTIONS(341), + [anon_sym_sh] = ACTIONS(341), + [anon_sym_zsh] = ACTIONS(341), + [anon_sym_random] = ACTIONS(341), + [anon_sym_random_boolean] = ACTIONS(341), + [anon_sym_random_float] = ACTIONS(341), + [anon_sym_random_integer] = ACTIONS(341), + [anon_sym_columns] = ACTIONS(341), + [anon_sym_rows] = ACTIONS(341), + [anon_sym_reverse] = ACTIONS(341), }, [503] = { - [sym_expression] = STATE(948), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(519), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(1545), + [sym_statement] = STATE(60), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(875), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), }, [504] = { - [sym_math_operator] = STATE(733), - [sym_logic_operator] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [sym_string] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_transform] = ACTIONS(1915), - [anon_sym_filter] = ACTIONS(1915), - [anon_sym_find] = ACTIONS(1915), - [anon_sym_remove] = ACTIONS(1915), - [anon_sym_reduce] = ACTIONS(1915), - [anon_sym_select] = ACTIONS(1915), - [anon_sym_insert] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_table] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_assert_equal] = ACTIONS(1915), - [anon_sym_download] = ACTIONS(1915), - [anon_sym_help] = ACTIONS(1915), - [anon_sym_length] = ACTIONS(1915), - [anon_sym_output] = ACTIONS(1915), - [anon_sym_output_error] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_append] = ACTIONS(1915), - [anon_sym_metadata] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_read] = ACTIONS(1915), - [anon_sym_workdir] = ACTIONS(1915), - [anon_sym_write] = ACTIONS(1915), - [anon_sym_from_json] = ACTIONS(1915), - [anon_sym_to_json] = ACTIONS(1915), - [anon_sym_to_string] = ACTIONS(1915), - [anon_sym_to_float] = ACTIONS(1915), - [anon_sym_bash] = ACTIONS(1915), - [anon_sym_fish] = ACTIONS(1915), - [anon_sym_raw] = ACTIONS(1915), - [anon_sym_sh] = ACTIONS(1915), - [anon_sym_zsh] = ACTIONS(1915), - [anon_sym_random] = ACTIONS(1915), - [anon_sym_random_boolean] = ACTIONS(1915), - [anon_sym_random_float] = ACTIONS(1915), - [anon_sym_random_integer] = ACTIONS(1915), - [anon_sym_columns] = ACTIONS(1915), - [anon_sym_rows] = ACTIONS(1915), - [anon_sym_reverse] = ACTIONS(1915), + [sym_block] = STATE(777), + [sym_statement] = STATE(51), + [sym_expression] = STATE(817), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(748), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(760), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(1280), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_asyncfor] = ACTIONS(1294), + [anon_sym_transform] = ACTIONS(1296), + [anon_sym_filter] = ACTIONS(1298), + [anon_sym_find] = ACTIONS(1300), + [anon_sym_remove] = ACTIONS(1302), + [anon_sym_reduce] = ACTIONS(1304), + [anon_sym_select] = ACTIONS(1306), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [505] = { - [sym_math_operator] = STATE(733), - [sym_logic_operator] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1949), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1947), - [sym_string] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_transform] = ACTIONS(1949), - [anon_sym_filter] = ACTIONS(1949), - [anon_sym_find] = ACTIONS(1949), - [anon_sym_remove] = ACTIONS(1949), - [anon_sym_reduce] = ACTIONS(1949), - [anon_sym_select] = ACTIONS(1949), - [anon_sym_insert] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_table] = ACTIONS(1949), - [anon_sym_assert] = ACTIONS(1949), - [anon_sym_assert_equal] = ACTIONS(1949), - [anon_sym_download] = ACTIONS(1949), - [anon_sym_help] = ACTIONS(1949), - [anon_sym_length] = ACTIONS(1949), - [anon_sym_output] = ACTIONS(1949), - [anon_sym_output_error] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_append] = ACTIONS(1949), - [anon_sym_metadata] = ACTIONS(1949), - [anon_sym_move] = ACTIONS(1949), - [anon_sym_read] = ACTIONS(1949), - [anon_sym_workdir] = ACTIONS(1949), - [anon_sym_write] = ACTIONS(1949), - [anon_sym_from_json] = ACTIONS(1949), - [anon_sym_to_json] = ACTIONS(1949), - [anon_sym_to_string] = ACTIONS(1949), - [anon_sym_to_float] = ACTIONS(1949), - [anon_sym_bash] = ACTIONS(1949), - [anon_sym_fish] = ACTIONS(1949), - [anon_sym_raw] = ACTIONS(1949), - [anon_sym_sh] = ACTIONS(1949), - [anon_sym_zsh] = ACTIONS(1949), - [anon_sym_random] = ACTIONS(1949), - [anon_sym_random_boolean] = ACTIONS(1949), - [anon_sym_random_float] = ACTIONS(1949), - [anon_sym_random_integer] = ACTIONS(1949), - [anon_sym_columns] = ACTIONS(1949), - [anon_sym_rows] = ACTIONS(1949), - [anon_sym_reverse] = ACTIONS(1949), + [sym_block] = STATE(777), + [sym_statement] = STATE(22), + [sym_expression] = STATE(685), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(576), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(647), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(229), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(247), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(251), + [anon_sym_for] = ACTIONS(253), + [anon_sym_asyncfor] = ACTIONS(255), + [anon_sym_transform] = ACTIONS(257), + [anon_sym_filter] = ACTIONS(259), + [anon_sym_find] = ACTIONS(261), + [anon_sym_remove] = ACTIONS(263), + [anon_sym_reduce] = ACTIONS(265), + [anon_sym_select] = ACTIONS(267), + [anon_sym_insert] = ACTIONS(269), + [anon_sym_async] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), }, [506] = { - [ts_builtin_sym_end] = ACTIONS(2098), - [sym_identifier] = ACTIONS(2100), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2098), - [anon_sym_SEMI] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2098), - [anon_sym_RPAREN] = ACTIONS(2098), - [anon_sym_COMMA] = ACTIONS(2098), - [sym_integer] = ACTIONS(2100), - [sym_float] = ACTIONS(2098), - [sym_string] = ACTIONS(2098), - [anon_sym_true] = ACTIONS(2100), - [anon_sym_false] = ACTIONS(2100), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_RBRACK] = ACTIONS(2098), - [anon_sym_COLON] = ACTIONS(2098), - [anon_sym_DOT_DOT] = ACTIONS(2098), - [anon_sym_PLUS] = ACTIONS(2098), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_SLASH] = ACTIONS(2098), - [anon_sym_PERCENT] = ACTIONS(2098), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2100), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2100), - [anon_sym_match] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2098), - [anon_sym_while] = ACTIONS(2100), - [anon_sym_for] = ACTIONS(2100), - [anon_sym_transform] = ACTIONS(2100), - [anon_sym_filter] = ACTIONS(2100), - [anon_sym_find] = ACTIONS(2100), - [anon_sym_remove] = ACTIONS(2100), - [anon_sym_reduce] = ACTIONS(2100), - [anon_sym_select] = ACTIONS(2100), - [anon_sym_insert] = ACTIONS(2100), - [anon_sym_async] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_table] = ACTIONS(2100), - [anon_sym_assert] = ACTIONS(2100), - [anon_sym_assert_equal] = ACTIONS(2100), - [anon_sym_download] = ACTIONS(2100), - [anon_sym_help] = ACTIONS(2100), - [anon_sym_length] = ACTIONS(2100), - [anon_sym_output] = ACTIONS(2100), - [anon_sym_output_error] = ACTIONS(2100), - [anon_sym_type] = ACTIONS(2100), - [anon_sym_append] = ACTIONS(2100), - [anon_sym_metadata] = ACTIONS(2100), - [anon_sym_move] = ACTIONS(2100), - [anon_sym_read] = ACTIONS(2100), - [anon_sym_workdir] = ACTIONS(2100), - [anon_sym_write] = ACTIONS(2100), - [anon_sym_from_json] = ACTIONS(2100), - [anon_sym_to_json] = ACTIONS(2100), - [anon_sym_to_string] = ACTIONS(2100), - [anon_sym_to_float] = ACTIONS(2100), - [anon_sym_bash] = ACTIONS(2100), - [anon_sym_fish] = ACTIONS(2100), - [anon_sym_raw] = ACTIONS(2100), - [anon_sym_sh] = ACTIONS(2100), - [anon_sym_zsh] = ACTIONS(2100), - [anon_sym_random] = ACTIONS(2100), - [anon_sym_random_boolean] = ACTIONS(2100), - [anon_sym_random_float] = ACTIONS(2100), - [anon_sym_random_integer] = ACTIONS(2100), - [anon_sym_columns] = ACTIONS(2100), - [anon_sym_rows] = ACTIONS(2100), - [anon_sym_reverse] = ACTIONS(2100), + [sym_block] = STATE(1004), + [sym_statement] = STATE(256), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(256), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3083), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [507] = { - [sym_math_operator] = STATE(733), - [sym_logic_operator] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(1951), - [sym_identifier] = ACTIONS(1953), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1951), - [sym_string] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_transform] = ACTIONS(1953), - [anon_sym_filter] = ACTIONS(1953), - [anon_sym_find] = ACTIONS(1953), - [anon_sym_remove] = ACTIONS(1953), - [anon_sym_reduce] = ACTIONS(1953), - [anon_sym_select] = ACTIONS(1953), - [anon_sym_insert] = ACTIONS(1953), - [anon_sym_async] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_table] = ACTIONS(1953), - [anon_sym_assert] = ACTIONS(1953), - [anon_sym_assert_equal] = ACTIONS(1953), - [anon_sym_download] = ACTIONS(1953), - [anon_sym_help] = ACTIONS(1953), - [anon_sym_length] = ACTIONS(1953), - [anon_sym_output] = ACTIONS(1953), - [anon_sym_output_error] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_append] = ACTIONS(1953), - [anon_sym_metadata] = ACTIONS(1953), - [anon_sym_move] = ACTIONS(1953), - [anon_sym_read] = ACTIONS(1953), - [anon_sym_workdir] = ACTIONS(1953), - [anon_sym_write] = ACTIONS(1953), - [anon_sym_from_json] = ACTIONS(1953), - [anon_sym_to_json] = ACTIONS(1953), - [anon_sym_to_string] = ACTIONS(1953), - [anon_sym_to_float] = ACTIONS(1953), - [anon_sym_bash] = ACTIONS(1953), - [anon_sym_fish] = ACTIONS(1953), - [anon_sym_raw] = ACTIONS(1953), - [anon_sym_sh] = ACTIONS(1953), - [anon_sym_zsh] = ACTIONS(1953), - [anon_sym_random] = ACTIONS(1953), - [anon_sym_random_boolean] = ACTIONS(1953), - [anon_sym_random_float] = ACTIONS(1953), - [anon_sym_random_integer] = ACTIONS(1953), - [anon_sym_columns] = ACTIONS(1953), - [anon_sym_rows] = ACTIONS(1953), - [anon_sym_reverse] = ACTIONS(1953), + [sym_block] = STATE(1011), + [sym_statement] = STATE(256), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(256), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3083), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [508] = { - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(492), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [sym_block] = STATE(861), + [sym_statement] = STATE(57), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1237), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), [sym_string] = ACTIONS(13), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_assert_equal] = ACTIONS(1907), - [anon_sym_download] = ACTIONS(1907), - [anon_sym_help] = ACTIONS(1907), - [anon_sym_length] = ACTIONS(1907), - [anon_sym_output] = ACTIONS(1907), - [anon_sym_output_error] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_append] = ACTIONS(1907), - [anon_sym_metadata] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_read] = ACTIONS(1907), - [anon_sym_workdir] = ACTIONS(1907), - [anon_sym_write] = ACTIONS(1907), - [anon_sym_from_json] = ACTIONS(1907), - [anon_sym_to_json] = ACTIONS(1907), - [anon_sym_to_string] = ACTIONS(1907), - [anon_sym_to_float] = ACTIONS(1907), - [anon_sym_bash] = ACTIONS(1907), - [anon_sym_fish] = ACTIONS(1907), - [anon_sym_raw] = ACTIONS(1907), - [anon_sym_sh] = ACTIONS(1907), - [anon_sym_zsh] = ACTIONS(1907), - [anon_sym_random] = ACTIONS(1907), - [anon_sym_random_boolean] = ACTIONS(1907), - [anon_sym_random_float] = ACTIONS(1907), - [anon_sym_random_integer] = ACTIONS(1907), - [anon_sym_columns] = ACTIONS(1907), - [anon_sym_rows] = ACTIONS(1907), - [anon_sym_reverse] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [509] = { - [sym_expression] = STATE(949), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(1545), + [sym_statement] = STATE(253), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [510] = { - [sym_math_operator] = STATE(733), - [sym_logic_operator] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1934), - [sym_integer] = ACTIONS(1936), - [sym_float] = ACTIONS(1934), - [sym_string] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_DOT_DOT] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_EQ_EQ] = ACTIONS(1934), - [anon_sym_BANG_EQ] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_PIPE_PIPE] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_transform] = ACTIONS(1936), - [anon_sym_filter] = ACTIONS(1936), - [anon_sym_find] = ACTIONS(1936), - [anon_sym_remove] = ACTIONS(1936), - [anon_sym_reduce] = ACTIONS(1936), - [anon_sym_select] = ACTIONS(1936), - [anon_sym_insert] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_table] = ACTIONS(1936), - [anon_sym_assert] = ACTIONS(1936), - [anon_sym_assert_equal] = ACTIONS(1936), - [anon_sym_download] = ACTIONS(1936), - [anon_sym_help] = ACTIONS(1936), - [anon_sym_length] = ACTIONS(1936), - [anon_sym_output] = ACTIONS(1936), - [anon_sym_output_error] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_append] = ACTIONS(1936), - [anon_sym_metadata] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_read] = ACTIONS(1936), - [anon_sym_workdir] = ACTIONS(1936), - [anon_sym_write] = ACTIONS(1936), - [anon_sym_from_json] = ACTIONS(1936), - [anon_sym_to_json] = ACTIONS(1936), - [anon_sym_to_string] = ACTIONS(1936), - [anon_sym_to_float] = ACTIONS(1936), - [anon_sym_bash] = ACTIONS(1936), - [anon_sym_fish] = ACTIONS(1936), - [anon_sym_raw] = ACTIONS(1936), - [anon_sym_sh] = ACTIONS(1936), - [anon_sym_zsh] = ACTIONS(1936), - [anon_sym_random] = ACTIONS(1936), - [anon_sym_random_boolean] = ACTIONS(1936), - [anon_sym_random_float] = ACTIONS(1936), - [anon_sym_random_integer] = ACTIONS(1936), - [anon_sym_columns] = ACTIONS(1936), - [anon_sym_rows] = ACTIONS(1936), - [anon_sym_reverse] = ACTIONS(1936), + [sym_block] = STATE(727), + [sym_statement] = STATE(24), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [aux_sym_block_repeat1] = STATE(24), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, [511] = { - [sym_math_operator] = STATE(736), - [sym_logic_operator] = STATE(738), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_elseif] = ACTIONS(1964), - [anon_sym_else] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [sym_block] = STATE(858), + [sym_statement] = STATE(57), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [512] = { - [sym_math_operator] = STATE(733), - [sym_logic_operator] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(1964), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [sym_block] = STATE(788), + [sym_statement] = STATE(38), + [sym_expression] = STATE(779), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(655), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(724), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1860), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(341), + [aux_sym_block_repeat1] = STATE(38), + [sym_identifier] = ACTIONS(839), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(845), + [anon_sym_EQ_GT] = ACTIONS(847), + [anon_sym_while] = ACTIONS(849), + [anon_sym_for] = ACTIONS(851), + [anon_sym_asyncfor] = ACTIONS(853), + [anon_sym_transform] = ACTIONS(855), + [anon_sym_filter] = ACTIONS(857), + [anon_sym_find] = ACTIONS(859), + [anon_sym_remove] = ACTIONS(861), + [anon_sym_reduce] = ACTIONS(863), + [anon_sym_select] = ACTIONS(865), + [anon_sym_insert] = ACTIONS(867), + [anon_sym_async] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(871), + [anon_sym_assert] = ACTIONS(873), + [anon_sym_assert_equal] = ACTIONS(873), + [anon_sym_download] = ACTIONS(873), + [anon_sym_help] = ACTIONS(873), + [anon_sym_length] = ACTIONS(873), + [anon_sym_output] = ACTIONS(873), + [anon_sym_output_error] = ACTIONS(873), + [anon_sym_type] = ACTIONS(873), + [anon_sym_append] = ACTIONS(873), + [anon_sym_metadata] = ACTIONS(873), + [anon_sym_move] = ACTIONS(873), + [anon_sym_read] = ACTIONS(873), + [anon_sym_workdir] = ACTIONS(873), + [anon_sym_write] = ACTIONS(873), + [anon_sym_from_json] = ACTIONS(873), + [anon_sym_to_json] = ACTIONS(873), + [anon_sym_to_string] = ACTIONS(873), + [anon_sym_to_float] = ACTIONS(873), + [anon_sym_bash] = ACTIONS(873), + [anon_sym_fish] = ACTIONS(873), + [anon_sym_raw] = ACTIONS(873), + [anon_sym_sh] = ACTIONS(873), + [anon_sym_zsh] = ACTIONS(873), + [anon_sym_random] = ACTIONS(873), + [anon_sym_random_boolean] = ACTIONS(873), + [anon_sym_random_float] = ACTIONS(873), + [anon_sym_random_integer] = ACTIONS(873), + [anon_sym_columns] = ACTIONS(873), + [anon_sym_rows] = ACTIONS(873), + [anon_sym_reverse] = ACTIONS(873), }, [513] = { - [sym_math_operator] = STATE(733), - [sym_logic_operator] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1930), - [sym_string] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_COLON] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1930), - [anon_sym_PIPE_PIPE] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_transform] = ACTIONS(1932), - [anon_sym_filter] = ACTIONS(1932), - [anon_sym_find] = ACTIONS(1932), - [anon_sym_remove] = ACTIONS(1932), - [anon_sym_reduce] = ACTIONS(1932), - [anon_sym_select] = ACTIONS(1932), - [anon_sym_insert] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_table] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_assert_equal] = ACTIONS(1932), - [anon_sym_download] = ACTIONS(1932), - [anon_sym_help] = ACTIONS(1932), - [anon_sym_length] = ACTIONS(1932), - [anon_sym_output] = ACTIONS(1932), - [anon_sym_output_error] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_append] = ACTIONS(1932), - [anon_sym_metadata] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_read] = ACTIONS(1932), - [anon_sym_workdir] = ACTIONS(1932), - [anon_sym_write] = ACTIONS(1932), - [anon_sym_from_json] = ACTIONS(1932), - [anon_sym_to_json] = ACTIONS(1932), - [anon_sym_to_string] = ACTIONS(1932), - [anon_sym_to_float] = ACTIONS(1932), - [anon_sym_bash] = ACTIONS(1932), - [anon_sym_fish] = ACTIONS(1932), - [anon_sym_raw] = ACTIONS(1932), - [anon_sym_sh] = ACTIONS(1932), - [anon_sym_zsh] = ACTIONS(1932), - [anon_sym_random] = ACTIONS(1932), - [anon_sym_random_boolean] = ACTIONS(1932), - [anon_sym_random_float] = ACTIONS(1932), - [anon_sym_random_integer] = ACTIONS(1932), - [anon_sym_columns] = ACTIONS(1932), - [anon_sym_rows] = ACTIONS(1932), - [anon_sym_reverse] = ACTIONS(1932), + [sym_statement] = STATE(376), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [514] = { - [sym_math_operator] = STATE(800), - [sym_logic_operator] = STATE(799), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1930), - [sym_string] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_COLON] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1930), - [anon_sym_PIPE_PIPE] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_transform] = ACTIONS(1932), - [anon_sym_filter] = ACTIONS(1932), - [anon_sym_find] = ACTIONS(1932), - [anon_sym_remove] = ACTIONS(1932), - [anon_sym_reduce] = ACTIONS(1932), - [anon_sym_select] = ACTIONS(1932), - [anon_sym_insert] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_table] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_assert_equal] = ACTIONS(1932), - [anon_sym_download] = ACTIONS(1932), - [anon_sym_help] = ACTIONS(1932), - [anon_sym_length] = ACTIONS(1932), - [anon_sym_output] = ACTIONS(1932), - [anon_sym_output_error] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_append] = ACTIONS(1932), - [anon_sym_metadata] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_read] = ACTIONS(1932), - [anon_sym_workdir] = ACTIONS(1932), - [anon_sym_write] = ACTIONS(1932), - [anon_sym_from_json] = ACTIONS(1932), - [anon_sym_to_json] = ACTIONS(1932), - [anon_sym_to_string] = ACTIONS(1932), - [anon_sym_to_float] = ACTIONS(1932), - [anon_sym_bash] = ACTIONS(1932), - [anon_sym_fish] = ACTIONS(1932), - [anon_sym_raw] = ACTIONS(1932), - [anon_sym_sh] = ACTIONS(1932), - [anon_sym_zsh] = ACTIONS(1932), - [anon_sym_random] = ACTIONS(1932), - [anon_sym_random_boolean] = ACTIONS(1932), - [anon_sym_random_float] = ACTIONS(1932), - [anon_sym_random_integer] = ACTIONS(1932), - [anon_sym_columns] = ACTIONS(1932), - [anon_sym_rows] = ACTIONS(1932), - [anon_sym_reverse] = ACTIONS(1932), + [sym_block] = STATE(765), + [sym_statement] = STATE(22), + [sym_expression] = STATE(685), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(576), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(647), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(229), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(247), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(251), + [anon_sym_for] = ACTIONS(253), + [anon_sym_asyncfor] = ACTIONS(255), + [anon_sym_transform] = ACTIONS(257), + [anon_sym_filter] = ACTIONS(259), + [anon_sym_find] = ACTIONS(261), + [anon_sym_remove] = ACTIONS(263), + [anon_sym_reduce] = ACTIONS(265), + [anon_sym_select] = ACTIONS(267), + [anon_sym_insert] = ACTIONS(269), + [anon_sym_async] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), }, [515] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [sym_block] = STATE(861), + [sym_statement] = STATE(39), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(39), + [sym_identifier] = ACTIONS(875), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -52214,384 +58666,454 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), }, [516] = { - [sym_expression] = STATE(971), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(1025), + [sym_statement] = STATE(358), + [sym_expression] = STATE(859), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(754), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(985), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1566), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_asyncfor] = ACTIONS(1578), + [anon_sym_transform] = ACTIONS(1580), + [anon_sym_filter] = ACTIONS(1582), + [anon_sym_find] = ACTIONS(1584), + [anon_sym_remove] = ACTIONS(1586), + [anon_sym_reduce] = ACTIONS(1588), + [anon_sym_select] = ACTIONS(1590), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [517] = { - [sym_expression] = STATE(948), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(517), - [sym_identifier] = ACTIONS(1259), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_COMMA] = ACTIONS(1257), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(2124), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [sym_block] = STATE(1017), + [sym_statement] = STATE(352), + [sym_expression] = STATE(877), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(782), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(978), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [aux_sym_block_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1639), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_asyncfor] = ACTIONS(1647), + [anon_sym_transform] = ACTIONS(1649), + [anon_sym_filter] = ACTIONS(1651), + [anon_sym_find] = ACTIONS(1653), + [anon_sym_remove] = ACTIONS(1655), + [anon_sym_reduce] = ACTIONS(1657), + [anon_sym_select] = ACTIONS(1659), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [518] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [sym_block] = STATE(604), + [sym_statement] = STATE(12), + [sym_expression] = STATE(583), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(567), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [aux_sym_block_repeat1] = STATE(12), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_asyncfor] = ACTIONS(127), + [anon_sym_transform] = ACTIONS(129), + [anon_sym_filter] = ACTIONS(131), + [anon_sym_find] = ACTIONS(133), + [anon_sym_remove] = ACTIONS(135), + [anon_sym_reduce] = ACTIONS(137), + [anon_sym_select] = ACTIONS(139), + [anon_sym_insert] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [519] = { - [sym_expression] = STATE(948), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(517), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_COMMA] = ACTIONS(1294), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [sym_block] = STATE(1543), + [sym_statement] = STATE(253), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [520] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [sym_block] = STATE(858), + [sym_statement] = STATE(46), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(1198), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -52599,153 +59121,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [521] = { - [sym_math_operator] = STATE(800), - [sym_logic_operator] = STATE(799), - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [sym_block] = STATE(1543), + [sym_statement] = STATE(258), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(258), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [522] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [sym_block] = STATE(1004), + [sym_statement] = STATE(58), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(1198), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3083), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -52753,76 +59303,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [523] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [sym_block] = STATE(848), + [sym_statement] = STATE(46), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [aux_sym_block_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(1198), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -52830,230 +59394,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2146), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [524] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(524), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1368), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_RPAREN] = ACTIONS(1322), - [sym_integer] = ACTIONS(1377), - [sym_float] = ACTIONS(1380), - [sym_string] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_EQ_GT] = ACTIONS(1975), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1978), - [anon_sym_assert] = ACTIONS(1981), - [anon_sym_assert_equal] = ACTIONS(1981), - [anon_sym_download] = ACTIONS(1981), - [anon_sym_help] = ACTIONS(1981), - [anon_sym_length] = ACTIONS(1981), - [anon_sym_output] = ACTIONS(1981), - [anon_sym_output_error] = ACTIONS(1981), - [anon_sym_type] = ACTIONS(1981), - [anon_sym_append] = ACTIONS(1981), - [anon_sym_metadata] = ACTIONS(1981), - [anon_sym_move] = ACTIONS(1981), - [anon_sym_read] = ACTIONS(1981), - [anon_sym_workdir] = ACTIONS(1981), - [anon_sym_write] = ACTIONS(1981), - [anon_sym_from_json] = ACTIONS(1981), - [anon_sym_to_json] = ACTIONS(1981), - [anon_sym_to_string] = ACTIONS(1981), - [anon_sym_to_float] = ACTIONS(1981), - [anon_sym_bash] = ACTIONS(1981), - [anon_sym_fish] = ACTIONS(1981), - [anon_sym_raw] = ACTIONS(1981), - [anon_sym_sh] = ACTIONS(1981), - [anon_sym_zsh] = ACTIONS(1981), - [anon_sym_random] = ACTIONS(1981), - [anon_sym_random_boolean] = ACTIONS(1981), - [anon_sym_random_float] = ACTIONS(1981), - [anon_sym_random_integer] = ACTIONS(1981), - [anon_sym_columns] = ACTIONS(1981), - [anon_sym_rows] = ACTIONS(1981), - [anon_sym_reverse] = ACTIONS(1981), + [sym_block] = STATE(851), + [sym_statement] = STATE(57), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [525] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(524), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1318), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [sym_block] = STATE(765), + [sym_statement] = STATE(38), + [sym_expression] = STATE(779), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(655), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(724), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1860), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(341), + [aux_sym_block_repeat1] = STATE(38), + [sym_identifier] = ACTIONS(839), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(845), + [anon_sym_EQ_GT] = ACTIONS(847), + [anon_sym_while] = ACTIONS(849), + [anon_sym_for] = ACTIONS(851), + [anon_sym_asyncfor] = ACTIONS(853), + [anon_sym_transform] = ACTIONS(855), + [anon_sym_filter] = ACTIONS(857), + [anon_sym_find] = ACTIONS(859), + [anon_sym_remove] = ACTIONS(861), + [anon_sym_reduce] = ACTIONS(863), + [anon_sym_select] = ACTIONS(865), + [anon_sym_insert] = ACTIONS(867), + [anon_sym_async] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(871), + [anon_sym_assert] = ACTIONS(873), + [anon_sym_assert_equal] = ACTIONS(873), + [anon_sym_download] = ACTIONS(873), + [anon_sym_help] = ACTIONS(873), + [anon_sym_length] = ACTIONS(873), + [anon_sym_output] = ACTIONS(873), + [anon_sym_output_error] = ACTIONS(873), + [anon_sym_type] = ACTIONS(873), + [anon_sym_append] = ACTIONS(873), + [anon_sym_metadata] = ACTIONS(873), + [anon_sym_move] = ACTIONS(873), + [anon_sym_read] = ACTIONS(873), + [anon_sym_workdir] = ACTIONS(873), + [anon_sym_write] = ACTIONS(873), + [anon_sym_from_json] = ACTIONS(873), + [anon_sym_to_json] = ACTIONS(873), + [anon_sym_to_string] = ACTIONS(873), + [anon_sym_to_float] = ACTIONS(873), + [anon_sym_bash] = ACTIONS(873), + [anon_sym_fish] = ACTIONS(873), + [anon_sym_raw] = ACTIONS(873), + [anon_sym_sh] = ACTIONS(873), + [anon_sym_zsh] = ACTIONS(873), + [anon_sym_random] = ACTIONS(873), + [anon_sym_random_boolean] = ACTIONS(873), + [anon_sym_random_float] = ACTIONS(873), + [anon_sym_random_integer] = ACTIONS(873), + [anon_sym_columns] = ACTIONS(873), + [anon_sym_rows] = ACTIONS(873), + [anon_sym_reverse] = ACTIONS(873), }, [526] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [sym_block] = STATE(1543), + [sym_statement] = STATE(255), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [aux_sym_block_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2164), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -53061,307 +59667,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2148), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [527] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [sym_block] = STATE(777), + [sym_statement] = STATE(38), + [sym_expression] = STATE(779), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(655), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(724), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1860), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(341), + [aux_sym_block_repeat1] = STATE(38), + [sym_identifier] = ACTIONS(839), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(845), + [anon_sym_EQ_GT] = ACTIONS(847), + [anon_sym_while] = ACTIONS(849), + [anon_sym_for] = ACTIONS(851), + [anon_sym_asyncfor] = ACTIONS(853), + [anon_sym_transform] = ACTIONS(855), + [anon_sym_filter] = ACTIONS(857), + [anon_sym_find] = ACTIONS(859), + [anon_sym_remove] = ACTIONS(861), + [anon_sym_reduce] = ACTIONS(863), + [anon_sym_select] = ACTIONS(865), + [anon_sym_insert] = ACTIONS(867), + [anon_sym_async] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(871), + [anon_sym_assert] = ACTIONS(873), + [anon_sym_assert_equal] = ACTIONS(873), + [anon_sym_download] = ACTIONS(873), + [anon_sym_help] = ACTIONS(873), + [anon_sym_length] = ACTIONS(873), + [anon_sym_output] = ACTIONS(873), + [anon_sym_output_error] = ACTIONS(873), + [anon_sym_type] = ACTIONS(873), + [anon_sym_append] = ACTIONS(873), + [anon_sym_metadata] = ACTIONS(873), + [anon_sym_move] = ACTIONS(873), + [anon_sym_read] = ACTIONS(873), + [anon_sym_workdir] = ACTIONS(873), + [anon_sym_write] = ACTIONS(873), + [anon_sym_from_json] = ACTIONS(873), + [anon_sym_to_json] = ACTIONS(873), + [anon_sym_to_string] = ACTIONS(873), + [anon_sym_to_float] = ACTIONS(873), + [anon_sym_bash] = ACTIONS(873), + [anon_sym_fish] = ACTIONS(873), + [anon_sym_raw] = ACTIONS(873), + [anon_sym_sh] = ACTIONS(873), + [anon_sym_zsh] = ACTIONS(873), + [anon_sym_random] = ACTIONS(873), + [anon_sym_random_boolean] = ACTIONS(873), + [anon_sym_random_float] = ACTIONS(873), + [anon_sym_random_integer] = ACTIONS(873), + [anon_sym_columns] = ACTIONS(873), + [anon_sym_rows] = ACTIONS(873), + [anon_sym_reverse] = ACTIONS(873), }, [528] = { - [sym_math_operator] = STATE(800), - [sym_logic_operator] = STATE(799), - [ts_builtin_sym_end] = ACTIONS(1951), - [sym_identifier] = ACTIONS(1953), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1951), - [sym_string] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_transform] = ACTIONS(1953), - [anon_sym_filter] = ACTIONS(1953), - [anon_sym_find] = ACTIONS(1953), - [anon_sym_remove] = ACTIONS(1953), - [anon_sym_reduce] = ACTIONS(1953), - [anon_sym_select] = ACTIONS(1953), - [anon_sym_insert] = ACTIONS(1953), - [anon_sym_async] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_table] = ACTIONS(1953), - [anon_sym_assert] = ACTIONS(1953), - [anon_sym_assert_equal] = ACTIONS(1953), - [anon_sym_download] = ACTIONS(1953), - [anon_sym_help] = ACTIONS(1953), - [anon_sym_length] = ACTIONS(1953), - [anon_sym_output] = ACTIONS(1953), - [anon_sym_output_error] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_append] = ACTIONS(1953), - [anon_sym_metadata] = ACTIONS(1953), - [anon_sym_move] = ACTIONS(1953), - [anon_sym_read] = ACTIONS(1953), - [anon_sym_workdir] = ACTIONS(1953), - [anon_sym_write] = ACTIONS(1953), - [anon_sym_from_json] = ACTIONS(1953), - [anon_sym_to_json] = ACTIONS(1953), - [anon_sym_to_string] = ACTIONS(1953), - [anon_sym_to_float] = ACTIONS(1953), - [anon_sym_bash] = ACTIONS(1953), - [anon_sym_fish] = ACTIONS(1953), - [anon_sym_raw] = ACTIONS(1953), - [anon_sym_sh] = ACTIONS(1953), - [anon_sym_zsh] = ACTIONS(1953), - [anon_sym_random] = ACTIONS(1953), - [anon_sym_random_boolean] = ACTIONS(1953), - [anon_sym_random_float] = ACTIONS(1953), - [anon_sym_random_integer] = ACTIONS(1953), - [anon_sym_columns] = ACTIONS(1953), - [anon_sym_rows] = ACTIONS(1953), - [anon_sym_reverse] = ACTIONS(1953), + [sym_block] = STATE(1021), + [sym_statement] = STATE(358), + [sym_expression] = STATE(859), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(754), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(985), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1566), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_asyncfor] = ACTIONS(1578), + [anon_sym_transform] = ACTIONS(1580), + [anon_sym_filter] = ACTIONS(1582), + [anon_sym_find] = ACTIONS(1584), + [anon_sym_remove] = ACTIONS(1586), + [anon_sym_reduce] = ACTIONS(1588), + [anon_sym_select] = ACTIONS(1590), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [529] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1237), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [sym_block] = STATE(1017), + [sym_statement] = STATE(358), + [sym_expression] = STATE(859), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(754), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(985), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [aux_sym_block_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1566), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_asyncfor] = ACTIONS(1578), + [anon_sym_transform] = ACTIONS(1580), + [anon_sym_filter] = ACTIONS(1582), + [anon_sym_find] = ACTIONS(1584), + [anon_sym_remove] = ACTIONS(1586), + [anon_sym_reduce] = ACTIONS(1588), + [anon_sym_select] = ACTIONS(1590), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [530] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [sym_block] = STATE(1004), + [sym_statement] = STATE(54), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [aux_sym_block_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(875), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3083), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -53369,76 +60031,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), }, [531] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [sym_statement] = STATE(376), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [aux_sym_block_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(3111), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -53446,230 +60122,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [532] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2156), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [sym_block] = STATE(606), + [sym_statement] = STATE(12), + [sym_expression] = STATE(583), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(567), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [aux_sym_block_repeat1] = STATE(12), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_asyncfor] = ACTIONS(127), + [anon_sym_transform] = ACTIONS(129), + [anon_sym_filter] = ACTIONS(131), + [anon_sym_find] = ACTIONS(133), + [anon_sym_remove] = ACTIONS(135), + [anon_sym_reduce] = ACTIONS(137), + [anon_sym_select] = ACTIONS(139), + [anon_sym_insert] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [533] = { - [sym_math_operator] = STATE(800), - [sym_logic_operator] = STATE(799), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1934), - [sym_integer] = ACTIONS(1936), - [sym_float] = ACTIONS(1934), - [sym_string] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_EQ_EQ] = ACTIONS(1934), - [anon_sym_BANG_EQ] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_PIPE_PIPE] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_transform] = ACTIONS(1936), - [anon_sym_filter] = ACTIONS(1936), - [anon_sym_find] = ACTIONS(1936), - [anon_sym_remove] = ACTIONS(1936), - [anon_sym_reduce] = ACTIONS(1936), - [anon_sym_select] = ACTIONS(1936), - [anon_sym_insert] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_table] = ACTIONS(1936), - [anon_sym_assert] = ACTIONS(1936), - [anon_sym_assert_equal] = ACTIONS(1936), - [anon_sym_download] = ACTIONS(1936), - [anon_sym_help] = ACTIONS(1936), - [anon_sym_length] = ACTIONS(1936), - [anon_sym_output] = ACTIONS(1936), - [anon_sym_output_error] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_append] = ACTIONS(1936), - [anon_sym_metadata] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_read] = ACTIONS(1936), - [anon_sym_workdir] = ACTIONS(1936), - [anon_sym_write] = ACTIONS(1936), - [anon_sym_from_json] = ACTIONS(1936), - [anon_sym_to_json] = ACTIONS(1936), - [anon_sym_to_string] = ACTIONS(1936), - [anon_sym_to_float] = ACTIONS(1936), - [anon_sym_bash] = ACTIONS(1936), - [anon_sym_fish] = ACTIONS(1936), - [anon_sym_raw] = ACTIONS(1936), - [anon_sym_sh] = ACTIONS(1936), - [anon_sym_zsh] = ACTIONS(1936), - [anon_sym_random] = ACTIONS(1936), - [anon_sym_random_boolean] = ACTIONS(1936), - [anon_sym_random_float] = ACTIONS(1936), - [anon_sym_random_integer] = ACTIONS(1936), - [anon_sym_columns] = ACTIONS(1936), - [anon_sym_rows] = ACTIONS(1936), - [anon_sym_reverse] = ACTIONS(1936), + [sym_block] = STATE(603), + [sym_statement] = STATE(12), + [sym_expression] = STATE(583), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(567), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [aux_sym_block_repeat1] = STATE(12), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_asyncfor] = ACTIONS(127), + [anon_sym_transform] = ACTIONS(129), + [anon_sym_filter] = ACTIONS(131), + [anon_sym_find] = ACTIONS(133), + [anon_sym_remove] = ACTIONS(135), + [anon_sym_reduce] = ACTIONS(137), + [anon_sym_select] = ACTIONS(139), + [anon_sym_insert] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), }, [534] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [sym_statement] = STATE(865), + [sym_expression] = STATE(756), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(657), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(627), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1752), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(338), + [sym_identifier] = ACTIONS(875), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -53677,692 +60393,800 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(883), + [anon_sym_while] = ACTIONS(885), + [anon_sym_for] = ACTIONS(887), + [anon_sym_asyncfor] = ACTIONS(889), + [anon_sym_transform] = ACTIONS(891), + [anon_sym_filter] = ACTIONS(893), + [anon_sym_find] = ACTIONS(895), + [anon_sym_remove] = ACTIONS(897), + [anon_sym_reduce] = ACTIONS(899), + [anon_sym_select] = ACTIONS(901), + [anon_sym_insert] = ACTIONS(903), + [anon_sym_async] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(907), + [anon_sym_assert] = ACTIONS(909), + [anon_sym_assert_equal] = ACTIONS(909), + [anon_sym_download] = ACTIONS(909), + [anon_sym_help] = ACTIONS(909), + [anon_sym_length] = ACTIONS(909), + [anon_sym_output] = ACTIONS(909), + [anon_sym_output_error] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_append] = ACTIONS(909), + [anon_sym_metadata] = ACTIONS(909), + [anon_sym_move] = ACTIONS(909), + [anon_sym_read] = ACTIONS(909), + [anon_sym_workdir] = ACTIONS(909), + [anon_sym_write] = ACTIONS(909), + [anon_sym_from_json] = ACTIONS(909), + [anon_sym_to_json] = ACTIONS(909), + [anon_sym_to_string] = ACTIONS(909), + [anon_sym_to_float] = ACTIONS(909), + [anon_sym_bash] = ACTIONS(909), + [anon_sym_fish] = ACTIONS(909), + [anon_sym_raw] = ACTIONS(909), + [anon_sym_sh] = ACTIONS(909), + [anon_sym_zsh] = ACTIONS(909), + [anon_sym_random] = ACTIONS(909), + [anon_sym_random_boolean] = ACTIONS(909), + [anon_sym_random_float] = ACTIONS(909), + [anon_sym_random_integer] = ACTIONS(909), + [anon_sym_columns] = ACTIONS(909), + [anon_sym_rows] = ACTIONS(909), + [anon_sym_reverse] = ACTIONS(909), }, [535] = { - [sym_math_operator] = STATE(800), - [sym_logic_operator] = STATE(799), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1926), - [sym_integer] = ACTIONS(1928), - [sym_float] = ACTIONS(1926), - [sym_string] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_transform] = ACTIONS(1928), - [anon_sym_filter] = ACTIONS(1928), - [anon_sym_find] = ACTIONS(1928), - [anon_sym_remove] = ACTIONS(1928), - [anon_sym_reduce] = ACTIONS(1928), - [anon_sym_select] = ACTIONS(1928), - [anon_sym_insert] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_table] = ACTIONS(1928), - [anon_sym_assert] = ACTIONS(1928), - [anon_sym_assert_equal] = ACTIONS(1928), - [anon_sym_download] = ACTIONS(1928), - [anon_sym_help] = ACTIONS(1928), - [anon_sym_length] = ACTIONS(1928), - [anon_sym_output] = ACTIONS(1928), - [anon_sym_output_error] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_append] = ACTIONS(1928), - [anon_sym_metadata] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_read] = ACTIONS(1928), - [anon_sym_workdir] = ACTIONS(1928), - [anon_sym_write] = ACTIONS(1928), - [anon_sym_from_json] = ACTIONS(1928), - [anon_sym_to_json] = ACTIONS(1928), - [anon_sym_to_string] = ACTIONS(1928), - [anon_sym_to_float] = ACTIONS(1928), - [anon_sym_bash] = ACTIONS(1928), - [anon_sym_fish] = ACTIONS(1928), - [anon_sym_raw] = ACTIONS(1928), - [anon_sym_sh] = ACTIONS(1928), - [anon_sym_zsh] = ACTIONS(1928), - [anon_sym_random] = ACTIONS(1928), - [anon_sym_random_boolean] = ACTIONS(1928), - [anon_sym_random_float] = ACTIONS(1928), - [anon_sym_random_integer] = ACTIONS(1928), - [anon_sym_columns] = ACTIONS(1928), - [anon_sym_rows] = ACTIONS(1928), - [anon_sym_reverse] = ACTIONS(1928), + [sym_statement] = STATE(865), + [sym_expression] = STATE(853), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(776), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(710), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1823), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(366), + [sym_identifier] = ACTIONS(1436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_asyncfor] = ACTIONS(1448), + [anon_sym_transform] = ACTIONS(1450), + [anon_sym_filter] = ACTIONS(1452), + [anon_sym_find] = ACTIONS(1454), + [anon_sym_remove] = ACTIONS(1456), + [anon_sym_reduce] = ACTIONS(1458), + [anon_sym_select] = ACTIONS(1460), + [anon_sym_insert] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1466), + [anon_sym_assert] = ACTIONS(1468), + [anon_sym_assert_equal] = ACTIONS(1468), + [anon_sym_download] = ACTIONS(1468), + [anon_sym_help] = ACTIONS(1468), + [anon_sym_length] = ACTIONS(1468), + [anon_sym_output] = ACTIONS(1468), + [anon_sym_output_error] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_append] = ACTIONS(1468), + [anon_sym_metadata] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [anon_sym_read] = ACTIONS(1468), + [anon_sym_workdir] = ACTIONS(1468), + [anon_sym_write] = ACTIONS(1468), + [anon_sym_from_json] = ACTIONS(1468), + [anon_sym_to_json] = ACTIONS(1468), + [anon_sym_to_string] = ACTIONS(1468), + [anon_sym_to_float] = ACTIONS(1468), + [anon_sym_bash] = ACTIONS(1468), + [anon_sym_fish] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [anon_sym_sh] = ACTIONS(1468), + [anon_sym_zsh] = ACTIONS(1468), + [anon_sym_random] = ACTIONS(1468), + [anon_sym_random_boolean] = ACTIONS(1468), + [anon_sym_random_float] = ACTIONS(1468), + [anon_sym_random_integer] = ACTIONS(1468), + [anon_sym_columns] = ACTIONS(1468), + [anon_sym_rows] = ACTIONS(1468), + [anon_sym_reverse] = ACTIONS(1468), }, [536] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(524), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [sym_statement] = STATE(1064), + [sym_expression] = STATE(925), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(867), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(980), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1245), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), [sym_string] = ACTIONS(13), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [537] = { - [sym_expression] = STATE(971), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(2124), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [sym_statement] = STATE(1665), + [sym_expression] = STATE(1554), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1529), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_assignment] = STATE(1650), + [sym_if_else] = STATE(1650), + [sym_if] = STATE(1638), + [sym_match] = STATE(1650), + [sym_while] = STATE(1650), + [sym_for] = STATE(1650), + [sym_transform] = STATE(1650), + [sym_filter] = STATE(1650), + [sym_find] = STATE(1650), + [sym_remove] = STATE(1650), + [sym_reduce] = STATE(1650), + [sym_select] = STATE(1650), + [sym_insert] = STATE(1650), + [sym_async] = STATE(1650), + [sym_identifier_list] = STATE(1793), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(3113), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_match] = ACTIONS(3117), + [anon_sym_EQ_GT] = ACTIONS(3119), + [anon_sym_while] = ACTIONS(3121), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_asyncfor] = ACTIONS(3125), + [anon_sym_transform] = ACTIONS(3127), + [anon_sym_filter] = ACTIONS(3129), + [anon_sym_find] = ACTIONS(3131), + [anon_sym_remove] = ACTIONS(3133), + [anon_sym_reduce] = ACTIONS(3135), + [anon_sym_select] = ACTIONS(3137), + [anon_sym_insert] = ACTIONS(3139), + [anon_sym_async] = ACTIONS(3141), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(3143), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), }, [538] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(525), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1253), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [sym_statement] = STATE(596), + [sym_expression] = STATE(663), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(637), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1998), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(296), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(313), + [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_asyncfor] = ACTIONS(321), + [anon_sym_transform] = ACTIONS(323), + [anon_sym_filter] = ACTIONS(325), + [anon_sym_find] = ACTIONS(327), + [anon_sym_remove] = ACTIONS(329), + [anon_sym_reduce] = ACTIONS(331), + [anon_sym_select] = ACTIONS(333), + [anon_sym_insert] = ACTIONS(335), + [anon_sym_async] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(341), + [anon_sym_assert_equal] = ACTIONS(341), + [anon_sym_download] = ACTIONS(341), + [anon_sym_help] = ACTIONS(341), + [anon_sym_length] = ACTIONS(341), + [anon_sym_output] = ACTIONS(341), + [anon_sym_output_error] = ACTIONS(341), + [anon_sym_type] = ACTIONS(341), + [anon_sym_append] = ACTIONS(341), + [anon_sym_metadata] = ACTIONS(341), + [anon_sym_move] = ACTIONS(341), + [anon_sym_read] = ACTIONS(341), + [anon_sym_workdir] = ACTIONS(341), + [anon_sym_write] = ACTIONS(341), + [anon_sym_from_json] = ACTIONS(341), + [anon_sym_to_json] = ACTIONS(341), + [anon_sym_to_string] = ACTIONS(341), + [anon_sym_to_float] = ACTIONS(341), + [anon_sym_bash] = ACTIONS(341), + [anon_sym_fish] = ACTIONS(341), + [anon_sym_raw] = ACTIONS(341), + [anon_sym_sh] = ACTIONS(341), + [anon_sym_zsh] = ACTIONS(341), + [anon_sym_random] = ACTIONS(341), + [anon_sym_random_boolean] = ACTIONS(341), + [anon_sym_random_float] = ACTIONS(341), + [anon_sym_random_integer] = ACTIONS(341), + [anon_sym_columns] = ACTIONS(341), + [anon_sym_rows] = ACTIONS(341), + [anon_sym_reverse] = ACTIONS(341), }, [539] = { - [sym_math_operator] = STATE(800), - [sym_logic_operator] = STATE(799), - [ts_builtin_sym_end] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1949), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1947), - [sym_string] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_transform] = ACTIONS(1949), - [anon_sym_filter] = ACTIONS(1949), - [anon_sym_find] = ACTIONS(1949), - [anon_sym_remove] = ACTIONS(1949), - [anon_sym_reduce] = ACTIONS(1949), - [anon_sym_select] = ACTIONS(1949), - [anon_sym_insert] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_table] = ACTIONS(1949), - [anon_sym_assert] = ACTIONS(1949), - [anon_sym_assert_equal] = ACTIONS(1949), - [anon_sym_download] = ACTIONS(1949), - [anon_sym_help] = ACTIONS(1949), - [anon_sym_length] = ACTIONS(1949), - [anon_sym_output] = ACTIONS(1949), - [anon_sym_output_error] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_append] = ACTIONS(1949), - [anon_sym_metadata] = ACTIONS(1949), - [anon_sym_move] = ACTIONS(1949), - [anon_sym_read] = ACTIONS(1949), - [anon_sym_workdir] = ACTIONS(1949), - [anon_sym_write] = ACTIONS(1949), - [anon_sym_from_json] = ACTIONS(1949), - [anon_sym_to_json] = ACTIONS(1949), - [anon_sym_to_string] = ACTIONS(1949), - [anon_sym_to_float] = ACTIONS(1949), - [anon_sym_bash] = ACTIONS(1949), - [anon_sym_fish] = ACTIONS(1949), - [anon_sym_raw] = ACTIONS(1949), - [anon_sym_sh] = ACTIONS(1949), - [anon_sym_zsh] = ACTIONS(1949), - [anon_sym_random] = ACTIONS(1949), - [anon_sym_random_boolean] = ACTIONS(1949), - [anon_sym_random_float] = ACTIONS(1949), - [anon_sym_random_integer] = ACTIONS(1949), - [anon_sym_columns] = ACTIONS(1949), - [anon_sym_rows] = ACTIONS(1949), - [anon_sym_reverse] = ACTIONS(1949), + [sym_statement] = STATE(865), + [sym_expression] = STATE(824), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(739), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(653), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [sym_identifier] = ACTIONS(1198), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(9), + [sym_integer] = ACTIONS(11), + [sym_float] = ACTIONS(13), + [sym_string] = ACTIONS(13), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_asyncfor] = ACTIONS(1210), + [anon_sym_transform] = ACTIONS(1212), + [anon_sym_filter] = ACTIONS(1214), + [anon_sym_find] = ACTIONS(1216), + [anon_sym_remove] = ACTIONS(1218), + [anon_sym_reduce] = ACTIONS(1220), + [anon_sym_select] = ACTIONS(1222), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, [540] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2160), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [sym_statement] = STATE(1027), + [sym_expression] = STATE(877), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(782), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(978), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [sym_identifier] = ACTIONS(1639), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_asyncfor] = ACTIONS(1647), + [anon_sym_transform] = ACTIONS(1649), + [anon_sym_filter] = ACTIONS(1651), + [anon_sym_find] = ACTIONS(1653), + [anon_sym_remove] = ACTIONS(1655), + [anon_sym_reduce] = ACTIONS(1657), + [anon_sym_select] = ACTIONS(1659), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), }, [541] = { - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(492), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_assert_equal] = ACTIONS(1907), - [anon_sym_download] = ACTIONS(1907), - [anon_sym_help] = ACTIONS(1907), - [anon_sym_length] = ACTIONS(1907), - [anon_sym_output] = ACTIONS(1907), - [anon_sym_output_error] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_append] = ACTIONS(1907), - [anon_sym_metadata] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_read] = ACTIONS(1907), - [anon_sym_workdir] = ACTIONS(1907), - [anon_sym_write] = ACTIONS(1907), - [anon_sym_from_json] = ACTIONS(1907), - [anon_sym_to_json] = ACTIONS(1907), - [anon_sym_to_string] = ACTIONS(1907), - [anon_sym_to_float] = ACTIONS(1907), - [anon_sym_bash] = ACTIONS(1907), - [anon_sym_fish] = ACTIONS(1907), - [anon_sym_raw] = ACTIONS(1907), - [anon_sym_sh] = ACTIONS(1907), - [anon_sym_zsh] = ACTIONS(1907), - [anon_sym_random] = ACTIONS(1907), - [anon_sym_random_boolean] = ACTIONS(1907), - [anon_sym_random_float] = ACTIONS(1907), - [anon_sym_random_integer] = ACTIONS(1907), - [anon_sym_columns] = ACTIONS(1907), - [anon_sym_rows] = ACTIONS(1907), - [anon_sym_reverse] = ACTIONS(1907), + [sym_statement] = STATE(1649), + [sym_expression] = STATE(1554), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1529), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_assignment] = STATE(1650), + [sym_if_else] = STATE(1650), + [sym_if] = STATE(1638), + [sym_match] = STATE(1650), + [sym_while] = STATE(1650), + [sym_for] = STATE(1650), + [sym_transform] = STATE(1650), + [sym_filter] = STATE(1650), + [sym_find] = STATE(1650), + [sym_remove] = STATE(1650), + [sym_reduce] = STATE(1650), + [sym_select] = STATE(1650), + [sym_insert] = STATE(1650), + [sym_async] = STATE(1650), + [sym_identifier_list] = STATE(1793), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(3113), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_match] = ACTIONS(3117), + [anon_sym_EQ_GT] = ACTIONS(3119), + [anon_sym_while] = ACTIONS(3121), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_asyncfor] = ACTIONS(3125), + [anon_sym_transform] = ACTIONS(3127), + [anon_sym_filter] = ACTIONS(3129), + [anon_sym_find] = ACTIONS(3131), + [anon_sym_remove] = ACTIONS(3133), + [anon_sym_reduce] = ACTIONS(3135), + [anon_sym_select] = ACTIONS(3137), + [anon_sym_insert] = ACTIONS(3139), + [anon_sym_async] = ACTIONS(3141), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(3143), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), }, [542] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [sym_statement] = STATE(796), + [sym_expression] = STATE(732), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(620), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(654), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [sym_identifier] = ACTIONS(623), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(627), + [anon_sym_match] = ACTIONS(629), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_asyncfor] = ACTIONS(637), + [anon_sym_transform] = ACTIONS(639), + [anon_sym_filter] = ACTIONS(641), + [anon_sym_find] = ACTIONS(643), + [anon_sym_remove] = ACTIONS(645), + [anon_sym_reduce] = ACTIONS(647), + [anon_sym_select] = ACTIONS(649), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), }, [543] = { - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(492), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [sym_statement] = STATE(865), + [sym_expression] = STATE(888), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(822), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(870), + [sym_if_else] = STATE(870), + [sym_if] = STATE(787), + [sym_match] = STATE(870), + [sym_while] = STATE(870), + [sym_for] = STATE(870), + [sym_transform] = STATE(870), + [sym_filter] = STATE(870), + [sym_find] = STATE(870), + [sym_remove] = STATE(870), + [sym_reduce] = STATE(870), + [sym_select] = STATE(870), + [sym_insert] = STATE(870), + [sym_async] = STATE(870), + [sym_identifier_list] = STATE(1890), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(380), + [sym_identifier] = ACTIONS(1846), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -54370,304 +61194,978 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_assert_equal] = ACTIONS(1907), - [anon_sym_download] = ACTIONS(1907), - [anon_sym_help] = ACTIONS(1907), - [anon_sym_length] = ACTIONS(1907), - [anon_sym_output] = ACTIONS(1907), - [anon_sym_output_error] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_append] = ACTIONS(1907), - [anon_sym_metadata] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_read] = ACTIONS(1907), - [anon_sym_workdir] = ACTIONS(1907), - [anon_sym_write] = ACTIONS(1907), - [anon_sym_from_json] = ACTIONS(1907), - [anon_sym_to_json] = ACTIONS(1907), - [anon_sym_to_string] = ACTIONS(1907), - [anon_sym_to_float] = ACTIONS(1907), - [anon_sym_bash] = ACTIONS(1907), - [anon_sym_fish] = ACTIONS(1907), - [anon_sym_raw] = ACTIONS(1907), - [anon_sym_sh] = ACTIONS(1907), - [anon_sym_zsh] = ACTIONS(1907), - [anon_sym_random] = ACTIONS(1907), - [anon_sym_random_boolean] = ACTIONS(1907), - [anon_sym_random_float] = ACTIONS(1907), - [anon_sym_random_integer] = ACTIONS(1907), - [anon_sym_columns] = ACTIONS(1907), - [anon_sym_rows] = ACTIONS(1907), - [anon_sym_reverse] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_asyncfor] = ACTIONS(1856), + [anon_sym_transform] = ACTIONS(1858), + [anon_sym_filter] = ACTIONS(1860), + [anon_sym_find] = ACTIONS(1862), + [anon_sym_remove] = ACTIONS(1864), + [anon_sym_reduce] = ACTIONS(1866), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [544] = { - [sym_math_operator] = STATE(800), - [sym_logic_operator] = STATE(799), - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [sym_statement] = STATE(687), + [sym_expression] = STATE(795), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(611), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(2015), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(325), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(913), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_while] = ACTIONS(917), + [anon_sym_for] = ACTIONS(919), + [anon_sym_asyncfor] = ACTIONS(921), + [anon_sym_transform] = ACTIONS(923), + [anon_sym_filter] = ACTIONS(925), + [anon_sym_find] = ACTIONS(927), + [anon_sym_remove] = ACTIONS(929), + [anon_sym_reduce] = ACTIONS(931), + [anon_sym_select] = ACTIONS(933), + [anon_sym_insert] = ACTIONS(935), + [anon_sym_async] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(939), + [anon_sym_assert] = ACTIONS(941), + [anon_sym_assert_equal] = ACTIONS(941), + [anon_sym_download] = ACTIONS(941), + [anon_sym_help] = ACTIONS(941), + [anon_sym_length] = ACTIONS(941), + [anon_sym_output] = ACTIONS(941), + [anon_sym_output_error] = ACTIONS(941), + [anon_sym_type] = ACTIONS(941), + [anon_sym_append] = ACTIONS(941), + [anon_sym_metadata] = ACTIONS(941), + [anon_sym_move] = ACTIONS(941), + [anon_sym_read] = ACTIONS(941), + [anon_sym_workdir] = ACTIONS(941), + [anon_sym_write] = ACTIONS(941), + [anon_sym_from_json] = ACTIONS(941), + [anon_sym_to_json] = ACTIONS(941), + [anon_sym_to_string] = ACTIONS(941), + [anon_sym_to_float] = ACTIONS(941), + [anon_sym_bash] = ACTIONS(941), + [anon_sym_fish] = ACTIONS(941), + [anon_sym_raw] = ACTIONS(941), + [anon_sym_sh] = ACTIONS(941), + [anon_sym_zsh] = ACTIONS(941), + [anon_sym_random] = ACTIONS(941), + [anon_sym_random_boolean] = ACTIONS(941), + [anon_sym_random_float] = ACTIONS(941), + [anon_sym_random_integer] = ACTIONS(941), + [anon_sym_columns] = ACTIONS(941), + [anon_sym_rows] = ACTIONS(941), + [anon_sym_reverse] = ACTIONS(941), }, [545] = { - [sym_math_operator] = STATE(623), - [sym_logic_operator] = STATE(664), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [sym_statement] = STATE(796), + [sym_expression] = STATE(685), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(576), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(647), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1984), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(302), + [sym_identifier] = ACTIONS(229), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(245), + [anon_sym_match] = ACTIONS(247), + [anon_sym_EQ_GT] = ACTIONS(249), + [anon_sym_while] = ACTIONS(251), + [anon_sym_for] = ACTIONS(253), + [anon_sym_asyncfor] = ACTIONS(255), + [anon_sym_transform] = ACTIONS(257), + [anon_sym_filter] = ACTIONS(259), + [anon_sym_find] = ACTIONS(261), + [anon_sym_remove] = ACTIONS(263), + [anon_sym_reduce] = ACTIONS(265), + [anon_sym_select] = ACTIONS(267), + [anon_sym_insert] = ACTIONS(269), + [anon_sym_async] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(273), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_assert_equal] = ACTIONS(275), + [anon_sym_download] = ACTIONS(275), + [anon_sym_help] = ACTIONS(275), + [anon_sym_length] = ACTIONS(275), + [anon_sym_output] = ACTIONS(275), + [anon_sym_output_error] = ACTIONS(275), + [anon_sym_type] = ACTIONS(275), + [anon_sym_append] = ACTIONS(275), + [anon_sym_metadata] = ACTIONS(275), + [anon_sym_move] = ACTIONS(275), + [anon_sym_read] = ACTIONS(275), + [anon_sym_workdir] = ACTIONS(275), + [anon_sym_write] = ACTIONS(275), + [anon_sym_from_json] = ACTIONS(275), + [anon_sym_to_json] = ACTIONS(275), + [anon_sym_to_string] = ACTIONS(275), + [anon_sym_to_float] = ACTIONS(275), + [anon_sym_bash] = ACTIONS(275), + [anon_sym_fish] = ACTIONS(275), + [anon_sym_raw] = ACTIONS(275), + [anon_sym_sh] = ACTIONS(275), + [anon_sym_zsh] = ACTIONS(275), + [anon_sym_random] = ACTIONS(275), + [anon_sym_random_boolean] = ACTIONS(275), + [anon_sym_random_float] = ACTIONS(275), + [anon_sym_random_integer] = ACTIONS(275), + [anon_sym_columns] = ACTIONS(275), + [anon_sym_rows] = ACTIONS(275), + [anon_sym_reverse] = ACTIONS(275), }, [546] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [sym_statement] = STATE(1665), + [sym_expression] = STATE(1554), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1529), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_assignment] = STATE(1650), + [sym_if_else] = STATE(1650), + [sym_if] = STATE(1638), + [sym_match] = STATE(1650), + [sym_while] = STATE(1650), + [sym_for] = STATE(1650), + [sym_transform] = STATE(1650), + [sym_filter] = STATE(1650), + [sym_find] = STATE(1650), + [sym_remove] = STATE(1650), + [sym_reduce] = STATE(1650), + [sym_select] = STATE(1650), + [sym_insert] = STATE(1650), + [sym_async] = STATE(1650), + [sym_identifier_list] = STATE(1793), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(3147), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3153), + [sym_integer] = ACTIONS(3156), + [sym_float] = ACTIONS(3159), + [sym_string] = ACTIONS(3159), + [anon_sym_true] = ACTIONS(3162), + [anon_sym_false] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_match] = ACTIONS(3171), + [anon_sym_EQ_GT] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_asyncfor] = ACTIONS(3183), + [anon_sym_transform] = ACTIONS(3186), + [anon_sym_filter] = ACTIONS(3189), + [anon_sym_find] = ACTIONS(3192), + [anon_sym_remove] = ACTIONS(3195), + [anon_sym_reduce] = ACTIONS(3198), + [anon_sym_select] = ACTIONS(3201), + [anon_sym_insert] = ACTIONS(3204), + [anon_sym_async] = ACTIONS(3207), + [anon_sym_PIPE] = ACTIONS(3210), + [anon_sym_table] = ACTIONS(3213), + [anon_sym_assert] = ACTIONS(3216), + [anon_sym_assert_equal] = ACTIONS(3216), + [anon_sym_download] = ACTIONS(3216), + [anon_sym_help] = ACTIONS(3216), + [anon_sym_length] = ACTIONS(3216), + [anon_sym_output] = ACTIONS(3216), + [anon_sym_output_error] = ACTIONS(3216), + [anon_sym_type] = ACTIONS(3216), + [anon_sym_append] = ACTIONS(3216), + [anon_sym_metadata] = ACTIONS(3216), + [anon_sym_move] = ACTIONS(3216), + [anon_sym_read] = ACTIONS(3216), + [anon_sym_workdir] = ACTIONS(3216), + [anon_sym_write] = ACTIONS(3216), + [anon_sym_from_json] = ACTIONS(3216), + [anon_sym_to_json] = ACTIONS(3216), + [anon_sym_to_string] = ACTIONS(3216), + [anon_sym_to_float] = ACTIONS(3216), + [anon_sym_bash] = ACTIONS(3216), + [anon_sym_fish] = ACTIONS(3216), + [anon_sym_raw] = ACTIONS(3216), + [anon_sym_sh] = ACTIONS(3216), + [anon_sym_zsh] = ACTIONS(3216), + [anon_sym_random] = ACTIONS(3216), + [anon_sym_random_boolean] = ACTIONS(3216), + [anon_sym_random_float] = ACTIONS(3216), + [anon_sym_random_integer] = ACTIONS(3216), + [anon_sym_columns] = ACTIONS(3216), + [anon_sym_rows] = ACTIONS(3216), + [anon_sym_reverse] = ACTIONS(3216), }, [547] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [sym_statement] = STATE(596), + [sym_expression] = STATE(593), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(584), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1776), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(286), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(201), + [anon_sym_while] = ACTIONS(203), + [anon_sym_for] = ACTIONS(205), + [anon_sym_asyncfor] = ACTIONS(207), + [anon_sym_transform] = ACTIONS(209), + [anon_sym_filter] = ACTIONS(211), + [anon_sym_find] = ACTIONS(213), + [anon_sym_remove] = ACTIONS(215), + [anon_sym_reduce] = ACTIONS(217), + [anon_sym_select] = ACTIONS(219), + [anon_sym_insert] = ACTIONS(221), + [anon_sym_async] = ACTIONS(223), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(225), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_assert_equal] = ACTIONS(227), + [anon_sym_download] = ACTIONS(227), + [anon_sym_help] = ACTIONS(227), + [anon_sym_length] = ACTIONS(227), + [anon_sym_output] = ACTIONS(227), + [anon_sym_output_error] = ACTIONS(227), + [anon_sym_type] = ACTIONS(227), + [anon_sym_append] = ACTIONS(227), + [anon_sym_metadata] = ACTIONS(227), + [anon_sym_move] = ACTIONS(227), + [anon_sym_read] = ACTIONS(227), + [anon_sym_workdir] = ACTIONS(227), + [anon_sym_write] = ACTIONS(227), + [anon_sym_from_json] = ACTIONS(227), + [anon_sym_to_json] = ACTIONS(227), + [anon_sym_to_string] = ACTIONS(227), + [anon_sym_to_float] = ACTIONS(227), + [anon_sym_bash] = ACTIONS(227), + [anon_sym_fish] = ACTIONS(227), + [anon_sym_raw] = ACTIONS(227), + [anon_sym_sh] = ACTIONS(227), + [anon_sym_zsh] = ACTIONS(227), + [anon_sym_random] = ACTIONS(227), + [anon_sym_random_boolean] = ACTIONS(227), + [anon_sym_random_float] = ACTIONS(227), + [anon_sym_random_integer] = ACTIONS(227), + [anon_sym_columns] = ACTIONS(227), + [anon_sym_rows] = ACTIONS(227), + [anon_sym_reverse] = ACTIONS(227), + }, + [548] = { + [sym_statement] = STATE(1027), + [sym_expression] = STATE(859), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(754), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(1023), + [sym_if_else] = STATE(1023), + [sym_if] = STATE(985), + [sym_match] = STATE(1023), + [sym_while] = STATE(1023), + [sym_for] = STATE(1023), + [sym_transform] = STATE(1023), + [sym_filter] = STATE(1023), + [sym_find] = STATE(1023), + [sym_remove] = STATE(1023), + [sym_reduce] = STATE(1023), + [sym_select] = STATE(1023), + [sym_insert] = STATE(1023), + [sym_async] = STATE(1023), + [sym_identifier_list] = STATE(1841), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(315), + [sym_identifier] = ACTIONS(1566), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_asyncfor] = ACTIONS(1578), + [anon_sym_transform] = ACTIONS(1580), + [anon_sym_filter] = ACTIONS(1582), + [anon_sym_find] = ACTIONS(1584), + [anon_sym_remove] = ACTIONS(1586), + [anon_sym_reduce] = ACTIONS(1588), + [anon_sym_select] = ACTIONS(1590), + [anon_sym_insert] = ACTIONS(651), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_assert_equal] = ACTIONS(657), + [anon_sym_download] = ACTIONS(657), + [anon_sym_help] = ACTIONS(657), + [anon_sym_length] = ACTIONS(657), + [anon_sym_output] = ACTIONS(657), + [anon_sym_output_error] = ACTIONS(657), + [anon_sym_type] = ACTIONS(657), + [anon_sym_append] = ACTIONS(657), + [anon_sym_metadata] = ACTIONS(657), + [anon_sym_move] = ACTIONS(657), + [anon_sym_read] = ACTIONS(657), + [anon_sym_workdir] = ACTIONS(657), + [anon_sym_write] = ACTIONS(657), + [anon_sym_from_json] = ACTIONS(657), + [anon_sym_to_json] = ACTIONS(657), + [anon_sym_to_string] = ACTIONS(657), + [anon_sym_to_float] = ACTIONS(657), + [anon_sym_bash] = ACTIONS(657), + [anon_sym_fish] = ACTIONS(657), + [anon_sym_raw] = ACTIONS(657), + [anon_sym_sh] = ACTIONS(657), + [anon_sym_zsh] = ACTIONS(657), + [anon_sym_random] = ACTIONS(657), + [anon_sym_random_boolean] = ACTIONS(657), + [anon_sym_random_float] = ACTIONS(657), + [anon_sym_random_integer] = ACTIONS(657), + [anon_sym_columns] = ACTIONS(657), + [anon_sym_rows] = ACTIONS(657), + [anon_sym_reverse] = ACTIONS(657), + }, + [549] = { + [sym_statement] = STATE(796), + [sym_expression] = STATE(779), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(655), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(724), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1860), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(341), + [sym_identifier] = ACTIONS(839), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(843), + [anon_sym_match] = ACTIONS(845), + [anon_sym_EQ_GT] = ACTIONS(847), + [anon_sym_while] = ACTIONS(849), + [anon_sym_for] = ACTIONS(851), + [anon_sym_asyncfor] = ACTIONS(853), + [anon_sym_transform] = ACTIONS(855), + [anon_sym_filter] = ACTIONS(857), + [anon_sym_find] = ACTIONS(859), + [anon_sym_remove] = ACTIONS(861), + [anon_sym_reduce] = ACTIONS(863), + [anon_sym_select] = ACTIONS(865), + [anon_sym_insert] = ACTIONS(867), + [anon_sym_async] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(871), + [anon_sym_assert] = ACTIONS(873), + [anon_sym_assert_equal] = ACTIONS(873), + [anon_sym_download] = ACTIONS(873), + [anon_sym_help] = ACTIONS(873), + [anon_sym_length] = ACTIONS(873), + [anon_sym_output] = ACTIONS(873), + [anon_sym_output_error] = ACTIONS(873), + [anon_sym_type] = ACTIONS(873), + [anon_sym_append] = ACTIONS(873), + [anon_sym_metadata] = ACTIONS(873), + [anon_sym_move] = ACTIONS(873), + [anon_sym_read] = ACTIONS(873), + [anon_sym_workdir] = ACTIONS(873), + [anon_sym_write] = ACTIONS(873), + [anon_sym_from_json] = ACTIONS(873), + [anon_sym_to_json] = ACTIONS(873), + [anon_sym_to_string] = ACTIONS(873), + [anon_sym_to_float] = ACTIONS(873), + [anon_sym_bash] = ACTIONS(873), + [anon_sym_fish] = ACTIONS(873), + [anon_sym_raw] = ACTIONS(873), + [anon_sym_sh] = ACTIONS(873), + [anon_sym_zsh] = ACTIONS(873), + [anon_sym_random] = ACTIONS(873), + [anon_sym_random_boolean] = ACTIONS(873), + [anon_sym_random_float] = ACTIONS(873), + [anon_sym_random_integer] = ACTIONS(873), + [anon_sym_columns] = ACTIONS(873), + [anon_sym_rows] = ACTIONS(873), + [anon_sym_reverse] = ACTIONS(873), + }, + [550] = { + [sym_statement] = STATE(687), + [sym_expression] = STATE(601), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(557), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1910), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(284), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(165), + [anon_sym_EQ_GT] = ACTIONS(167), + [anon_sym_while] = ACTIONS(169), + [anon_sym_for] = ACTIONS(171), + [anon_sym_asyncfor] = ACTIONS(173), + [anon_sym_transform] = ACTIONS(175), + [anon_sym_filter] = ACTIONS(177), + [anon_sym_find] = ACTIONS(179), + [anon_sym_remove] = ACTIONS(181), + [anon_sym_reduce] = ACTIONS(183), + [anon_sym_select] = ACTIONS(185), + [anon_sym_insert] = ACTIONS(187), + [anon_sym_async] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(191), + [anon_sym_assert] = ACTIONS(193), + [anon_sym_assert_equal] = ACTIONS(193), + [anon_sym_download] = ACTIONS(193), + [anon_sym_help] = ACTIONS(193), + [anon_sym_length] = ACTIONS(193), + [anon_sym_output] = ACTIONS(193), + [anon_sym_output_error] = ACTIONS(193), + [anon_sym_type] = ACTIONS(193), + [anon_sym_append] = ACTIONS(193), + [anon_sym_metadata] = ACTIONS(193), + [anon_sym_move] = ACTIONS(193), + [anon_sym_read] = ACTIONS(193), + [anon_sym_workdir] = ACTIONS(193), + [anon_sym_write] = ACTIONS(193), + [anon_sym_from_json] = ACTIONS(193), + [anon_sym_to_json] = ACTIONS(193), + [anon_sym_to_string] = ACTIONS(193), + [anon_sym_to_float] = ACTIONS(193), + [anon_sym_bash] = ACTIONS(193), + [anon_sym_fish] = ACTIONS(193), + [anon_sym_raw] = ACTIONS(193), + [anon_sym_sh] = ACTIONS(193), + [anon_sym_zsh] = ACTIONS(193), + [anon_sym_random] = ACTIONS(193), + [anon_sym_random_boolean] = ACTIONS(193), + [anon_sym_random_float] = ACTIONS(193), + [anon_sym_random_integer] = ACTIONS(193), + [anon_sym_columns] = ACTIONS(193), + [anon_sym_rows] = ACTIONS(193), + [anon_sym_reverse] = ACTIONS(193), + }, + [551] = { + [sym_statement] = STATE(687), + [sym_expression] = STATE(701), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(582), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1866), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(320), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(197), + [anon_sym_match] = ACTIONS(497), + [anon_sym_EQ_GT] = ACTIONS(499), + [anon_sym_while] = ACTIONS(501), + [anon_sym_for] = ACTIONS(503), + [anon_sym_asyncfor] = ACTIONS(505), + [anon_sym_transform] = ACTIONS(507), + [anon_sym_filter] = ACTIONS(509), + [anon_sym_find] = ACTIONS(511), + [anon_sym_remove] = ACTIONS(513), + [anon_sym_reduce] = ACTIONS(515), + [anon_sym_select] = ACTIONS(517), + [anon_sym_insert] = ACTIONS(519), + [anon_sym_async] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(523), + [anon_sym_assert] = ACTIONS(525), + [anon_sym_assert_equal] = ACTIONS(525), + [anon_sym_download] = ACTIONS(525), + [anon_sym_help] = ACTIONS(525), + [anon_sym_length] = ACTIONS(525), + [anon_sym_output] = ACTIONS(525), + [anon_sym_output_error] = ACTIONS(525), + [anon_sym_type] = ACTIONS(525), + [anon_sym_append] = ACTIONS(525), + [anon_sym_metadata] = ACTIONS(525), + [anon_sym_move] = ACTIONS(525), + [anon_sym_read] = ACTIONS(525), + [anon_sym_workdir] = ACTIONS(525), + [anon_sym_write] = ACTIONS(525), + [anon_sym_from_json] = ACTIONS(525), + [anon_sym_to_json] = ACTIONS(525), + [anon_sym_to_string] = ACTIONS(525), + [anon_sym_to_float] = ACTIONS(525), + [anon_sym_bash] = ACTIONS(525), + [anon_sym_fish] = ACTIONS(525), + [anon_sym_raw] = ACTIONS(525), + [anon_sym_sh] = ACTIONS(525), + [anon_sym_zsh] = ACTIONS(525), + [anon_sym_random] = ACTIONS(525), + [anon_sym_random_boolean] = ACTIONS(525), + [anon_sym_random_float] = ACTIONS(525), + [anon_sym_random_integer] = ACTIONS(525), + [anon_sym_columns] = ACTIONS(525), + [anon_sym_rows] = ACTIONS(525), + [anon_sym_reverse] = ACTIONS(525), + }, + [552] = { + [sym_statement] = STATE(596), + [sym_expression] = STATE(583), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(567), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(2030), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(271), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_asyncfor] = ACTIONS(127), + [anon_sym_transform] = ACTIONS(129), + [anon_sym_filter] = ACTIONS(131), + [anon_sym_find] = ACTIONS(133), + [anon_sym_remove] = ACTIONS(135), + [anon_sym_reduce] = ACTIONS(137), + [anon_sym_select] = ACTIONS(139), + [anon_sym_insert] = ACTIONS(141), + [anon_sym_async] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_assert_equal] = ACTIONS(147), + [anon_sym_download] = ACTIONS(147), + [anon_sym_help] = ACTIONS(147), + [anon_sym_length] = ACTIONS(147), + [anon_sym_output] = ACTIONS(147), + [anon_sym_output_error] = ACTIONS(147), + [anon_sym_type] = ACTIONS(147), + [anon_sym_append] = ACTIONS(147), + [anon_sym_metadata] = ACTIONS(147), + [anon_sym_move] = ACTIONS(147), + [anon_sym_read] = ACTIONS(147), + [anon_sym_workdir] = ACTIONS(147), + [anon_sym_write] = ACTIONS(147), + [anon_sym_from_json] = ACTIONS(147), + [anon_sym_to_json] = ACTIONS(147), + [anon_sym_to_string] = ACTIONS(147), + [anon_sym_to_float] = ACTIONS(147), + [anon_sym_bash] = ACTIONS(147), + [anon_sym_fish] = ACTIONS(147), + [anon_sym_raw] = ACTIONS(147), + [anon_sym_sh] = ACTIONS(147), + [anon_sym_zsh] = ACTIONS(147), + [anon_sym_random] = ACTIONS(147), + [anon_sym_random_boolean] = ACTIONS(147), + [anon_sym_random_float] = ACTIONS(147), + [anon_sym_random_integer] = ACTIONS(147), + [anon_sym_columns] = ACTIONS(147), + [anon_sym_rows] = ACTIONS(147), + [anon_sym_reverse] = ACTIONS(147), + }, + [553] = { + [sym_statement] = STATE(796), + [sym_expression] = STATE(817), + [sym__expression_kind] = STATE(759), + [sym_value] = STATE(759), + [sym_boolean] = STATE(757), + [sym_list] = STATE(757), + [sym_map] = STATE(757), + [sym_index] = STATE(748), + [sym_math] = STATE(759), + [sym_logic] = STATE(759), + [sym_assignment] = STATE(781), + [sym_if_else] = STATE(781), + [sym_if] = STATE(760), + [sym_match] = STATE(781), + [sym_while] = STATE(781), + [sym_for] = STATE(781), + [sym_transform] = STATE(781), + [sym_filter] = STATE(781), + [sym_find] = STATE(781), + [sym_remove] = STATE(781), + [sym_reduce] = STATE(781), + [sym_select] = STATE(781), + [sym_insert] = STATE(781), + [sym_async] = STATE(781), + [sym_identifier_list] = STATE(1926), + [sym_table] = STATE(757), + [sym_function] = STATE(757), + [sym_function_call] = STATE(759), + [sym__context_defined_function] = STATE(761), + [sym_built_in_function] = STATE(761), + [sym__built_in_function_name] = STATE(351), + [sym_identifier] = ACTIONS(1280), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(233), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(237), + [sym_string] = ACTIONS(237), + [anon_sym_true] = ACTIONS(239), + [anon_sym_false] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_asyncfor] = ACTIONS(1294), + [anon_sym_transform] = ACTIONS(1296), + [anon_sym_filter] = ACTIONS(1298), + [anon_sym_find] = ACTIONS(1300), + [anon_sym_remove] = ACTIONS(1302), + [anon_sym_reduce] = ACTIONS(1304), + [anon_sym_select] = ACTIONS(1306), + [anon_sym_insert] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1312), + [anon_sym_assert] = ACTIONS(1314), + [anon_sym_assert_equal] = ACTIONS(1314), + [anon_sym_download] = ACTIONS(1314), + [anon_sym_help] = ACTIONS(1314), + [anon_sym_length] = ACTIONS(1314), + [anon_sym_output] = ACTIONS(1314), + [anon_sym_output_error] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_append] = ACTIONS(1314), + [anon_sym_metadata] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [anon_sym_read] = ACTIONS(1314), + [anon_sym_workdir] = ACTIONS(1314), + [anon_sym_write] = ACTIONS(1314), + [anon_sym_from_json] = ACTIONS(1314), + [anon_sym_to_json] = ACTIONS(1314), + [anon_sym_to_string] = ACTIONS(1314), + [anon_sym_to_float] = ACTIONS(1314), + [anon_sym_bash] = ACTIONS(1314), + [anon_sym_fish] = ACTIONS(1314), + [anon_sym_raw] = ACTIONS(1314), + [anon_sym_sh] = ACTIONS(1314), + [anon_sym_zsh] = ACTIONS(1314), + [anon_sym_random] = ACTIONS(1314), + [anon_sym_random_boolean] = ACTIONS(1314), + [anon_sym_random_float] = ACTIONS(1314), + [anon_sym_random_integer] = ACTIONS(1314), + [anon_sym_columns] = ACTIONS(1314), + [anon_sym_rows] = ACTIONS(1314), + [anon_sym_reverse] = ACTIONS(1314), + }, + [554] = { + [sym_statement] = STATE(1064), + [sym_expression] = STATE(934), + [sym__expression_kind] = STATE(866), + [sym_value] = STATE(866), + [sym_boolean] = STATE(844), + [sym_list] = STATE(844), + [sym_map] = STATE(844), + [sym_index] = STATE(842), + [sym_math] = STATE(866), + [sym_logic] = STATE(866), + [sym_assignment] = STATE(1075), + [sym_if_else] = STATE(1075), + [sym_if] = STATE(983), + [sym_match] = STATE(1075), + [sym_while] = STATE(1075), + [sym_for] = STATE(1075), + [sym_transform] = STATE(1075), + [sym_filter] = STATE(1075), + [sym_find] = STATE(1075), + [sym_remove] = STATE(1075), + [sym_reduce] = STATE(1075), + [sym_select] = STATE(1075), + [sym_insert] = STATE(1075), + [sym_async] = STATE(1075), + [sym_identifier_list] = STATE(2042), + [sym_table] = STATE(844), + [sym_function] = STATE(844), + [sym_function_call] = STATE(866), + [sym__context_defined_function] = STATE(874), + [sym_built_in_function] = STATE(874), + [sym__built_in_function_name] = STATE(360), + [sym_identifier] = ACTIONS(2162), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2383), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -54675,534 +62173,33690 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_asyncfor] = ACTIONS(2172), + [anon_sym_transform] = ACTIONS(2174), + [anon_sym_filter] = ACTIONS(2176), + [anon_sym_find] = ACTIONS(2178), + [anon_sym_remove] = ACTIONS(2180), + [anon_sym_reduce] = ACTIONS(2182), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_insert] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1228), + [anon_sym_assert] = ACTIONS(1230), + [anon_sym_assert_equal] = ACTIONS(1230), + [anon_sym_download] = ACTIONS(1230), + [anon_sym_help] = ACTIONS(1230), + [anon_sym_length] = ACTIONS(1230), + [anon_sym_output] = ACTIONS(1230), + [anon_sym_output_error] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_append] = ACTIONS(1230), + [anon_sym_metadata] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [anon_sym_read] = ACTIONS(1230), + [anon_sym_workdir] = ACTIONS(1230), + [anon_sym_write] = ACTIONS(1230), + [anon_sym_from_json] = ACTIONS(1230), + [anon_sym_to_json] = ACTIONS(1230), + [anon_sym_to_string] = ACTIONS(1230), + [anon_sym_to_float] = ACTIONS(1230), + [anon_sym_bash] = ACTIONS(1230), + [anon_sym_fish] = ACTIONS(1230), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_sh] = ACTIONS(1230), + [anon_sym_zsh] = ACTIONS(1230), + [anon_sym_random] = ACTIONS(1230), + [anon_sym_random_boolean] = ACTIONS(1230), + [anon_sym_random_float] = ACTIONS(1230), + [anon_sym_random_integer] = ACTIONS(1230), + [anon_sym_columns] = ACTIONS(1230), + [anon_sym_rows] = ACTIONS(1230), + [anon_sym_reverse] = ACTIONS(1230), }, - [548] = { - [sym_math_operator] = STATE(726), - [sym_logic_operator] = STATE(725), - [sym_identifier] = ACTIONS(1953), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1951), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1951), - [sym_string] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_RBRACK] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(2166), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_table] = ACTIONS(1953), - [anon_sym_assert] = ACTIONS(1953), - [anon_sym_assert_equal] = ACTIONS(1953), - [anon_sym_download] = ACTIONS(1953), - [anon_sym_help] = ACTIONS(1953), - [anon_sym_length] = ACTIONS(1953), - [anon_sym_output] = ACTIONS(1953), - [anon_sym_output_error] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_append] = ACTIONS(1953), - [anon_sym_metadata] = ACTIONS(1953), - [anon_sym_move] = ACTIONS(1953), - [anon_sym_read] = ACTIONS(1953), - [anon_sym_workdir] = ACTIONS(1953), - [anon_sym_write] = ACTIONS(1953), - [anon_sym_from_json] = ACTIONS(1953), - [anon_sym_to_json] = ACTIONS(1953), - [anon_sym_to_string] = ACTIONS(1953), - [anon_sym_to_float] = ACTIONS(1953), - [anon_sym_bash] = ACTIONS(1953), - [anon_sym_fish] = ACTIONS(1953), - [anon_sym_raw] = ACTIONS(1953), - [anon_sym_sh] = ACTIONS(1953), - [anon_sym_zsh] = ACTIONS(1953), - [anon_sym_random] = ACTIONS(1953), - [anon_sym_random_boolean] = ACTIONS(1953), - [anon_sym_random_float] = ACTIONS(1953), - [anon_sym_random_integer] = ACTIONS(1953), - [anon_sym_columns] = ACTIONS(1953), - [anon_sym_rows] = ACTIONS(1953), - [anon_sym_reverse] = ACTIONS(1953), + [555] = { + [sym_statement] = STATE(596), + [sym_expression] = STATE(571), + [sym__expression_kind] = STATE(631), + [sym_value] = STATE(631), + [sym_boolean] = STATE(633), + [sym_list] = STATE(633), + [sym_map] = STATE(633), + [sym_index] = STATE(631), + [sym_math] = STATE(631), + [sym_logic] = STATE(631), + [sym_assignment] = STATE(592), + [sym_if_else] = STATE(592), + [sym_if] = STATE(558), + [sym_match] = STATE(592), + [sym_while] = STATE(592), + [sym_for] = STATE(592), + [sym_transform] = STATE(592), + [sym_filter] = STATE(592), + [sym_find] = STATE(592), + [sym_remove] = STATE(592), + [sym_reduce] = STATE(592), + [sym_select] = STATE(592), + [sym_insert] = STATE(592), + [sym_async] = STATE(592), + [sym_identifier_list] = STATE(1817), + [sym_table] = STATE(633), + [sym_function] = STATE(633), + [sym_function_call] = STATE(631), + [sym__context_defined_function] = STATE(628), + [sym_built_in_function] = STATE(628), + [sym__built_in_function_name] = STATE(265), + [sym_identifier] = ACTIONS(55), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, - [549] = { - [sym_math_operator] = STATE(726), - [sym_logic_operator] = STATE(725), - [sym_identifier] = ACTIONS(1915), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [sym_string] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(2168), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_table] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_assert_equal] = ACTIONS(1915), - [anon_sym_download] = ACTIONS(1915), - [anon_sym_help] = ACTIONS(1915), - [anon_sym_length] = ACTIONS(1915), - [anon_sym_output] = ACTIONS(1915), - [anon_sym_output_error] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_append] = ACTIONS(1915), - [anon_sym_metadata] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_read] = ACTIONS(1915), - [anon_sym_workdir] = ACTIONS(1915), - [anon_sym_write] = ACTIONS(1915), - [anon_sym_from_json] = ACTIONS(1915), - [anon_sym_to_json] = ACTIONS(1915), - [anon_sym_to_string] = ACTIONS(1915), - [anon_sym_to_float] = ACTIONS(1915), - [anon_sym_bash] = ACTIONS(1915), - [anon_sym_fish] = ACTIONS(1915), - [anon_sym_raw] = ACTIONS(1915), - [anon_sym_sh] = ACTIONS(1915), - [anon_sym_zsh] = ACTIONS(1915), - [anon_sym_random] = ACTIONS(1915), - [anon_sym_random_boolean] = ACTIONS(1915), - [anon_sym_random_float] = ACTIONS(1915), - [anon_sym_random_integer] = ACTIONS(1915), - [anon_sym_columns] = ACTIONS(1915), - [anon_sym_rows] = ACTIONS(1915), - [anon_sym_reverse] = ACTIONS(1915), + [556] = { + [sym_statement] = STATE(687), + [sym_expression] = STATE(683), + [sym__expression_kind] = STATE(706), + [sym_value] = STATE(706), + [sym_boolean] = STATE(713), + [sym_list] = STATE(713), + [sym_map] = STATE(713), + [sym_index] = STATE(706), + [sym_math] = STATE(706), + [sym_logic] = STATE(706), + [sym_assignment] = STATE(699), + [sym_if_else] = STATE(699), + [sym_if] = STATE(573), + [sym_match] = STATE(699), + [sym_while] = STATE(699), + [sym_for] = STATE(699), + [sym_transform] = STATE(699), + [sym_filter] = STATE(699), + [sym_find] = STATE(699), + [sym_remove] = STATE(699), + [sym_reduce] = STATE(699), + [sym_select] = STATE(699), + [sym_insert] = STATE(699), + [sym_async] = STATE(699), + [sym_identifier_list] = STATE(1813), + [sym_table] = STATE(713), + [sym_function] = STATE(713), + [sym_function_call] = STATE(706), + [sym__context_defined_function] = STATE(703), + [sym_built_in_function] = STATE(703), + [sym__built_in_function_name] = STATE(311), + [sym_identifier] = ACTIONS(149), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(153), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(157), + [sym_string] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(279), + [anon_sym_EQ_GT] = ACTIONS(281), + [anon_sym_while] = ACTIONS(283), + [anon_sym_for] = ACTIONS(285), + [anon_sym_asyncfor] = ACTIONS(287), + [anon_sym_transform] = ACTIONS(289), + [anon_sym_filter] = ACTIONS(291), + [anon_sym_find] = ACTIONS(293), + [anon_sym_remove] = ACTIONS(295), + [anon_sym_reduce] = ACTIONS(297), + [anon_sym_select] = ACTIONS(299), + [anon_sym_insert] = ACTIONS(301), + [anon_sym_async] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(307), + [anon_sym_assert_equal] = ACTIONS(307), + [anon_sym_download] = ACTIONS(307), + [anon_sym_help] = ACTIONS(307), + [anon_sym_length] = ACTIONS(307), + [anon_sym_output] = ACTIONS(307), + [anon_sym_output_error] = ACTIONS(307), + [anon_sym_type] = ACTIONS(307), + [anon_sym_append] = ACTIONS(307), + [anon_sym_metadata] = ACTIONS(307), + [anon_sym_move] = ACTIONS(307), + [anon_sym_read] = ACTIONS(307), + [anon_sym_workdir] = ACTIONS(307), + [anon_sym_write] = ACTIONS(307), + [anon_sym_from_json] = ACTIONS(307), + [anon_sym_to_json] = ACTIONS(307), + [anon_sym_to_string] = ACTIONS(307), + [anon_sym_to_float] = ACTIONS(307), + [anon_sym_bash] = ACTIONS(307), + [anon_sym_fish] = ACTIONS(307), + [anon_sym_raw] = ACTIONS(307), + [anon_sym_sh] = ACTIONS(307), + [anon_sym_zsh] = ACTIONS(307), + [anon_sym_random] = ACTIONS(307), + [anon_sym_random_boolean] = ACTIONS(307), + [anon_sym_random_float] = ACTIONS(307), + [anon_sym_random_integer] = ACTIONS(307), + [anon_sym_columns] = ACTIONS(307), + [anon_sym_rows] = ACTIONS(307), + [anon_sym_reverse] = ACTIONS(307), }, - [550] = { - [sym_math_operator] = STATE(726), - [sym_logic_operator] = STATE(725), - [sym_identifier] = ACTIONS(1932), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [anon_sym_COMMA] = ACTIONS(1930), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1930), - [sym_string] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_RBRACK] = ACTIONS(1930), - [anon_sym_COLON] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1930), - [anon_sym_PIPE_PIPE] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_table] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_assert_equal] = ACTIONS(1932), - [anon_sym_download] = ACTIONS(1932), - [anon_sym_help] = ACTIONS(1932), - [anon_sym_length] = ACTIONS(1932), - [anon_sym_output] = ACTIONS(1932), - [anon_sym_output_error] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_append] = ACTIONS(1932), - [anon_sym_metadata] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_read] = ACTIONS(1932), - [anon_sym_workdir] = ACTIONS(1932), - [anon_sym_write] = ACTIONS(1932), - [anon_sym_from_json] = ACTIONS(1932), - [anon_sym_to_json] = ACTIONS(1932), - [anon_sym_to_string] = ACTIONS(1932), - [anon_sym_to_float] = ACTIONS(1932), - [anon_sym_bash] = ACTIONS(1932), - [anon_sym_fish] = ACTIONS(1932), - [anon_sym_raw] = ACTIONS(1932), - [anon_sym_sh] = ACTIONS(1932), - [anon_sym_zsh] = ACTIONS(1932), - [anon_sym_random] = ACTIONS(1932), - [anon_sym_random_boolean] = ACTIONS(1932), - [anon_sym_random_float] = ACTIONS(1932), - [anon_sym_random_integer] = ACTIONS(1932), - [anon_sym_columns] = ACTIONS(1932), - [anon_sym_rows] = ACTIONS(1932), - [anon_sym_reverse] = ACTIONS(1932), + [557] = { + [sym_else_if] = STATE(560), + [sym_else] = STATE(711), + [aux_sym_if_else_repeat1] = STATE(560), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_RPAREN] = ACTIONS(3219), + [anon_sym_COMMA] = ACTIONS(3219), + [sym_integer] = ACTIONS(3221), + [sym_float] = ACTIONS(3219), + [sym_string] = ACTIONS(3219), + [anon_sym_true] = ACTIONS(3221), + [anon_sym_false] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_RBRACK] = ACTIONS(3219), + [anon_sym_EQ] = ACTIONS(3221), + [anon_sym_COLON] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_PLUS_EQ] = ACTIONS(3219), + [anon_sym_DASH_EQ] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_elseif] = ACTIONS(3223), + [anon_sym_else] = ACTIONS(3225), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_EQ_GT] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_asyncfor] = ACTIONS(3219), + [anon_sym_transform] = ACTIONS(3221), + [anon_sym_filter] = ACTIONS(3221), + [anon_sym_find] = ACTIONS(3221), + [anon_sym_remove] = ACTIONS(3221), + [anon_sym_reduce] = ACTIONS(3221), + [anon_sym_select] = ACTIONS(3221), + [anon_sym_insert] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_table] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_assert_equal] = ACTIONS(3221), + [anon_sym_download] = ACTIONS(3221), + [anon_sym_help] = ACTIONS(3221), + [anon_sym_length] = ACTIONS(3221), + [anon_sym_output] = ACTIONS(3221), + [anon_sym_output_error] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_append] = ACTIONS(3221), + [anon_sym_metadata] = ACTIONS(3221), + [anon_sym_move] = ACTIONS(3221), + [anon_sym_read] = ACTIONS(3221), + [anon_sym_workdir] = ACTIONS(3221), + [anon_sym_write] = ACTIONS(3221), + [anon_sym_from_json] = ACTIONS(3221), + [anon_sym_to_json] = ACTIONS(3221), + [anon_sym_to_string] = ACTIONS(3221), + [anon_sym_to_float] = ACTIONS(3221), + [anon_sym_bash] = ACTIONS(3221), + [anon_sym_fish] = ACTIONS(3221), + [anon_sym_raw] = ACTIONS(3221), + [anon_sym_sh] = ACTIONS(3221), + [anon_sym_zsh] = ACTIONS(3221), + [anon_sym_random] = ACTIONS(3221), + [anon_sym_random_boolean] = ACTIONS(3221), + [anon_sym_random_float] = ACTIONS(3221), + [anon_sym_random_integer] = ACTIONS(3221), + [anon_sym_columns] = ACTIONS(3221), + [anon_sym_rows] = ACTIONS(3221), + [anon_sym_reverse] = ACTIONS(3221), }, - [551] = { - [sym_math_operator] = STATE(726), - [sym_logic_operator] = STATE(725), - [sym_identifier] = ACTIONS(1949), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_COMMA] = ACTIONS(1947), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1947), - [sym_string] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_RBRACK] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(2166), - [anon_sym_DOT_DOT] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_table] = ACTIONS(1949), - [anon_sym_assert] = ACTIONS(1949), - [anon_sym_assert_equal] = ACTIONS(1949), - [anon_sym_download] = ACTIONS(1949), - [anon_sym_help] = ACTIONS(1949), - [anon_sym_length] = ACTIONS(1949), - [anon_sym_output] = ACTIONS(1949), - [anon_sym_output_error] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_append] = ACTIONS(1949), - [anon_sym_metadata] = ACTIONS(1949), - [anon_sym_move] = ACTIONS(1949), - [anon_sym_read] = ACTIONS(1949), - [anon_sym_workdir] = ACTIONS(1949), - [anon_sym_write] = ACTIONS(1949), - [anon_sym_from_json] = ACTIONS(1949), - [anon_sym_to_json] = ACTIONS(1949), - [anon_sym_to_string] = ACTIONS(1949), - [anon_sym_to_float] = ACTIONS(1949), - [anon_sym_bash] = ACTIONS(1949), - [anon_sym_fish] = ACTIONS(1949), - [anon_sym_raw] = ACTIONS(1949), - [anon_sym_sh] = ACTIONS(1949), - [anon_sym_zsh] = ACTIONS(1949), - [anon_sym_random] = ACTIONS(1949), - [anon_sym_random_boolean] = ACTIONS(1949), - [anon_sym_random_float] = ACTIONS(1949), - [anon_sym_random_integer] = ACTIONS(1949), - [anon_sym_columns] = ACTIONS(1949), - [anon_sym_rows] = ACTIONS(1949), - [anon_sym_reverse] = ACTIONS(1949), + [558] = { + [sym_else_if] = STATE(559), + [sym_else] = STATE(595), + [aux_sym_if_else_repeat1] = STATE(559), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_RPAREN] = ACTIONS(3219), + [anon_sym_COMMA] = ACTIONS(3219), + [sym_integer] = ACTIONS(3221), + [sym_float] = ACTIONS(3219), + [sym_string] = ACTIONS(3219), + [anon_sym_true] = ACTIONS(3221), + [anon_sym_false] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_RBRACK] = ACTIONS(3219), + [anon_sym_EQ] = ACTIONS(3221), + [anon_sym_COLON] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_PLUS_EQ] = ACTIONS(3219), + [anon_sym_DASH_EQ] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_elseif] = ACTIONS(3223), + [anon_sym_else] = ACTIONS(3227), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_EQ_GT] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_asyncfor] = ACTIONS(3219), + [anon_sym_transform] = ACTIONS(3221), + [anon_sym_filter] = ACTIONS(3221), + [anon_sym_find] = ACTIONS(3221), + [anon_sym_remove] = ACTIONS(3221), + [anon_sym_reduce] = ACTIONS(3221), + [anon_sym_select] = ACTIONS(3221), + [anon_sym_insert] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_table] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_assert_equal] = ACTIONS(3221), + [anon_sym_download] = ACTIONS(3221), + [anon_sym_help] = ACTIONS(3221), + [anon_sym_length] = ACTIONS(3221), + [anon_sym_output] = ACTIONS(3221), + [anon_sym_output_error] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_append] = ACTIONS(3221), + [anon_sym_metadata] = ACTIONS(3221), + [anon_sym_move] = ACTIONS(3221), + [anon_sym_read] = ACTIONS(3221), + [anon_sym_workdir] = ACTIONS(3221), + [anon_sym_write] = ACTIONS(3221), + [anon_sym_from_json] = ACTIONS(3221), + [anon_sym_to_json] = ACTIONS(3221), + [anon_sym_to_string] = ACTIONS(3221), + [anon_sym_to_float] = ACTIONS(3221), + [anon_sym_bash] = ACTIONS(3221), + [anon_sym_fish] = ACTIONS(3221), + [anon_sym_raw] = ACTIONS(3221), + [anon_sym_sh] = ACTIONS(3221), + [anon_sym_zsh] = ACTIONS(3221), + [anon_sym_random] = ACTIONS(3221), + [anon_sym_random_boolean] = ACTIONS(3221), + [anon_sym_random_float] = ACTIONS(3221), + [anon_sym_random_integer] = ACTIONS(3221), + [anon_sym_columns] = ACTIONS(3221), + [anon_sym_rows] = ACTIONS(3221), + [anon_sym_reverse] = ACTIONS(3221), }, - [552] = { - [sym_math_operator] = STATE(726), - [sym_logic_operator] = STATE(725), - [sym_identifier] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1934), - [anon_sym_COMMA] = ACTIONS(1934), - [sym_integer] = ACTIONS(1936), - [sym_float] = ACTIONS(1934), - [sym_string] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_RBRACK] = ACTIONS(1934), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_DOT_DOT] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_EQ_EQ] = ACTIONS(1934), - [anon_sym_BANG_EQ] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_PIPE_PIPE] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_table] = ACTIONS(1936), - [anon_sym_assert] = ACTIONS(1936), - [anon_sym_assert_equal] = ACTIONS(1936), - [anon_sym_download] = ACTIONS(1936), - [anon_sym_help] = ACTIONS(1936), - [anon_sym_length] = ACTIONS(1936), - [anon_sym_output] = ACTIONS(1936), - [anon_sym_output_error] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_append] = ACTIONS(1936), - [anon_sym_metadata] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_read] = ACTIONS(1936), - [anon_sym_workdir] = ACTIONS(1936), - [anon_sym_write] = ACTIONS(1936), - [anon_sym_from_json] = ACTIONS(1936), - [anon_sym_to_json] = ACTIONS(1936), - [anon_sym_to_string] = ACTIONS(1936), - [anon_sym_to_float] = ACTIONS(1936), - [anon_sym_bash] = ACTIONS(1936), - [anon_sym_fish] = ACTIONS(1936), - [anon_sym_raw] = ACTIONS(1936), - [anon_sym_sh] = ACTIONS(1936), - [anon_sym_zsh] = ACTIONS(1936), - [anon_sym_random] = ACTIONS(1936), - [anon_sym_random_boolean] = ACTIONS(1936), - [anon_sym_random_float] = ACTIONS(1936), - [anon_sym_random_integer] = ACTIONS(1936), - [anon_sym_columns] = ACTIONS(1936), - [anon_sym_rows] = ACTIONS(1936), - [anon_sym_reverse] = ACTIONS(1936), + [559] = { + [sym_else_if] = STATE(570), + [sym_else] = STATE(605), + [aux_sym_if_else_repeat1] = STATE(570), + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [anon_sym_COMMA] = ACTIONS(3229), + [sym_integer] = ACTIONS(3231), + [sym_float] = ACTIONS(3229), + [sym_string] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_RBRACK] = ACTIONS(3229), + [anon_sym_EQ] = ACTIONS(3231), + [anon_sym_COLON] = ACTIONS(3229), + [anon_sym_DOT_DOT] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_PLUS_EQ] = ACTIONS(3229), + [anon_sym_DASH_EQ] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_elseif] = ACTIONS(3223), + [anon_sym_else] = ACTIONS(3227), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_asyncfor] = ACTIONS(3229), + [anon_sym_transform] = ACTIONS(3231), + [anon_sym_filter] = ACTIONS(3231), + [anon_sym_find] = ACTIONS(3231), + [anon_sym_remove] = ACTIONS(3231), + [anon_sym_reduce] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_insert] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_table] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_assert_equal] = ACTIONS(3231), + [anon_sym_download] = ACTIONS(3231), + [anon_sym_help] = ACTIONS(3231), + [anon_sym_length] = ACTIONS(3231), + [anon_sym_output] = ACTIONS(3231), + [anon_sym_output_error] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_append] = ACTIONS(3231), + [anon_sym_metadata] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_read] = ACTIONS(3231), + [anon_sym_workdir] = ACTIONS(3231), + [anon_sym_write] = ACTIONS(3231), + [anon_sym_from_json] = ACTIONS(3231), + [anon_sym_to_json] = ACTIONS(3231), + [anon_sym_to_string] = ACTIONS(3231), + [anon_sym_to_float] = ACTIONS(3231), + [anon_sym_bash] = ACTIONS(3231), + [anon_sym_fish] = ACTIONS(3231), + [anon_sym_raw] = ACTIONS(3231), + [anon_sym_sh] = ACTIONS(3231), + [anon_sym_zsh] = ACTIONS(3231), + [anon_sym_random] = ACTIONS(3231), + [anon_sym_random_boolean] = ACTIONS(3231), + [anon_sym_random_float] = ACTIONS(3231), + [anon_sym_random_integer] = ACTIONS(3231), + [anon_sym_columns] = ACTIONS(3231), + [anon_sym_rows] = ACTIONS(3231), + [anon_sym_reverse] = ACTIONS(3231), }, - [553] = { - [sym_math_operator] = STATE(726), - [sym_logic_operator] = STATE(725), - [sym_identifier] = ACTIONS(1940), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(2031), - [sym_integer] = ACTIONS(1940), - [sym_float] = ACTIONS(1938), - [sym_string] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_RBRACK] = ACTIONS(1938), - [anon_sym_COLON] = ACTIONS(2166), - [anon_sym_DOT_DOT] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_table] = ACTIONS(1940), - [anon_sym_assert] = ACTIONS(1940), - [anon_sym_assert_equal] = ACTIONS(1940), - [anon_sym_download] = ACTIONS(1940), - [anon_sym_help] = ACTIONS(1940), - [anon_sym_length] = ACTIONS(1940), - [anon_sym_output] = ACTIONS(1940), - [anon_sym_output_error] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_append] = ACTIONS(1940), - [anon_sym_metadata] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_read] = ACTIONS(1940), - [anon_sym_workdir] = ACTIONS(1940), - [anon_sym_write] = ACTIONS(1940), - [anon_sym_from_json] = ACTIONS(1940), - [anon_sym_to_json] = ACTIONS(1940), - [anon_sym_to_string] = ACTIONS(1940), - [anon_sym_to_float] = ACTIONS(1940), - [anon_sym_bash] = ACTIONS(1940), - [anon_sym_fish] = ACTIONS(1940), - [anon_sym_raw] = ACTIONS(1940), - [anon_sym_sh] = ACTIONS(1940), - [anon_sym_zsh] = ACTIONS(1940), - [anon_sym_random] = ACTIONS(1940), - [anon_sym_random_boolean] = ACTIONS(1940), - [anon_sym_random_float] = ACTIONS(1940), - [anon_sym_random_integer] = ACTIONS(1940), - [anon_sym_columns] = ACTIONS(1940), - [anon_sym_rows] = ACTIONS(1940), - [anon_sym_reverse] = ACTIONS(1940), + [560] = { + [sym_else_if] = STATE(570), + [sym_else] = STATE(725), + [aux_sym_if_else_repeat1] = STATE(570), + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [anon_sym_COMMA] = ACTIONS(3229), + [sym_integer] = ACTIONS(3231), + [sym_float] = ACTIONS(3229), + [sym_string] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_RBRACK] = ACTIONS(3229), + [anon_sym_EQ] = ACTIONS(3231), + [anon_sym_COLON] = ACTIONS(3229), + [anon_sym_DOT_DOT] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_PLUS_EQ] = ACTIONS(3229), + [anon_sym_DASH_EQ] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_elseif] = ACTIONS(3223), + [anon_sym_else] = ACTIONS(3225), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_asyncfor] = ACTIONS(3229), + [anon_sym_transform] = ACTIONS(3231), + [anon_sym_filter] = ACTIONS(3231), + [anon_sym_find] = ACTIONS(3231), + [anon_sym_remove] = ACTIONS(3231), + [anon_sym_reduce] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_insert] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_table] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_assert_equal] = ACTIONS(3231), + [anon_sym_download] = ACTIONS(3231), + [anon_sym_help] = ACTIONS(3231), + [anon_sym_length] = ACTIONS(3231), + [anon_sym_output] = ACTIONS(3231), + [anon_sym_output_error] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_append] = ACTIONS(3231), + [anon_sym_metadata] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_read] = ACTIONS(3231), + [anon_sym_workdir] = ACTIONS(3231), + [anon_sym_write] = ACTIONS(3231), + [anon_sym_from_json] = ACTIONS(3231), + [anon_sym_to_json] = ACTIONS(3231), + [anon_sym_to_string] = ACTIONS(3231), + [anon_sym_to_float] = ACTIONS(3231), + [anon_sym_bash] = ACTIONS(3231), + [anon_sym_fish] = ACTIONS(3231), + [anon_sym_raw] = ACTIONS(3231), + [anon_sym_sh] = ACTIONS(3231), + [anon_sym_zsh] = ACTIONS(3231), + [anon_sym_random] = ACTIONS(3231), + [anon_sym_random_boolean] = ACTIONS(3231), + [anon_sym_random_float] = ACTIONS(3231), + [anon_sym_random_integer] = ACTIONS(3231), + [anon_sym_columns] = ACTIONS(3231), + [anon_sym_rows] = ACTIONS(3231), + [anon_sym_reverse] = ACTIONS(3231), }, - [554] = { - [sym_math_operator] = STATE(726), - [sym_logic_operator] = STATE(725), - [sym_identifier] = ACTIONS(1915), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [sym_string] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_table] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_assert_equal] = ACTIONS(1915), - [anon_sym_download] = ACTIONS(1915), - [anon_sym_help] = ACTIONS(1915), - [anon_sym_length] = ACTIONS(1915), - [anon_sym_output] = ACTIONS(1915), - [anon_sym_output_error] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_append] = ACTIONS(1915), - [anon_sym_metadata] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_read] = ACTIONS(1915), - [anon_sym_workdir] = ACTIONS(1915), - [anon_sym_write] = ACTIONS(1915), - [anon_sym_from_json] = ACTIONS(1915), - [anon_sym_to_json] = ACTIONS(1915), - [anon_sym_to_string] = ACTIONS(1915), - [anon_sym_to_float] = ACTIONS(1915), - [anon_sym_bash] = ACTIONS(1915), - [anon_sym_fish] = ACTIONS(1915), - [anon_sym_raw] = ACTIONS(1915), - [anon_sym_sh] = ACTIONS(1915), - [anon_sym_zsh] = ACTIONS(1915), - [anon_sym_random] = ACTIONS(1915), - [anon_sym_random_boolean] = ACTIONS(1915), - [anon_sym_random_float] = ACTIONS(1915), - [anon_sym_random_integer] = ACTIONS(1915), - [anon_sym_columns] = ACTIONS(1915), - [anon_sym_rows] = ACTIONS(1915), - [anon_sym_reverse] = ACTIONS(1915), + [561] = { + [sym_math_operator] = STATE(1313), + [sym_logic_operator] = STATE(1312), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3235), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3237), + [sym_integer] = ACTIONS(3235), + [sym_float] = ACTIONS(3233), + [sym_string] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_RBRACK] = ACTIONS(3233), + [anon_sym_EQ] = ACTIONS(3235), + [anon_sym_COLON] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3233), + [anon_sym_DASH_EQ] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_elseif] = ACTIONS(3233), + [anon_sym_else] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_asyncfor] = ACTIONS(3233), + [anon_sym_transform] = ACTIONS(3235), + [anon_sym_filter] = ACTIONS(3235), + [anon_sym_find] = ACTIONS(3235), + [anon_sym_remove] = ACTIONS(3235), + [anon_sym_reduce] = ACTIONS(3235), + [anon_sym_select] = ACTIONS(3235), + [anon_sym_insert] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_table] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_assert_equal] = ACTIONS(3235), + [anon_sym_download] = ACTIONS(3235), + [anon_sym_help] = ACTIONS(3235), + [anon_sym_length] = ACTIONS(3235), + [anon_sym_output] = ACTIONS(3235), + [anon_sym_output_error] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_append] = ACTIONS(3235), + [anon_sym_metadata] = ACTIONS(3235), + [anon_sym_move] = ACTIONS(3235), + [anon_sym_read] = ACTIONS(3235), + [anon_sym_workdir] = ACTIONS(3235), + [anon_sym_write] = ACTIONS(3235), + [anon_sym_from_json] = ACTIONS(3235), + [anon_sym_to_json] = ACTIONS(3235), + [anon_sym_to_string] = ACTIONS(3235), + [anon_sym_to_float] = ACTIONS(3235), + [anon_sym_bash] = ACTIONS(3235), + [anon_sym_fish] = ACTIONS(3235), + [anon_sym_raw] = ACTIONS(3235), + [anon_sym_sh] = ACTIONS(3235), + [anon_sym_zsh] = ACTIONS(3235), + [anon_sym_random] = ACTIONS(3235), + [anon_sym_random_boolean] = ACTIONS(3235), + [anon_sym_random_float] = ACTIONS(3235), + [anon_sym_random_integer] = ACTIONS(3235), + [anon_sym_columns] = ACTIONS(3235), + [anon_sym_rows] = ACTIONS(3235), + [anon_sym_reverse] = ACTIONS(3235), + }, + [562] = { + [sym_math_operator] = STATE(1313), + [sym_logic_operator] = STATE(1312), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3242), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [sym_integer] = ACTIONS(3242), + [sym_float] = ACTIONS(3240), + [sym_string] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_EQ] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_elseif] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_asyncfor] = ACTIONS(3240), + [anon_sym_transform] = ACTIONS(3242), + [anon_sym_filter] = ACTIONS(3242), + [anon_sym_find] = ACTIONS(3242), + [anon_sym_remove] = ACTIONS(3242), + [anon_sym_reduce] = ACTIONS(3242), + [anon_sym_select] = ACTIONS(3242), + [anon_sym_insert] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_table] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_assert_equal] = ACTIONS(3242), + [anon_sym_download] = ACTIONS(3242), + [anon_sym_help] = ACTIONS(3242), + [anon_sym_length] = ACTIONS(3242), + [anon_sym_output] = ACTIONS(3242), + [anon_sym_output_error] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_append] = ACTIONS(3242), + [anon_sym_metadata] = ACTIONS(3242), + [anon_sym_move] = ACTIONS(3242), + [anon_sym_read] = ACTIONS(3242), + [anon_sym_workdir] = ACTIONS(3242), + [anon_sym_write] = ACTIONS(3242), + [anon_sym_from_json] = ACTIONS(3242), + [anon_sym_to_json] = ACTIONS(3242), + [anon_sym_to_string] = ACTIONS(3242), + [anon_sym_to_float] = ACTIONS(3242), + [anon_sym_bash] = ACTIONS(3242), + [anon_sym_fish] = ACTIONS(3242), + [anon_sym_raw] = ACTIONS(3242), + [anon_sym_sh] = ACTIONS(3242), + [anon_sym_zsh] = ACTIONS(3242), + [anon_sym_random] = ACTIONS(3242), + [anon_sym_random_boolean] = ACTIONS(3242), + [anon_sym_random_float] = ACTIONS(3242), + [anon_sym_random_integer] = ACTIONS(3242), + [anon_sym_columns] = ACTIONS(3242), + [anon_sym_rows] = ACTIONS(3242), + [anon_sym_reverse] = ACTIONS(3242), + }, + [563] = { + [sym_math_operator] = STATE(1313), + [sym_logic_operator] = STATE(1312), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_RPAREN] = ACTIONS(3244), + [anon_sym_COMMA] = ACTIONS(3244), + [sym_integer] = ACTIONS(3246), + [sym_float] = ACTIONS(3244), + [sym_string] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_RBRACK] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3246), + [anon_sym_COLON] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3244), + [anon_sym_DASH_EQ] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_elseif] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_asyncfor] = ACTIONS(3244), + [anon_sym_transform] = ACTIONS(3246), + [anon_sym_filter] = ACTIONS(3246), + [anon_sym_find] = ACTIONS(3246), + [anon_sym_remove] = ACTIONS(3246), + [anon_sym_reduce] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_insert] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_table] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_assert_equal] = ACTIONS(3246), + [anon_sym_download] = ACTIONS(3246), + [anon_sym_help] = ACTIONS(3246), + [anon_sym_length] = ACTIONS(3246), + [anon_sym_output] = ACTIONS(3246), + [anon_sym_output_error] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_append] = ACTIONS(3246), + [anon_sym_metadata] = ACTIONS(3246), + [anon_sym_move] = ACTIONS(3246), + [anon_sym_read] = ACTIONS(3246), + [anon_sym_workdir] = ACTIONS(3246), + [anon_sym_write] = ACTIONS(3246), + [anon_sym_from_json] = ACTIONS(3246), + [anon_sym_to_json] = ACTIONS(3246), + [anon_sym_to_string] = ACTIONS(3246), + [anon_sym_to_float] = ACTIONS(3246), + [anon_sym_bash] = ACTIONS(3246), + [anon_sym_fish] = ACTIONS(3246), + [anon_sym_raw] = ACTIONS(3246), + [anon_sym_sh] = ACTIONS(3246), + [anon_sym_zsh] = ACTIONS(3246), + [anon_sym_random] = ACTIONS(3246), + [anon_sym_random_boolean] = ACTIONS(3246), + [anon_sym_random_float] = ACTIONS(3246), + [anon_sym_random_integer] = ACTIONS(3246), + [anon_sym_columns] = ACTIONS(3246), + [anon_sym_rows] = ACTIONS(3246), + [anon_sym_reverse] = ACTIONS(3246), + }, + [564] = { + [sym_math_operator] = STATE(1313), + [sym_logic_operator] = STATE(1312), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_COMMA] = ACTIONS(3248), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3248), + [sym_string] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_elseif] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_asyncfor] = ACTIONS(3248), + [anon_sym_transform] = ACTIONS(3250), + [anon_sym_filter] = ACTIONS(3250), + [anon_sym_find] = ACTIONS(3250), + [anon_sym_remove] = ACTIONS(3250), + [anon_sym_reduce] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_insert] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_table] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_assert_equal] = ACTIONS(3250), + [anon_sym_download] = ACTIONS(3250), + [anon_sym_help] = ACTIONS(3250), + [anon_sym_length] = ACTIONS(3250), + [anon_sym_output] = ACTIONS(3250), + [anon_sym_output_error] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_append] = ACTIONS(3250), + [anon_sym_metadata] = ACTIONS(3250), + [anon_sym_move] = ACTIONS(3250), + [anon_sym_read] = ACTIONS(3250), + [anon_sym_workdir] = ACTIONS(3250), + [anon_sym_write] = ACTIONS(3250), + [anon_sym_from_json] = ACTIONS(3250), + [anon_sym_to_json] = ACTIONS(3250), + [anon_sym_to_string] = ACTIONS(3250), + [anon_sym_to_float] = ACTIONS(3250), + [anon_sym_bash] = ACTIONS(3250), + [anon_sym_fish] = ACTIONS(3250), + [anon_sym_raw] = ACTIONS(3250), + [anon_sym_sh] = ACTIONS(3250), + [anon_sym_zsh] = ACTIONS(3250), + [anon_sym_random] = ACTIONS(3250), + [anon_sym_random_boolean] = ACTIONS(3250), + [anon_sym_random_float] = ACTIONS(3250), + [anon_sym_random_integer] = ACTIONS(3250), + [anon_sym_columns] = ACTIONS(3250), + [anon_sym_rows] = ACTIONS(3250), + [anon_sym_reverse] = ACTIONS(3250), + }, + [565] = { + [sym_math_operator] = STATE(1313), + [sym_logic_operator] = STATE(1312), + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3254), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3252), + [anon_sym_COMMA] = ACTIONS(3252), + [sym_integer] = ACTIONS(3254), + [sym_float] = ACTIONS(3252), + [sym_string] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_RBRACK] = ACTIONS(3252), + [anon_sym_EQ] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_DOT_DOT] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_PLUS_EQ] = ACTIONS(3252), + [anon_sym_DASH_EQ] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_elseif] = ACTIONS(3252), + [anon_sym_else] = ACTIONS(3254), + [anon_sym_match] = ACTIONS(3254), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_asyncfor] = ACTIONS(3252), + [anon_sym_transform] = ACTIONS(3254), + [anon_sym_filter] = ACTIONS(3254), + [anon_sym_find] = ACTIONS(3254), + [anon_sym_remove] = ACTIONS(3254), + [anon_sym_reduce] = ACTIONS(3254), + [anon_sym_select] = ACTIONS(3254), + [anon_sym_insert] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_table] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_assert_equal] = ACTIONS(3254), + [anon_sym_download] = ACTIONS(3254), + [anon_sym_help] = ACTIONS(3254), + [anon_sym_length] = ACTIONS(3254), + [anon_sym_output] = ACTIONS(3254), + [anon_sym_output_error] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_append] = ACTIONS(3254), + [anon_sym_metadata] = ACTIONS(3254), + [anon_sym_move] = ACTIONS(3254), + [anon_sym_read] = ACTIONS(3254), + [anon_sym_workdir] = ACTIONS(3254), + [anon_sym_write] = ACTIONS(3254), + [anon_sym_from_json] = ACTIONS(3254), + [anon_sym_to_json] = ACTIONS(3254), + [anon_sym_to_string] = ACTIONS(3254), + [anon_sym_to_float] = ACTIONS(3254), + [anon_sym_bash] = ACTIONS(3254), + [anon_sym_fish] = ACTIONS(3254), + [anon_sym_raw] = ACTIONS(3254), + [anon_sym_sh] = ACTIONS(3254), + [anon_sym_zsh] = ACTIONS(3254), + [anon_sym_random] = ACTIONS(3254), + [anon_sym_random_boolean] = ACTIONS(3254), + [anon_sym_random_float] = ACTIONS(3254), + [anon_sym_random_integer] = ACTIONS(3254), + [anon_sym_columns] = ACTIONS(3254), + [anon_sym_rows] = ACTIONS(3254), + [anon_sym_reverse] = ACTIONS(3254), + }, + [566] = { + [sym_else_if] = STATE(580), + [sym_else] = STATE(725), + [aux_sym_if_else_repeat1] = STATE(580), + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [anon_sym_COMMA] = ACTIONS(3229), + [sym_integer] = ACTIONS(3231), + [sym_float] = ACTIONS(3229), + [sym_string] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_RBRACK] = ACTIONS(3229), + [anon_sym_EQ] = ACTIONS(3231), + [anon_sym_COLON] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_PLUS_EQ] = ACTIONS(3229), + [anon_sym_DASH_EQ] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_elseif] = ACTIONS(3256), + [anon_sym_else] = ACTIONS(3258), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_asyncfor] = ACTIONS(3229), + [anon_sym_transform] = ACTIONS(3231), + [anon_sym_filter] = ACTIONS(3231), + [anon_sym_find] = ACTIONS(3231), + [anon_sym_remove] = ACTIONS(3231), + [anon_sym_reduce] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_insert] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_table] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_assert_equal] = ACTIONS(3231), + [anon_sym_download] = ACTIONS(3231), + [anon_sym_help] = ACTIONS(3231), + [anon_sym_length] = ACTIONS(3231), + [anon_sym_output] = ACTIONS(3231), + [anon_sym_output_error] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_append] = ACTIONS(3231), + [anon_sym_metadata] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_read] = ACTIONS(3231), + [anon_sym_workdir] = ACTIONS(3231), + [anon_sym_write] = ACTIONS(3231), + [anon_sym_from_json] = ACTIONS(3231), + [anon_sym_to_json] = ACTIONS(3231), + [anon_sym_to_string] = ACTIONS(3231), + [anon_sym_to_float] = ACTIONS(3231), + [anon_sym_bash] = ACTIONS(3231), + [anon_sym_fish] = ACTIONS(3231), + [anon_sym_raw] = ACTIONS(3231), + [anon_sym_sh] = ACTIONS(3231), + [anon_sym_zsh] = ACTIONS(3231), + [anon_sym_random] = ACTIONS(3231), + [anon_sym_random_boolean] = ACTIONS(3231), + [anon_sym_random_float] = ACTIONS(3231), + [anon_sym_random_integer] = ACTIONS(3231), + [anon_sym_columns] = ACTIONS(3231), + [anon_sym_rows] = ACTIONS(3231), + [anon_sym_reverse] = ACTIONS(3231), + }, + [567] = { + [sym_else_if] = STATE(574), + [sym_else] = STATE(595), + [aux_sym_if_else_repeat1] = STATE(574), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_RPAREN] = ACTIONS(3219), + [anon_sym_COMMA] = ACTIONS(3219), + [sym_integer] = ACTIONS(3221), + [sym_float] = ACTIONS(3219), + [sym_string] = ACTIONS(3219), + [anon_sym_true] = ACTIONS(3221), + [anon_sym_false] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_RBRACK] = ACTIONS(3219), + [anon_sym_EQ] = ACTIONS(3221), + [anon_sym_COLON] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_PLUS_EQ] = ACTIONS(3219), + [anon_sym_DASH_EQ] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_elseif] = ACTIONS(3256), + [anon_sym_else] = ACTIONS(3260), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_EQ_GT] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_asyncfor] = ACTIONS(3219), + [anon_sym_transform] = ACTIONS(3221), + [anon_sym_filter] = ACTIONS(3221), + [anon_sym_find] = ACTIONS(3221), + [anon_sym_remove] = ACTIONS(3221), + [anon_sym_reduce] = ACTIONS(3221), + [anon_sym_select] = ACTIONS(3221), + [anon_sym_insert] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_table] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_assert_equal] = ACTIONS(3221), + [anon_sym_download] = ACTIONS(3221), + [anon_sym_help] = ACTIONS(3221), + [anon_sym_length] = ACTIONS(3221), + [anon_sym_output] = ACTIONS(3221), + [anon_sym_output_error] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_append] = ACTIONS(3221), + [anon_sym_metadata] = ACTIONS(3221), + [anon_sym_move] = ACTIONS(3221), + [anon_sym_read] = ACTIONS(3221), + [anon_sym_workdir] = ACTIONS(3221), + [anon_sym_write] = ACTIONS(3221), + [anon_sym_from_json] = ACTIONS(3221), + [anon_sym_to_json] = ACTIONS(3221), + [anon_sym_to_string] = ACTIONS(3221), + [anon_sym_to_float] = ACTIONS(3221), + [anon_sym_bash] = ACTIONS(3221), + [anon_sym_fish] = ACTIONS(3221), + [anon_sym_raw] = ACTIONS(3221), + [anon_sym_sh] = ACTIONS(3221), + [anon_sym_zsh] = ACTIONS(3221), + [anon_sym_random] = ACTIONS(3221), + [anon_sym_random_boolean] = ACTIONS(3221), + [anon_sym_random_float] = ACTIONS(3221), + [anon_sym_random_integer] = ACTIONS(3221), + [anon_sym_columns] = ACTIONS(3221), + [anon_sym_rows] = ACTIONS(3221), + [anon_sym_reverse] = ACTIONS(3221), + }, + [568] = { + [sym_math_operator] = STATE(1313), + [sym_logic_operator] = STATE(1312), + [ts_builtin_sym_end] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3264), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [sym_integer] = ACTIONS(3264), + [sym_float] = ACTIONS(3262), + [sym_string] = ACTIONS(3262), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_RBRACK] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_DOT_DOT] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_PLUS_EQ] = ACTIONS(3262), + [anon_sym_DASH_EQ] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_elseif] = ACTIONS(3262), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_match] = ACTIONS(3264), + [anon_sym_EQ_GT] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_asyncfor] = ACTIONS(3262), + [anon_sym_transform] = ACTIONS(3264), + [anon_sym_filter] = ACTIONS(3264), + [anon_sym_find] = ACTIONS(3264), + [anon_sym_remove] = ACTIONS(3264), + [anon_sym_reduce] = ACTIONS(3264), + [anon_sym_select] = ACTIONS(3264), + [anon_sym_insert] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_table] = ACTIONS(3264), + [anon_sym_assert] = ACTIONS(3264), + [anon_sym_assert_equal] = ACTIONS(3264), + [anon_sym_download] = ACTIONS(3264), + [anon_sym_help] = ACTIONS(3264), + [anon_sym_length] = ACTIONS(3264), + [anon_sym_output] = ACTIONS(3264), + [anon_sym_output_error] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_append] = ACTIONS(3264), + [anon_sym_metadata] = ACTIONS(3264), + [anon_sym_move] = ACTIONS(3264), + [anon_sym_read] = ACTIONS(3264), + [anon_sym_workdir] = ACTIONS(3264), + [anon_sym_write] = ACTIONS(3264), + [anon_sym_from_json] = ACTIONS(3264), + [anon_sym_to_json] = ACTIONS(3264), + [anon_sym_to_string] = ACTIONS(3264), + [anon_sym_to_float] = ACTIONS(3264), + [anon_sym_bash] = ACTIONS(3264), + [anon_sym_fish] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3264), + [anon_sym_sh] = ACTIONS(3264), + [anon_sym_zsh] = ACTIONS(3264), + [anon_sym_random] = ACTIONS(3264), + [anon_sym_random_boolean] = ACTIONS(3264), + [anon_sym_random_float] = ACTIONS(3264), + [anon_sym_random_integer] = ACTIONS(3264), + [anon_sym_columns] = ACTIONS(3264), + [anon_sym_rows] = ACTIONS(3264), + [anon_sym_reverse] = ACTIONS(3264), + }, + [569] = { + [sym_math_operator] = STATE(1313), + [sym_logic_operator] = STATE(1312), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_COMMA] = ACTIONS(3248), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3248), + [sym_string] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_elseif] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_asyncfor] = ACTIONS(3248), + [anon_sym_transform] = ACTIONS(3250), + [anon_sym_filter] = ACTIONS(3250), + [anon_sym_find] = ACTIONS(3250), + [anon_sym_remove] = ACTIONS(3250), + [anon_sym_reduce] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_insert] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_table] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_assert_equal] = ACTIONS(3250), + [anon_sym_download] = ACTIONS(3250), + [anon_sym_help] = ACTIONS(3250), + [anon_sym_length] = ACTIONS(3250), + [anon_sym_output] = ACTIONS(3250), + [anon_sym_output_error] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_append] = ACTIONS(3250), + [anon_sym_metadata] = ACTIONS(3250), + [anon_sym_move] = ACTIONS(3250), + [anon_sym_read] = ACTIONS(3250), + [anon_sym_workdir] = ACTIONS(3250), + [anon_sym_write] = ACTIONS(3250), + [anon_sym_from_json] = ACTIONS(3250), + [anon_sym_to_json] = ACTIONS(3250), + [anon_sym_to_string] = ACTIONS(3250), + [anon_sym_to_float] = ACTIONS(3250), + [anon_sym_bash] = ACTIONS(3250), + [anon_sym_fish] = ACTIONS(3250), + [anon_sym_raw] = ACTIONS(3250), + [anon_sym_sh] = ACTIONS(3250), + [anon_sym_zsh] = ACTIONS(3250), + [anon_sym_random] = ACTIONS(3250), + [anon_sym_random_boolean] = ACTIONS(3250), + [anon_sym_random_float] = ACTIONS(3250), + [anon_sym_random_integer] = ACTIONS(3250), + [anon_sym_columns] = ACTIONS(3250), + [anon_sym_rows] = ACTIONS(3250), + [anon_sym_reverse] = ACTIONS(3250), + }, + [570] = { + [sym_else_if] = STATE(570), + [aux_sym_if_else_repeat1] = STATE(570), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_RPAREN] = ACTIONS(3268), + [anon_sym_COMMA] = ACTIONS(3268), + [sym_integer] = ACTIONS(3270), + [sym_float] = ACTIONS(3268), + [sym_string] = ACTIONS(3268), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_RBRACK] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_PIPE_PIPE] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT_EQ] = ACTIONS(3268), + [anon_sym_LT_EQ] = ACTIONS(3268), + [anon_sym_PLUS_EQ] = ACTIONS(3268), + [anon_sym_DASH_EQ] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_elseif] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_match] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_asyncfor] = ACTIONS(3268), + [anon_sym_transform] = ACTIONS(3270), + [anon_sym_filter] = ACTIONS(3270), + [anon_sym_find] = ACTIONS(3270), + [anon_sym_remove] = ACTIONS(3270), + [anon_sym_reduce] = ACTIONS(3270), + [anon_sym_select] = ACTIONS(3270), + [anon_sym_insert] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3270), + [anon_sym_table] = ACTIONS(3270), + [anon_sym_assert] = ACTIONS(3270), + [anon_sym_assert_equal] = ACTIONS(3270), + [anon_sym_download] = ACTIONS(3270), + [anon_sym_help] = ACTIONS(3270), + [anon_sym_length] = ACTIONS(3270), + [anon_sym_output] = ACTIONS(3270), + [anon_sym_output_error] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_append] = ACTIONS(3270), + [anon_sym_metadata] = ACTIONS(3270), + [anon_sym_move] = ACTIONS(3270), + [anon_sym_read] = ACTIONS(3270), + [anon_sym_workdir] = ACTIONS(3270), + [anon_sym_write] = ACTIONS(3270), + [anon_sym_from_json] = ACTIONS(3270), + [anon_sym_to_json] = ACTIONS(3270), + [anon_sym_to_string] = ACTIONS(3270), + [anon_sym_to_float] = ACTIONS(3270), + [anon_sym_bash] = ACTIONS(3270), + [anon_sym_fish] = ACTIONS(3270), + [anon_sym_raw] = ACTIONS(3270), + [anon_sym_sh] = ACTIONS(3270), + [anon_sym_zsh] = ACTIONS(3270), + [anon_sym_random] = ACTIONS(3270), + [anon_sym_random_boolean] = ACTIONS(3270), + [anon_sym_random_float] = ACTIONS(3270), + [anon_sym_random_integer] = ACTIONS(3270), + [anon_sym_columns] = ACTIONS(3270), + [anon_sym_rows] = ACTIONS(3270), + [anon_sym_reverse] = ACTIONS(3270), + }, + [571] = { + [sym_math_operator] = STATE(1313), + [sym_logic_operator] = STATE(1312), + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_RBRACK] = ACTIONS(3275), + [anon_sym_EQ] = ACTIONS(3277), + [anon_sym_COLON] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3275), + [anon_sym_DASH_EQ] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_elseif] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [572] = { + [sym_math_operator] = STATE(1313), + [sym_logic_operator] = STATE(1312), + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3283), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_RPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3281), + [sym_integer] = ACTIONS(3283), + [sym_float] = ACTIONS(3281), + [sym_string] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_RBRACK] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3281), + [anon_sym_DASH_EQ] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_elseif] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_EQ_GT] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_asyncfor] = ACTIONS(3281), + [anon_sym_transform] = ACTIONS(3283), + [anon_sym_filter] = ACTIONS(3283), + [anon_sym_find] = ACTIONS(3283), + [anon_sym_remove] = ACTIONS(3283), + [anon_sym_reduce] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_insert] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_table] = ACTIONS(3283), + [anon_sym_assert] = ACTIONS(3283), + [anon_sym_assert_equal] = ACTIONS(3283), + [anon_sym_download] = ACTIONS(3283), + [anon_sym_help] = ACTIONS(3283), + [anon_sym_length] = ACTIONS(3283), + [anon_sym_output] = ACTIONS(3283), + [anon_sym_output_error] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_append] = ACTIONS(3283), + [anon_sym_metadata] = ACTIONS(3283), + [anon_sym_move] = ACTIONS(3283), + [anon_sym_read] = ACTIONS(3283), + [anon_sym_workdir] = ACTIONS(3283), + [anon_sym_write] = ACTIONS(3283), + [anon_sym_from_json] = ACTIONS(3283), + [anon_sym_to_json] = ACTIONS(3283), + [anon_sym_to_string] = ACTIONS(3283), + [anon_sym_to_float] = ACTIONS(3283), + [anon_sym_bash] = ACTIONS(3283), + [anon_sym_fish] = ACTIONS(3283), + [anon_sym_raw] = ACTIONS(3283), + [anon_sym_sh] = ACTIONS(3283), + [anon_sym_zsh] = ACTIONS(3283), + [anon_sym_random] = ACTIONS(3283), + [anon_sym_random_boolean] = ACTIONS(3283), + [anon_sym_random_float] = ACTIONS(3283), + [anon_sym_random_integer] = ACTIONS(3283), + [anon_sym_columns] = ACTIONS(3283), + [anon_sym_rows] = ACTIONS(3283), + [anon_sym_reverse] = ACTIONS(3283), + }, + [573] = { + [sym_else_if] = STATE(566), + [sym_else] = STATE(711), + [aux_sym_if_else_repeat1] = STATE(566), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_RPAREN] = ACTIONS(3219), + [anon_sym_COMMA] = ACTIONS(3219), + [sym_integer] = ACTIONS(3221), + [sym_float] = ACTIONS(3219), + [sym_string] = ACTIONS(3219), + [anon_sym_true] = ACTIONS(3221), + [anon_sym_false] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_RBRACK] = ACTIONS(3219), + [anon_sym_EQ] = ACTIONS(3221), + [anon_sym_COLON] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_PLUS_EQ] = ACTIONS(3219), + [anon_sym_DASH_EQ] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_elseif] = ACTIONS(3256), + [anon_sym_else] = ACTIONS(3258), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_EQ_GT] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_asyncfor] = ACTIONS(3219), + [anon_sym_transform] = ACTIONS(3221), + [anon_sym_filter] = ACTIONS(3221), + [anon_sym_find] = ACTIONS(3221), + [anon_sym_remove] = ACTIONS(3221), + [anon_sym_reduce] = ACTIONS(3221), + [anon_sym_select] = ACTIONS(3221), + [anon_sym_insert] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_table] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_assert_equal] = ACTIONS(3221), + [anon_sym_download] = ACTIONS(3221), + [anon_sym_help] = ACTIONS(3221), + [anon_sym_length] = ACTIONS(3221), + [anon_sym_output] = ACTIONS(3221), + [anon_sym_output_error] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_append] = ACTIONS(3221), + [anon_sym_metadata] = ACTIONS(3221), + [anon_sym_move] = ACTIONS(3221), + [anon_sym_read] = ACTIONS(3221), + [anon_sym_workdir] = ACTIONS(3221), + [anon_sym_write] = ACTIONS(3221), + [anon_sym_from_json] = ACTIONS(3221), + [anon_sym_to_json] = ACTIONS(3221), + [anon_sym_to_string] = ACTIONS(3221), + [anon_sym_to_float] = ACTIONS(3221), + [anon_sym_bash] = ACTIONS(3221), + [anon_sym_fish] = ACTIONS(3221), + [anon_sym_raw] = ACTIONS(3221), + [anon_sym_sh] = ACTIONS(3221), + [anon_sym_zsh] = ACTIONS(3221), + [anon_sym_random] = ACTIONS(3221), + [anon_sym_random_boolean] = ACTIONS(3221), + [anon_sym_random_float] = ACTIONS(3221), + [anon_sym_random_integer] = ACTIONS(3221), + [anon_sym_columns] = ACTIONS(3221), + [anon_sym_rows] = ACTIONS(3221), + [anon_sym_reverse] = ACTIONS(3221), + }, + [574] = { + [sym_else_if] = STATE(580), + [sym_else] = STATE(605), + [aux_sym_if_else_repeat1] = STATE(580), + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [anon_sym_COMMA] = ACTIONS(3229), + [sym_integer] = ACTIONS(3231), + [sym_float] = ACTIONS(3229), + [sym_string] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_RBRACK] = ACTIONS(3229), + [anon_sym_EQ] = ACTIONS(3231), + [anon_sym_COLON] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_PLUS_EQ] = ACTIONS(3229), + [anon_sym_DASH_EQ] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_elseif] = ACTIONS(3256), + [anon_sym_else] = ACTIONS(3260), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_asyncfor] = ACTIONS(3229), + [anon_sym_transform] = ACTIONS(3231), + [anon_sym_filter] = ACTIONS(3231), + [anon_sym_find] = ACTIONS(3231), + [anon_sym_remove] = ACTIONS(3231), + [anon_sym_reduce] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_insert] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_table] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_assert_equal] = ACTIONS(3231), + [anon_sym_download] = ACTIONS(3231), + [anon_sym_help] = ACTIONS(3231), + [anon_sym_length] = ACTIONS(3231), + [anon_sym_output] = ACTIONS(3231), + [anon_sym_output_error] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_append] = ACTIONS(3231), + [anon_sym_metadata] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_read] = ACTIONS(3231), + [anon_sym_workdir] = ACTIONS(3231), + [anon_sym_write] = ACTIONS(3231), + [anon_sym_from_json] = ACTIONS(3231), + [anon_sym_to_json] = ACTIONS(3231), + [anon_sym_to_string] = ACTIONS(3231), + [anon_sym_to_float] = ACTIONS(3231), + [anon_sym_bash] = ACTIONS(3231), + [anon_sym_fish] = ACTIONS(3231), + [anon_sym_raw] = ACTIONS(3231), + [anon_sym_sh] = ACTIONS(3231), + [anon_sym_zsh] = ACTIONS(3231), + [anon_sym_random] = ACTIONS(3231), + [anon_sym_random_boolean] = ACTIONS(3231), + [anon_sym_random_float] = ACTIONS(3231), + [anon_sym_random_integer] = ACTIONS(3231), + [anon_sym_columns] = ACTIONS(3231), + [anon_sym_rows] = ACTIONS(3231), + [anon_sym_reverse] = ACTIONS(3231), + }, + [575] = { + [sym_math_operator] = STATE(1376), + [sym_logic_operator] = STATE(1377), + [ts_builtin_sym_end] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3264), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [sym_integer] = ACTIONS(3264), + [sym_float] = ACTIONS(3262), + [sym_string] = ACTIONS(3262), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_RBRACK] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_PLUS_EQ] = ACTIONS(3262), + [anon_sym_DASH_EQ] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_elseif] = ACTIONS(3262), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_match] = ACTIONS(3264), + [anon_sym_EQ_GT] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_asyncfor] = ACTIONS(3262), + [anon_sym_transform] = ACTIONS(3264), + [anon_sym_filter] = ACTIONS(3264), + [anon_sym_find] = ACTIONS(3264), + [anon_sym_remove] = ACTIONS(3264), + [anon_sym_reduce] = ACTIONS(3264), + [anon_sym_select] = ACTIONS(3264), + [anon_sym_insert] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_table] = ACTIONS(3264), + [anon_sym_assert] = ACTIONS(3264), + [anon_sym_assert_equal] = ACTIONS(3264), + [anon_sym_download] = ACTIONS(3264), + [anon_sym_help] = ACTIONS(3264), + [anon_sym_length] = ACTIONS(3264), + [anon_sym_output] = ACTIONS(3264), + [anon_sym_output_error] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_append] = ACTIONS(3264), + [anon_sym_metadata] = ACTIONS(3264), + [anon_sym_move] = ACTIONS(3264), + [anon_sym_read] = ACTIONS(3264), + [anon_sym_workdir] = ACTIONS(3264), + [anon_sym_write] = ACTIONS(3264), + [anon_sym_from_json] = ACTIONS(3264), + [anon_sym_to_json] = ACTIONS(3264), + [anon_sym_to_string] = ACTIONS(3264), + [anon_sym_to_float] = ACTIONS(3264), + [anon_sym_bash] = ACTIONS(3264), + [anon_sym_fish] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3264), + [anon_sym_sh] = ACTIONS(3264), + [anon_sym_zsh] = ACTIONS(3264), + [anon_sym_random] = ACTIONS(3264), + [anon_sym_random_boolean] = ACTIONS(3264), + [anon_sym_random_float] = ACTIONS(3264), + [anon_sym_random_integer] = ACTIONS(3264), + [anon_sym_columns] = ACTIONS(3264), + [anon_sym_rows] = ACTIONS(3264), + [anon_sym_reverse] = ACTIONS(3264), + }, + [576] = { + [sym_assignment_operator] = STATE(545), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_RBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_DOT_DOT] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_elseif] = ACTIONS(2435), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), + }, + [577] = { + [sym_else_if] = STATE(594), + [sym_else] = STATE(605), + [aux_sym_if_else_repeat1] = STATE(594), + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [sym_integer] = ACTIONS(3231), + [sym_float] = ACTIONS(3229), + [sym_string] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_EQ] = ACTIONS(3231), + [anon_sym_COLON] = ACTIONS(3229), + [anon_sym_DOT_DOT] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_PLUS_EQ] = ACTIONS(3229), + [anon_sym_DASH_EQ] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_elseif] = ACTIONS(3285), + [anon_sym_else] = ACTIONS(3287), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_asyncfor] = ACTIONS(3229), + [anon_sym_transform] = ACTIONS(3231), + [anon_sym_filter] = ACTIONS(3231), + [anon_sym_find] = ACTIONS(3231), + [anon_sym_remove] = ACTIONS(3231), + [anon_sym_reduce] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_insert] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_table] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_assert_equal] = ACTIONS(3231), + [anon_sym_download] = ACTIONS(3231), + [anon_sym_help] = ACTIONS(3231), + [anon_sym_length] = ACTIONS(3231), + [anon_sym_output] = ACTIONS(3231), + [anon_sym_output_error] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_append] = ACTIONS(3231), + [anon_sym_metadata] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_read] = ACTIONS(3231), + [anon_sym_workdir] = ACTIONS(3231), + [anon_sym_write] = ACTIONS(3231), + [anon_sym_from_json] = ACTIONS(3231), + [anon_sym_to_json] = ACTIONS(3231), + [anon_sym_to_string] = ACTIONS(3231), + [anon_sym_to_float] = ACTIONS(3231), + [anon_sym_bash] = ACTIONS(3231), + [anon_sym_fish] = ACTIONS(3231), + [anon_sym_raw] = ACTIONS(3231), + [anon_sym_sh] = ACTIONS(3231), + [anon_sym_zsh] = ACTIONS(3231), + [anon_sym_random] = ACTIONS(3231), + [anon_sym_random_boolean] = ACTIONS(3231), + [anon_sym_random_float] = ACTIONS(3231), + [anon_sym_random_integer] = ACTIONS(3231), + [anon_sym_columns] = ACTIONS(3231), + [anon_sym_rows] = ACTIONS(3231), + [anon_sym_reverse] = ACTIONS(3231), + }, + [578] = { + [sym_math_operator] = STATE(1376), + [sym_logic_operator] = STATE(1377), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3242), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [sym_integer] = ACTIONS(3242), + [sym_float] = ACTIONS(3240), + [sym_string] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_EQ] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_elseif] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_asyncfor] = ACTIONS(3240), + [anon_sym_transform] = ACTIONS(3242), + [anon_sym_filter] = ACTIONS(3242), + [anon_sym_find] = ACTIONS(3242), + [anon_sym_remove] = ACTIONS(3242), + [anon_sym_reduce] = ACTIONS(3242), + [anon_sym_select] = ACTIONS(3242), + [anon_sym_insert] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_table] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_assert_equal] = ACTIONS(3242), + [anon_sym_download] = ACTIONS(3242), + [anon_sym_help] = ACTIONS(3242), + [anon_sym_length] = ACTIONS(3242), + [anon_sym_output] = ACTIONS(3242), + [anon_sym_output_error] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_append] = ACTIONS(3242), + [anon_sym_metadata] = ACTIONS(3242), + [anon_sym_move] = ACTIONS(3242), + [anon_sym_read] = ACTIONS(3242), + [anon_sym_workdir] = ACTIONS(3242), + [anon_sym_write] = ACTIONS(3242), + [anon_sym_from_json] = ACTIONS(3242), + [anon_sym_to_json] = ACTIONS(3242), + [anon_sym_to_string] = ACTIONS(3242), + [anon_sym_to_float] = ACTIONS(3242), + [anon_sym_bash] = ACTIONS(3242), + [anon_sym_fish] = ACTIONS(3242), + [anon_sym_raw] = ACTIONS(3242), + [anon_sym_sh] = ACTIONS(3242), + [anon_sym_zsh] = ACTIONS(3242), + [anon_sym_random] = ACTIONS(3242), + [anon_sym_random_boolean] = ACTIONS(3242), + [anon_sym_random_float] = ACTIONS(3242), + [anon_sym_random_integer] = ACTIONS(3242), + [anon_sym_columns] = ACTIONS(3242), + [anon_sym_rows] = ACTIONS(3242), + [anon_sym_reverse] = ACTIONS(3242), + }, + [579] = { + [sym_math_operator] = STATE(1376), + [sym_logic_operator] = STATE(1377), + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3283), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_RPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3281), + [sym_integer] = ACTIONS(3283), + [sym_float] = ACTIONS(3281), + [sym_string] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_RBRACK] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3281), + [anon_sym_DASH_EQ] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_elseif] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_EQ_GT] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_asyncfor] = ACTIONS(3281), + [anon_sym_transform] = ACTIONS(3283), + [anon_sym_filter] = ACTIONS(3283), + [anon_sym_find] = ACTIONS(3283), + [anon_sym_remove] = ACTIONS(3283), + [anon_sym_reduce] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_insert] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_table] = ACTIONS(3283), + [anon_sym_assert] = ACTIONS(3283), + [anon_sym_assert_equal] = ACTIONS(3283), + [anon_sym_download] = ACTIONS(3283), + [anon_sym_help] = ACTIONS(3283), + [anon_sym_length] = ACTIONS(3283), + [anon_sym_output] = ACTIONS(3283), + [anon_sym_output_error] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_append] = ACTIONS(3283), + [anon_sym_metadata] = ACTIONS(3283), + [anon_sym_move] = ACTIONS(3283), + [anon_sym_read] = ACTIONS(3283), + [anon_sym_workdir] = ACTIONS(3283), + [anon_sym_write] = ACTIONS(3283), + [anon_sym_from_json] = ACTIONS(3283), + [anon_sym_to_json] = ACTIONS(3283), + [anon_sym_to_string] = ACTIONS(3283), + [anon_sym_to_float] = ACTIONS(3283), + [anon_sym_bash] = ACTIONS(3283), + [anon_sym_fish] = ACTIONS(3283), + [anon_sym_raw] = ACTIONS(3283), + [anon_sym_sh] = ACTIONS(3283), + [anon_sym_zsh] = ACTIONS(3283), + [anon_sym_random] = ACTIONS(3283), + [anon_sym_random_boolean] = ACTIONS(3283), + [anon_sym_random_float] = ACTIONS(3283), + [anon_sym_random_integer] = ACTIONS(3283), + [anon_sym_columns] = ACTIONS(3283), + [anon_sym_rows] = ACTIONS(3283), + [anon_sym_reverse] = ACTIONS(3283), + }, + [580] = { + [sym_else_if] = STATE(580), + [aux_sym_if_else_repeat1] = STATE(580), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_RPAREN] = ACTIONS(3268), + [anon_sym_COMMA] = ACTIONS(3268), + [sym_integer] = ACTIONS(3270), + [sym_float] = ACTIONS(3268), + [sym_string] = ACTIONS(3268), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_RBRACK] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_PIPE_PIPE] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT_EQ] = ACTIONS(3268), + [anon_sym_LT_EQ] = ACTIONS(3268), + [anon_sym_PLUS_EQ] = ACTIONS(3268), + [anon_sym_DASH_EQ] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_elseif] = ACTIONS(3289), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_match] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_asyncfor] = ACTIONS(3268), + [anon_sym_transform] = ACTIONS(3270), + [anon_sym_filter] = ACTIONS(3270), + [anon_sym_find] = ACTIONS(3270), + [anon_sym_remove] = ACTIONS(3270), + [anon_sym_reduce] = ACTIONS(3270), + [anon_sym_select] = ACTIONS(3270), + [anon_sym_insert] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3270), + [anon_sym_table] = ACTIONS(3270), + [anon_sym_assert] = ACTIONS(3270), + [anon_sym_assert_equal] = ACTIONS(3270), + [anon_sym_download] = ACTIONS(3270), + [anon_sym_help] = ACTIONS(3270), + [anon_sym_length] = ACTIONS(3270), + [anon_sym_output] = ACTIONS(3270), + [anon_sym_output_error] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_append] = ACTIONS(3270), + [anon_sym_metadata] = ACTIONS(3270), + [anon_sym_move] = ACTIONS(3270), + [anon_sym_read] = ACTIONS(3270), + [anon_sym_workdir] = ACTIONS(3270), + [anon_sym_write] = ACTIONS(3270), + [anon_sym_from_json] = ACTIONS(3270), + [anon_sym_to_json] = ACTIONS(3270), + [anon_sym_to_string] = ACTIONS(3270), + [anon_sym_to_float] = ACTIONS(3270), + [anon_sym_bash] = ACTIONS(3270), + [anon_sym_fish] = ACTIONS(3270), + [anon_sym_raw] = ACTIONS(3270), + [anon_sym_sh] = ACTIONS(3270), + [anon_sym_zsh] = ACTIONS(3270), + [anon_sym_random] = ACTIONS(3270), + [anon_sym_random_boolean] = ACTIONS(3270), + [anon_sym_random_float] = ACTIONS(3270), + [anon_sym_random_integer] = ACTIONS(3270), + [anon_sym_columns] = ACTIONS(3270), + [anon_sym_rows] = ACTIONS(3270), + [anon_sym_reverse] = ACTIONS(3270), + }, + [581] = { + [sym_else_if] = STATE(594), + [sym_else] = STATE(725), + [aux_sym_if_else_repeat1] = STATE(594), + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [sym_integer] = ACTIONS(3231), + [sym_float] = ACTIONS(3229), + [sym_string] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_EQ] = ACTIONS(3231), + [anon_sym_COLON] = ACTIONS(3229), + [anon_sym_DOT_DOT] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_PLUS_EQ] = ACTIONS(3229), + [anon_sym_DASH_EQ] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_elseif] = ACTIONS(3285), + [anon_sym_else] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_asyncfor] = ACTIONS(3229), + [anon_sym_transform] = ACTIONS(3231), + [anon_sym_filter] = ACTIONS(3231), + [anon_sym_find] = ACTIONS(3231), + [anon_sym_remove] = ACTIONS(3231), + [anon_sym_reduce] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_insert] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_table] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_assert_equal] = ACTIONS(3231), + [anon_sym_download] = ACTIONS(3231), + [anon_sym_help] = ACTIONS(3231), + [anon_sym_length] = ACTIONS(3231), + [anon_sym_output] = ACTIONS(3231), + [anon_sym_output_error] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_append] = ACTIONS(3231), + [anon_sym_metadata] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_read] = ACTIONS(3231), + [anon_sym_workdir] = ACTIONS(3231), + [anon_sym_write] = ACTIONS(3231), + [anon_sym_from_json] = ACTIONS(3231), + [anon_sym_to_json] = ACTIONS(3231), + [anon_sym_to_string] = ACTIONS(3231), + [anon_sym_to_float] = ACTIONS(3231), + [anon_sym_bash] = ACTIONS(3231), + [anon_sym_fish] = ACTIONS(3231), + [anon_sym_raw] = ACTIONS(3231), + [anon_sym_sh] = ACTIONS(3231), + [anon_sym_zsh] = ACTIONS(3231), + [anon_sym_random] = ACTIONS(3231), + [anon_sym_random_boolean] = ACTIONS(3231), + [anon_sym_random_float] = ACTIONS(3231), + [anon_sym_random_integer] = ACTIONS(3231), + [anon_sym_columns] = ACTIONS(3231), + [anon_sym_rows] = ACTIONS(3231), + [anon_sym_reverse] = ACTIONS(3231), + }, + [582] = { + [sym_else_if] = STATE(581), + [sym_else] = STATE(711), + [aux_sym_if_else_repeat1] = STATE(581), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_RPAREN] = ACTIONS(3219), + [sym_integer] = ACTIONS(3221), + [sym_float] = ACTIONS(3219), + [sym_string] = ACTIONS(3219), + [anon_sym_true] = ACTIONS(3221), + [anon_sym_false] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_EQ] = ACTIONS(3221), + [anon_sym_COLON] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_PLUS_EQ] = ACTIONS(3219), + [anon_sym_DASH_EQ] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_elseif] = ACTIONS(3285), + [anon_sym_else] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_EQ_GT] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_asyncfor] = ACTIONS(3219), + [anon_sym_transform] = ACTIONS(3221), + [anon_sym_filter] = ACTIONS(3221), + [anon_sym_find] = ACTIONS(3221), + [anon_sym_remove] = ACTIONS(3221), + [anon_sym_reduce] = ACTIONS(3221), + [anon_sym_select] = ACTIONS(3221), + [anon_sym_insert] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_table] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_assert_equal] = ACTIONS(3221), + [anon_sym_download] = ACTIONS(3221), + [anon_sym_help] = ACTIONS(3221), + [anon_sym_length] = ACTIONS(3221), + [anon_sym_output] = ACTIONS(3221), + [anon_sym_output_error] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_append] = ACTIONS(3221), + [anon_sym_metadata] = ACTIONS(3221), + [anon_sym_move] = ACTIONS(3221), + [anon_sym_read] = ACTIONS(3221), + [anon_sym_workdir] = ACTIONS(3221), + [anon_sym_write] = ACTIONS(3221), + [anon_sym_from_json] = ACTIONS(3221), + [anon_sym_to_json] = ACTIONS(3221), + [anon_sym_to_string] = ACTIONS(3221), + [anon_sym_to_float] = ACTIONS(3221), + [anon_sym_bash] = ACTIONS(3221), + [anon_sym_fish] = ACTIONS(3221), + [anon_sym_raw] = ACTIONS(3221), + [anon_sym_sh] = ACTIONS(3221), + [anon_sym_zsh] = ACTIONS(3221), + [anon_sym_random] = ACTIONS(3221), + [anon_sym_random_boolean] = ACTIONS(3221), + [anon_sym_random_float] = ACTIONS(3221), + [anon_sym_random_integer] = ACTIONS(3221), + [anon_sym_columns] = ACTIONS(3221), + [anon_sym_rows] = ACTIONS(3221), + [anon_sym_reverse] = ACTIONS(3221), + }, + [583] = { + [sym_math_operator] = STATE(1376), + [sym_logic_operator] = STATE(1377), + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_RBRACK] = ACTIONS(3275), + [anon_sym_EQ] = ACTIONS(3277), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3275), + [anon_sym_DASH_EQ] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_elseif] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [584] = { + [sym_else_if] = STATE(577), + [sym_else] = STATE(595), + [aux_sym_if_else_repeat1] = STATE(577), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_RPAREN] = ACTIONS(3219), + [sym_integer] = ACTIONS(3221), + [sym_float] = ACTIONS(3219), + [sym_string] = ACTIONS(3219), + [anon_sym_true] = ACTIONS(3221), + [anon_sym_false] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_EQ] = ACTIONS(3221), + [anon_sym_COLON] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_PLUS_EQ] = ACTIONS(3219), + [anon_sym_DASH_EQ] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_elseif] = ACTIONS(3285), + [anon_sym_else] = ACTIONS(3287), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_EQ_GT] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_asyncfor] = ACTIONS(3219), + [anon_sym_transform] = ACTIONS(3221), + [anon_sym_filter] = ACTIONS(3221), + [anon_sym_find] = ACTIONS(3221), + [anon_sym_remove] = ACTIONS(3221), + [anon_sym_reduce] = ACTIONS(3221), + [anon_sym_select] = ACTIONS(3221), + [anon_sym_insert] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_table] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_assert_equal] = ACTIONS(3221), + [anon_sym_download] = ACTIONS(3221), + [anon_sym_help] = ACTIONS(3221), + [anon_sym_length] = ACTIONS(3221), + [anon_sym_output] = ACTIONS(3221), + [anon_sym_output_error] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_append] = ACTIONS(3221), + [anon_sym_metadata] = ACTIONS(3221), + [anon_sym_move] = ACTIONS(3221), + [anon_sym_read] = ACTIONS(3221), + [anon_sym_workdir] = ACTIONS(3221), + [anon_sym_write] = ACTIONS(3221), + [anon_sym_from_json] = ACTIONS(3221), + [anon_sym_to_json] = ACTIONS(3221), + [anon_sym_to_string] = ACTIONS(3221), + [anon_sym_to_float] = ACTIONS(3221), + [anon_sym_bash] = ACTIONS(3221), + [anon_sym_fish] = ACTIONS(3221), + [anon_sym_raw] = ACTIONS(3221), + [anon_sym_sh] = ACTIONS(3221), + [anon_sym_zsh] = ACTIONS(3221), + [anon_sym_random] = ACTIONS(3221), + [anon_sym_random_boolean] = ACTIONS(3221), + [anon_sym_random_float] = ACTIONS(3221), + [anon_sym_random_integer] = ACTIONS(3221), + [anon_sym_columns] = ACTIONS(3221), + [anon_sym_rows] = ACTIONS(3221), + [anon_sym_reverse] = ACTIONS(3221), + }, + [585] = { + [sym_math_operator] = STATE(1376), + [sym_logic_operator] = STATE(1377), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_RPAREN] = ACTIONS(3244), + [anon_sym_COMMA] = ACTIONS(3244), + [sym_integer] = ACTIONS(3246), + [sym_float] = ACTIONS(3244), + [sym_string] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_RBRACK] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3246), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3244), + [anon_sym_DASH_EQ] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_elseif] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_asyncfor] = ACTIONS(3244), + [anon_sym_transform] = ACTIONS(3246), + [anon_sym_filter] = ACTIONS(3246), + [anon_sym_find] = ACTIONS(3246), + [anon_sym_remove] = ACTIONS(3246), + [anon_sym_reduce] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_insert] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_table] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_assert_equal] = ACTIONS(3246), + [anon_sym_download] = ACTIONS(3246), + [anon_sym_help] = ACTIONS(3246), + [anon_sym_length] = ACTIONS(3246), + [anon_sym_output] = ACTIONS(3246), + [anon_sym_output_error] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_append] = ACTIONS(3246), + [anon_sym_metadata] = ACTIONS(3246), + [anon_sym_move] = ACTIONS(3246), + [anon_sym_read] = ACTIONS(3246), + [anon_sym_workdir] = ACTIONS(3246), + [anon_sym_write] = ACTIONS(3246), + [anon_sym_from_json] = ACTIONS(3246), + [anon_sym_to_json] = ACTIONS(3246), + [anon_sym_to_string] = ACTIONS(3246), + [anon_sym_to_float] = ACTIONS(3246), + [anon_sym_bash] = ACTIONS(3246), + [anon_sym_fish] = ACTIONS(3246), + [anon_sym_raw] = ACTIONS(3246), + [anon_sym_sh] = ACTIONS(3246), + [anon_sym_zsh] = ACTIONS(3246), + [anon_sym_random] = ACTIONS(3246), + [anon_sym_random_boolean] = ACTIONS(3246), + [anon_sym_random_float] = ACTIONS(3246), + [anon_sym_random_integer] = ACTIONS(3246), + [anon_sym_columns] = ACTIONS(3246), + [anon_sym_rows] = ACTIONS(3246), + [anon_sym_reverse] = ACTIONS(3246), + }, + [586] = { + [sym_math_operator] = STATE(1376), + [sym_logic_operator] = STATE(1377), + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3254), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3252), + [anon_sym_COMMA] = ACTIONS(3252), + [sym_integer] = ACTIONS(3254), + [sym_float] = ACTIONS(3252), + [sym_string] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_RBRACK] = ACTIONS(3252), + [anon_sym_EQ] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_PLUS_EQ] = ACTIONS(3252), + [anon_sym_DASH_EQ] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_elseif] = ACTIONS(3252), + [anon_sym_else] = ACTIONS(3254), + [anon_sym_match] = ACTIONS(3254), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_asyncfor] = ACTIONS(3252), + [anon_sym_transform] = ACTIONS(3254), + [anon_sym_filter] = ACTIONS(3254), + [anon_sym_find] = ACTIONS(3254), + [anon_sym_remove] = ACTIONS(3254), + [anon_sym_reduce] = ACTIONS(3254), + [anon_sym_select] = ACTIONS(3254), + [anon_sym_insert] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_table] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_assert_equal] = ACTIONS(3254), + [anon_sym_download] = ACTIONS(3254), + [anon_sym_help] = ACTIONS(3254), + [anon_sym_length] = ACTIONS(3254), + [anon_sym_output] = ACTIONS(3254), + [anon_sym_output_error] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_append] = ACTIONS(3254), + [anon_sym_metadata] = ACTIONS(3254), + [anon_sym_move] = ACTIONS(3254), + [anon_sym_read] = ACTIONS(3254), + [anon_sym_workdir] = ACTIONS(3254), + [anon_sym_write] = ACTIONS(3254), + [anon_sym_from_json] = ACTIONS(3254), + [anon_sym_to_json] = ACTIONS(3254), + [anon_sym_to_string] = ACTIONS(3254), + [anon_sym_to_float] = ACTIONS(3254), + [anon_sym_bash] = ACTIONS(3254), + [anon_sym_fish] = ACTIONS(3254), + [anon_sym_raw] = ACTIONS(3254), + [anon_sym_sh] = ACTIONS(3254), + [anon_sym_zsh] = ACTIONS(3254), + [anon_sym_random] = ACTIONS(3254), + [anon_sym_random_boolean] = ACTIONS(3254), + [anon_sym_random_float] = ACTIONS(3254), + [anon_sym_random_integer] = ACTIONS(3254), + [anon_sym_columns] = ACTIONS(3254), + [anon_sym_rows] = ACTIONS(3254), + [anon_sym_reverse] = ACTIONS(3254), + }, + [587] = { + [sym_math_operator] = STATE(1376), + [sym_logic_operator] = STATE(1377), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3235), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3237), + [sym_integer] = ACTIONS(3235), + [sym_float] = ACTIONS(3233), + [sym_string] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_RBRACK] = ACTIONS(3233), + [anon_sym_EQ] = ACTIONS(3235), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3233), + [anon_sym_DASH_EQ] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_elseif] = ACTIONS(3233), + [anon_sym_else] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_asyncfor] = ACTIONS(3233), + [anon_sym_transform] = ACTIONS(3235), + [anon_sym_filter] = ACTIONS(3235), + [anon_sym_find] = ACTIONS(3235), + [anon_sym_remove] = ACTIONS(3235), + [anon_sym_reduce] = ACTIONS(3235), + [anon_sym_select] = ACTIONS(3235), + [anon_sym_insert] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_table] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_assert_equal] = ACTIONS(3235), + [anon_sym_download] = ACTIONS(3235), + [anon_sym_help] = ACTIONS(3235), + [anon_sym_length] = ACTIONS(3235), + [anon_sym_output] = ACTIONS(3235), + [anon_sym_output_error] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_append] = ACTIONS(3235), + [anon_sym_metadata] = ACTIONS(3235), + [anon_sym_move] = ACTIONS(3235), + [anon_sym_read] = ACTIONS(3235), + [anon_sym_workdir] = ACTIONS(3235), + [anon_sym_write] = ACTIONS(3235), + [anon_sym_from_json] = ACTIONS(3235), + [anon_sym_to_json] = ACTIONS(3235), + [anon_sym_to_string] = ACTIONS(3235), + [anon_sym_to_float] = ACTIONS(3235), + [anon_sym_bash] = ACTIONS(3235), + [anon_sym_fish] = ACTIONS(3235), + [anon_sym_raw] = ACTIONS(3235), + [anon_sym_sh] = ACTIONS(3235), + [anon_sym_zsh] = ACTIONS(3235), + [anon_sym_random] = ACTIONS(3235), + [anon_sym_random_boolean] = ACTIONS(3235), + [anon_sym_random_float] = ACTIONS(3235), + [anon_sym_random_integer] = ACTIONS(3235), + [anon_sym_columns] = ACTIONS(3235), + [anon_sym_rows] = ACTIONS(3235), + [anon_sym_reverse] = ACTIONS(3235), + }, + [588] = { + [sym_math_operator] = STATE(1313), + [sym_logic_operator] = STATE(1312), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3235), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3294), + [sym_integer] = ACTIONS(3235), + [sym_float] = ACTIONS(3233), + [sym_string] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_EQ] = ACTIONS(3235), + [anon_sym_COLON] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3233), + [anon_sym_DASH_EQ] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_elseif] = ACTIONS(3233), + [anon_sym_else] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_asyncfor] = ACTIONS(3233), + [anon_sym_transform] = ACTIONS(3235), + [anon_sym_filter] = ACTIONS(3235), + [anon_sym_find] = ACTIONS(3235), + [anon_sym_remove] = ACTIONS(3235), + [anon_sym_reduce] = ACTIONS(3235), + [anon_sym_select] = ACTIONS(3235), + [anon_sym_insert] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_table] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_assert_equal] = ACTIONS(3235), + [anon_sym_download] = ACTIONS(3235), + [anon_sym_help] = ACTIONS(3235), + [anon_sym_length] = ACTIONS(3235), + [anon_sym_output] = ACTIONS(3235), + [anon_sym_output_error] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_append] = ACTIONS(3235), + [anon_sym_metadata] = ACTIONS(3235), + [anon_sym_move] = ACTIONS(3235), + [anon_sym_read] = ACTIONS(3235), + [anon_sym_workdir] = ACTIONS(3235), + [anon_sym_write] = ACTIONS(3235), + [anon_sym_from_json] = ACTIONS(3235), + [anon_sym_to_json] = ACTIONS(3235), + [anon_sym_to_string] = ACTIONS(3235), + [anon_sym_to_float] = ACTIONS(3235), + [anon_sym_bash] = ACTIONS(3235), + [anon_sym_fish] = ACTIONS(3235), + [anon_sym_raw] = ACTIONS(3235), + [anon_sym_sh] = ACTIONS(3235), + [anon_sym_zsh] = ACTIONS(3235), + [anon_sym_random] = ACTIONS(3235), + [anon_sym_random_boolean] = ACTIONS(3235), + [anon_sym_random_float] = ACTIONS(3235), + [anon_sym_random_integer] = ACTIONS(3235), + [anon_sym_columns] = ACTIONS(3235), + [anon_sym_rows] = ACTIONS(3235), + [anon_sym_reverse] = ACTIONS(3235), + }, + [589] = { + [ts_builtin_sym_end] = ACTIONS(3296), + [sym_identifier] = ACTIONS(3298), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3296), + [sym_integer] = ACTIONS(3298), + [sym_float] = ACTIONS(3296), + [sym_string] = ACTIONS(3296), + [anon_sym_true] = ACTIONS(3298), + [anon_sym_false] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3296), + [anon_sym_LT_EQ] = ACTIONS(3296), + [anon_sym_PLUS_EQ] = ACTIONS(3296), + [anon_sym_DASH_EQ] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_elseif] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3298), + [anon_sym_match] = ACTIONS(3298), + [anon_sym_EQ_GT] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_asyncfor] = ACTIONS(3296), + [anon_sym_transform] = ACTIONS(3298), + [anon_sym_filter] = ACTIONS(3298), + [anon_sym_find] = ACTIONS(3298), + [anon_sym_remove] = ACTIONS(3298), + [anon_sym_reduce] = ACTIONS(3298), + [anon_sym_select] = ACTIONS(3298), + [anon_sym_insert] = ACTIONS(3298), + [anon_sym_async] = ACTIONS(3298), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_table] = ACTIONS(3298), + [anon_sym_assert] = ACTIONS(3298), + [anon_sym_assert_equal] = ACTIONS(3298), + [anon_sym_download] = ACTIONS(3298), + [anon_sym_help] = ACTIONS(3298), + [anon_sym_length] = ACTIONS(3298), + [anon_sym_output] = ACTIONS(3298), + [anon_sym_output_error] = ACTIONS(3298), + [anon_sym_type] = ACTIONS(3298), + [anon_sym_append] = ACTIONS(3298), + [anon_sym_metadata] = ACTIONS(3298), + [anon_sym_move] = ACTIONS(3298), + [anon_sym_read] = ACTIONS(3298), + [anon_sym_workdir] = ACTIONS(3298), + [anon_sym_write] = ACTIONS(3298), + [anon_sym_from_json] = ACTIONS(3298), + [anon_sym_to_json] = ACTIONS(3298), + [anon_sym_to_string] = ACTIONS(3298), + [anon_sym_to_float] = ACTIONS(3298), + [anon_sym_bash] = ACTIONS(3298), + [anon_sym_fish] = ACTIONS(3298), + [anon_sym_raw] = ACTIONS(3298), + [anon_sym_sh] = ACTIONS(3298), + [anon_sym_zsh] = ACTIONS(3298), + [anon_sym_random] = ACTIONS(3298), + [anon_sym_random_boolean] = ACTIONS(3298), + [anon_sym_random_float] = ACTIONS(3298), + [anon_sym_random_integer] = ACTIONS(3298), + [anon_sym_columns] = ACTIONS(3298), + [anon_sym_rows] = ACTIONS(3298), + [anon_sym_reverse] = ACTIONS(3298), + }, + [590] = { + [sym_math_operator] = STATE(1316), + [sym_logic_operator] = STATE(1285), + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3254), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3252), + [anon_sym_COMMA] = ACTIONS(3252), + [sym_integer] = ACTIONS(3254), + [sym_float] = ACTIONS(3252), + [sym_string] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_RBRACK] = ACTIONS(3252), + [anon_sym_EQ] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_DOT_DOT] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_PLUS_EQ] = ACTIONS(3252), + [anon_sym_DASH_EQ] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_match] = ACTIONS(3254), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_asyncfor] = ACTIONS(3252), + [anon_sym_transform] = ACTIONS(3254), + [anon_sym_filter] = ACTIONS(3254), + [anon_sym_find] = ACTIONS(3254), + [anon_sym_remove] = ACTIONS(3254), + [anon_sym_reduce] = ACTIONS(3254), + [anon_sym_select] = ACTIONS(3254), + [anon_sym_insert] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_table] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_assert_equal] = ACTIONS(3254), + [anon_sym_download] = ACTIONS(3254), + [anon_sym_help] = ACTIONS(3254), + [anon_sym_length] = ACTIONS(3254), + [anon_sym_output] = ACTIONS(3254), + [anon_sym_output_error] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_append] = ACTIONS(3254), + [anon_sym_metadata] = ACTIONS(3254), + [anon_sym_move] = ACTIONS(3254), + [anon_sym_read] = ACTIONS(3254), + [anon_sym_workdir] = ACTIONS(3254), + [anon_sym_write] = ACTIONS(3254), + [anon_sym_from_json] = ACTIONS(3254), + [anon_sym_to_json] = ACTIONS(3254), + [anon_sym_to_string] = ACTIONS(3254), + [anon_sym_to_float] = ACTIONS(3254), + [anon_sym_bash] = ACTIONS(3254), + [anon_sym_fish] = ACTIONS(3254), + [anon_sym_raw] = ACTIONS(3254), + [anon_sym_sh] = ACTIONS(3254), + [anon_sym_zsh] = ACTIONS(3254), + [anon_sym_random] = ACTIONS(3254), + [anon_sym_random_boolean] = ACTIONS(3254), + [anon_sym_random_float] = ACTIONS(3254), + [anon_sym_random_integer] = ACTIONS(3254), + [anon_sym_columns] = ACTIONS(3254), + [anon_sym_rows] = ACTIONS(3254), + [anon_sym_reverse] = ACTIONS(3254), + }, + [591] = { + [sym_math_operator] = STATE(1376), + [sym_logic_operator] = STATE(1377), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3235), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3294), + [sym_integer] = ACTIONS(3235), + [sym_float] = ACTIONS(3233), + [sym_string] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_EQ] = ACTIONS(3235), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3233), + [anon_sym_DASH_EQ] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_elseif] = ACTIONS(3233), + [anon_sym_else] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_asyncfor] = ACTIONS(3233), + [anon_sym_transform] = ACTIONS(3235), + [anon_sym_filter] = ACTIONS(3235), + [anon_sym_find] = ACTIONS(3235), + [anon_sym_remove] = ACTIONS(3235), + [anon_sym_reduce] = ACTIONS(3235), + [anon_sym_select] = ACTIONS(3235), + [anon_sym_insert] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_table] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_assert_equal] = ACTIONS(3235), + [anon_sym_download] = ACTIONS(3235), + [anon_sym_help] = ACTIONS(3235), + [anon_sym_length] = ACTIONS(3235), + [anon_sym_output] = ACTIONS(3235), + [anon_sym_output_error] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_append] = ACTIONS(3235), + [anon_sym_metadata] = ACTIONS(3235), + [anon_sym_move] = ACTIONS(3235), + [anon_sym_read] = ACTIONS(3235), + [anon_sym_workdir] = ACTIONS(3235), + [anon_sym_write] = ACTIONS(3235), + [anon_sym_from_json] = ACTIONS(3235), + [anon_sym_to_json] = ACTIONS(3235), + [anon_sym_to_string] = ACTIONS(3235), + [anon_sym_to_float] = ACTIONS(3235), + [anon_sym_bash] = ACTIONS(3235), + [anon_sym_fish] = ACTIONS(3235), + [anon_sym_raw] = ACTIONS(3235), + [anon_sym_sh] = ACTIONS(3235), + [anon_sym_zsh] = ACTIONS(3235), + [anon_sym_random] = ACTIONS(3235), + [anon_sym_random_boolean] = ACTIONS(3235), + [anon_sym_random_float] = ACTIONS(3235), + [anon_sym_random_integer] = ACTIONS(3235), + [anon_sym_columns] = ACTIONS(3235), + [anon_sym_rows] = ACTIONS(3235), + [anon_sym_reverse] = ACTIONS(3235), + }, + [592] = { + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_RBRACK] = ACTIONS(3275), + [anon_sym_EQ] = ACTIONS(3277), + [anon_sym_COLON] = ACTIONS(3275), + [anon_sym_DOT_DOT] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_STAR] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_PERCENT] = ACTIONS(3275), + [anon_sym_EQ_EQ] = ACTIONS(3275), + [anon_sym_BANG_EQ] = ACTIONS(3275), + [anon_sym_AMP_AMP] = ACTIONS(3275), + [anon_sym_PIPE_PIPE] = ACTIONS(3275), + [anon_sym_GT] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_GT_EQ] = ACTIONS(3275), + [anon_sym_LT_EQ] = ACTIONS(3275), + [anon_sym_PLUS_EQ] = ACTIONS(3275), + [anon_sym_DASH_EQ] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_elseif] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [593] = { + [sym_math_operator] = STATE(1414), + [sym_logic_operator] = STATE(1413), + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_EQ] = ACTIONS(3277), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_DOT_DOT] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3275), + [anon_sym_DASH_EQ] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_elseif] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [594] = { + [sym_else_if] = STATE(594), + [aux_sym_if_else_repeat1] = STATE(594), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_RPAREN] = ACTIONS(3268), + [sym_integer] = ACTIONS(3270), + [sym_float] = ACTIONS(3268), + [sym_string] = ACTIONS(3268), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_PIPE_PIPE] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT_EQ] = ACTIONS(3268), + [anon_sym_LT_EQ] = ACTIONS(3268), + [anon_sym_PLUS_EQ] = ACTIONS(3268), + [anon_sym_DASH_EQ] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_elseif] = ACTIONS(3300), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_match] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_asyncfor] = ACTIONS(3268), + [anon_sym_transform] = ACTIONS(3270), + [anon_sym_filter] = ACTIONS(3270), + [anon_sym_find] = ACTIONS(3270), + [anon_sym_remove] = ACTIONS(3270), + [anon_sym_reduce] = ACTIONS(3270), + [anon_sym_select] = ACTIONS(3270), + [anon_sym_insert] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3270), + [anon_sym_table] = ACTIONS(3270), + [anon_sym_assert] = ACTIONS(3270), + [anon_sym_assert_equal] = ACTIONS(3270), + [anon_sym_download] = ACTIONS(3270), + [anon_sym_help] = ACTIONS(3270), + [anon_sym_length] = ACTIONS(3270), + [anon_sym_output] = ACTIONS(3270), + [anon_sym_output_error] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_append] = ACTIONS(3270), + [anon_sym_metadata] = ACTIONS(3270), + [anon_sym_move] = ACTIONS(3270), + [anon_sym_read] = ACTIONS(3270), + [anon_sym_workdir] = ACTIONS(3270), + [anon_sym_write] = ACTIONS(3270), + [anon_sym_from_json] = ACTIONS(3270), + [anon_sym_to_json] = ACTIONS(3270), + [anon_sym_to_string] = ACTIONS(3270), + [anon_sym_to_float] = ACTIONS(3270), + [anon_sym_bash] = ACTIONS(3270), + [anon_sym_fish] = ACTIONS(3270), + [anon_sym_raw] = ACTIONS(3270), + [anon_sym_sh] = ACTIONS(3270), + [anon_sym_zsh] = ACTIONS(3270), + [anon_sym_random] = ACTIONS(3270), + [anon_sym_random_boolean] = ACTIONS(3270), + [anon_sym_random_float] = ACTIONS(3270), + [anon_sym_random_integer] = ACTIONS(3270), + [anon_sym_columns] = ACTIONS(3270), + [anon_sym_rows] = ACTIONS(3270), + [anon_sym_reverse] = ACTIONS(3270), + }, + [595] = { + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [anon_sym_COMMA] = ACTIONS(3229), + [sym_integer] = ACTIONS(3231), + [sym_float] = ACTIONS(3229), + [sym_string] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_RBRACK] = ACTIONS(3229), + [anon_sym_EQ] = ACTIONS(3231), + [anon_sym_COLON] = ACTIONS(3229), + [anon_sym_DOT_DOT] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_PLUS_EQ] = ACTIONS(3229), + [anon_sym_DASH_EQ] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_elseif] = ACTIONS(3229), + [anon_sym_else] = ACTIONS(3231), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_asyncfor] = ACTIONS(3229), + [anon_sym_transform] = ACTIONS(3231), + [anon_sym_filter] = ACTIONS(3231), + [anon_sym_find] = ACTIONS(3231), + [anon_sym_remove] = ACTIONS(3231), + [anon_sym_reduce] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_insert] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_table] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_assert_equal] = ACTIONS(3231), + [anon_sym_download] = ACTIONS(3231), + [anon_sym_help] = ACTIONS(3231), + [anon_sym_length] = ACTIONS(3231), + [anon_sym_output] = ACTIONS(3231), + [anon_sym_output_error] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_append] = ACTIONS(3231), + [anon_sym_metadata] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_read] = ACTIONS(3231), + [anon_sym_workdir] = ACTIONS(3231), + [anon_sym_write] = ACTIONS(3231), + [anon_sym_from_json] = ACTIONS(3231), + [anon_sym_to_json] = ACTIONS(3231), + [anon_sym_to_string] = ACTIONS(3231), + [anon_sym_to_float] = ACTIONS(3231), + [anon_sym_bash] = ACTIONS(3231), + [anon_sym_fish] = ACTIONS(3231), + [anon_sym_raw] = ACTIONS(3231), + [anon_sym_sh] = ACTIONS(3231), + [anon_sym_zsh] = ACTIONS(3231), + [anon_sym_random] = ACTIONS(3231), + [anon_sym_random_boolean] = ACTIONS(3231), + [anon_sym_random_float] = ACTIONS(3231), + [anon_sym_random_integer] = ACTIONS(3231), + [anon_sym_columns] = ACTIONS(3231), + [anon_sym_rows] = ACTIONS(3231), + [anon_sym_reverse] = ACTIONS(3231), + }, + [596] = { + [ts_builtin_sym_end] = ACTIONS(3303), + [sym_identifier] = ACTIONS(3305), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_RPAREN] = ACTIONS(3303), + [anon_sym_COMMA] = ACTIONS(3303), + [sym_integer] = ACTIONS(3305), + [sym_float] = ACTIONS(3303), + [sym_string] = ACTIONS(3303), + [anon_sym_true] = ACTIONS(3305), + [anon_sym_false] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_RBRACK] = ACTIONS(3303), + [anon_sym_EQ] = ACTIONS(3305), + [anon_sym_COLON] = ACTIONS(3303), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3303), + [anon_sym_SLASH] = ACTIONS(3303), + [anon_sym_PERCENT] = ACTIONS(3303), + [anon_sym_EQ_EQ] = ACTIONS(3303), + [anon_sym_BANG_EQ] = ACTIONS(3303), + [anon_sym_AMP_AMP] = ACTIONS(3303), + [anon_sym_PIPE_PIPE] = ACTIONS(3303), + [anon_sym_GT] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_GT_EQ] = ACTIONS(3303), + [anon_sym_LT_EQ] = ACTIONS(3303), + [anon_sym_PLUS_EQ] = ACTIONS(3303), + [anon_sym_DASH_EQ] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_elseif] = ACTIONS(3303), + [anon_sym_else] = ACTIONS(3305), + [anon_sym_match] = ACTIONS(3305), + [anon_sym_EQ_GT] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_asyncfor] = ACTIONS(3303), + [anon_sym_transform] = ACTIONS(3305), + [anon_sym_filter] = ACTIONS(3305), + [anon_sym_find] = ACTIONS(3305), + [anon_sym_remove] = ACTIONS(3305), + [anon_sym_reduce] = ACTIONS(3305), + [anon_sym_select] = ACTIONS(3305), + [anon_sym_insert] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_PIPE] = ACTIONS(3305), + [anon_sym_table] = ACTIONS(3305), + [anon_sym_assert] = ACTIONS(3305), + [anon_sym_assert_equal] = ACTIONS(3305), + [anon_sym_download] = ACTIONS(3305), + [anon_sym_help] = ACTIONS(3305), + [anon_sym_length] = ACTIONS(3305), + [anon_sym_output] = ACTIONS(3305), + [anon_sym_output_error] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_append] = ACTIONS(3305), + [anon_sym_metadata] = ACTIONS(3305), + [anon_sym_move] = ACTIONS(3305), + [anon_sym_read] = ACTIONS(3305), + [anon_sym_workdir] = ACTIONS(3305), + [anon_sym_write] = ACTIONS(3305), + [anon_sym_from_json] = ACTIONS(3305), + [anon_sym_to_json] = ACTIONS(3305), + [anon_sym_to_string] = ACTIONS(3305), + [anon_sym_to_float] = ACTIONS(3305), + [anon_sym_bash] = ACTIONS(3305), + [anon_sym_fish] = ACTIONS(3305), + [anon_sym_raw] = ACTIONS(3305), + [anon_sym_sh] = ACTIONS(3305), + [anon_sym_zsh] = ACTIONS(3305), + [anon_sym_random] = ACTIONS(3305), + [anon_sym_random_boolean] = ACTIONS(3305), + [anon_sym_random_float] = ACTIONS(3305), + [anon_sym_random_integer] = ACTIONS(3305), + [anon_sym_columns] = ACTIONS(3305), + [anon_sym_rows] = ACTIONS(3305), + [anon_sym_reverse] = ACTIONS(3305), + }, + [597] = { + [sym_math_operator] = STATE(1316), + [sym_logic_operator] = STATE(1285), + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3283), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_RPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3281), + [sym_integer] = ACTIONS(3283), + [sym_float] = ACTIONS(3281), + [sym_string] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_RBRACK] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3281), + [anon_sym_DASH_EQ] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_EQ_GT] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_asyncfor] = ACTIONS(3281), + [anon_sym_transform] = ACTIONS(3283), + [anon_sym_filter] = ACTIONS(3283), + [anon_sym_find] = ACTIONS(3283), + [anon_sym_remove] = ACTIONS(3283), + [anon_sym_reduce] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_insert] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_table] = ACTIONS(3283), + [anon_sym_assert] = ACTIONS(3283), + [anon_sym_assert_equal] = ACTIONS(3283), + [anon_sym_download] = ACTIONS(3283), + [anon_sym_help] = ACTIONS(3283), + [anon_sym_length] = ACTIONS(3283), + [anon_sym_output] = ACTIONS(3283), + [anon_sym_output_error] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_append] = ACTIONS(3283), + [anon_sym_metadata] = ACTIONS(3283), + [anon_sym_move] = ACTIONS(3283), + [anon_sym_read] = ACTIONS(3283), + [anon_sym_workdir] = ACTIONS(3283), + [anon_sym_write] = ACTIONS(3283), + [anon_sym_from_json] = ACTIONS(3283), + [anon_sym_to_json] = ACTIONS(3283), + [anon_sym_to_string] = ACTIONS(3283), + [anon_sym_to_float] = ACTIONS(3283), + [anon_sym_bash] = ACTIONS(3283), + [anon_sym_fish] = ACTIONS(3283), + [anon_sym_raw] = ACTIONS(3283), + [anon_sym_sh] = ACTIONS(3283), + [anon_sym_zsh] = ACTIONS(3283), + [anon_sym_random] = ACTIONS(3283), + [anon_sym_random_boolean] = ACTIONS(3283), + [anon_sym_random_float] = ACTIONS(3283), + [anon_sym_random_integer] = ACTIONS(3283), + [anon_sym_columns] = ACTIONS(3283), + [anon_sym_rows] = ACTIONS(3283), + [anon_sym_reverse] = ACTIONS(3283), + }, + [598] = { + [ts_builtin_sym_end] = ACTIONS(3307), + [sym_identifier] = ACTIONS(3309), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3307), + [anon_sym_RBRACE] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_RPAREN] = ACTIONS(3307), + [anon_sym_COMMA] = ACTIONS(3307), + [sym_integer] = ACTIONS(3309), + [sym_float] = ACTIONS(3307), + [sym_string] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(3309), + [anon_sym_false] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3307), + [anon_sym_RBRACK] = ACTIONS(3307), + [anon_sym_EQ] = ACTIONS(3309), + [anon_sym_COLON] = ACTIONS(3307), + [anon_sym_DOT_DOT] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3307), + [anon_sym_SLASH] = ACTIONS(3307), + [anon_sym_PERCENT] = ACTIONS(3307), + [anon_sym_EQ_EQ] = ACTIONS(3307), + [anon_sym_BANG_EQ] = ACTIONS(3307), + [anon_sym_AMP_AMP] = ACTIONS(3307), + [anon_sym_PIPE_PIPE] = ACTIONS(3307), + [anon_sym_GT] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_GT_EQ] = ACTIONS(3307), + [anon_sym_LT_EQ] = ACTIONS(3307), + [anon_sym_PLUS_EQ] = ACTIONS(3307), + [anon_sym_DASH_EQ] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_elseif] = ACTIONS(3307), + [anon_sym_else] = ACTIONS(3309), + [anon_sym_match] = ACTIONS(3309), + [anon_sym_EQ_GT] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_asyncfor] = ACTIONS(3307), + [anon_sym_transform] = ACTIONS(3309), + [anon_sym_filter] = ACTIONS(3309), + [anon_sym_find] = ACTIONS(3309), + [anon_sym_remove] = ACTIONS(3309), + [anon_sym_reduce] = ACTIONS(3309), + [anon_sym_select] = ACTIONS(3309), + [anon_sym_insert] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_table] = ACTIONS(3309), + [anon_sym_assert] = ACTIONS(3309), + [anon_sym_assert_equal] = ACTIONS(3309), + [anon_sym_download] = ACTIONS(3309), + [anon_sym_help] = ACTIONS(3309), + [anon_sym_length] = ACTIONS(3309), + [anon_sym_output] = ACTIONS(3309), + [anon_sym_output_error] = ACTIONS(3309), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_append] = ACTIONS(3309), + [anon_sym_metadata] = ACTIONS(3309), + [anon_sym_move] = ACTIONS(3309), + [anon_sym_read] = ACTIONS(3309), + [anon_sym_workdir] = ACTIONS(3309), + [anon_sym_write] = ACTIONS(3309), + [anon_sym_from_json] = ACTIONS(3309), + [anon_sym_to_json] = ACTIONS(3309), + [anon_sym_to_string] = ACTIONS(3309), + [anon_sym_to_float] = ACTIONS(3309), + [anon_sym_bash] = ACTIONS(3309), + [anon_sym_fish] = ACTIONS(3309), + [anon_sym_raw] = ACTIONS(3309), + [anon_sym_sh] = ACTIONS(3309), + [anon_sym_zsh] = ACTIONS(3309), + [anon_sym_random] = ACTIONS(3309), + [anon_sym_random_boolean] = ACTIONS(3309), + [anon_sym_random_float] = ACTIONS(3309), + [anon_sym_random_integer] = ACTIONS(3309), + [anon_sym_columns] = ACTIONS(3309), + [anon_sym_rows] = ACTIONS(3309), + [anon_sym_reverse] = ACTIONS(3309), + }, + [599] = { + [sym_math_operator] = STATE(1414), + [sym_logic_operator] = STATE(1413), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_RPAREN] = ACTIONS(3244), + [sym_integer] = ACTIONS(3246), + [sym_float] = ACTIONS(3244), + [sym_string] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3246), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_DOT_DOT] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3244), + [anon_sym_DASH_EQ] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_elseif] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_asyncfor] = ACTIONS(3244), + [anon_sym_transform] = ACTIONS(3246), + [anon_sym_filter] = ACTIONS(3246), + [anon_sym_find] = ACTIONS(3246), + [anon_sym_remove] = ACTIONS(3246), + [anon_sym_reduce] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_insert] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_table] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_assert_equal] = ACTIONS(3246), + [anon_sym_download] = ACTIONS(3246), + [anon_sym_help] = ACTIONS(3246), + [anon_sym_length] = ACTIONS(3246), + [anon_sym_output] = ACTIONS(3246), + [anon_sym_output_error] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_append] = ACTIONS(3246), + [anon_sym_metadata] = ACTIONS(3246), + [anon_sym_move] = ACTIONS(3246), + [anon_sym_read] = ACTIONS(3246), + [anon_sym_workdir] = ACTIONS(3246), + [anon_sym_write] = ACTIONS(3246), + [anon_sym_from_json] = ACTIONS(3246), + [anon_sym_to_json] = ACTIONS(3246), + [anon_sym_to_string] = ACTIONS(3246), + [anon_sym_to_float] = ACTIONS(3246), + [anon_sym_bash] = ACTIONS(3246), + [anon_sym_fish] = ACTIONS(3246), + [anon_sym_raw] = ACTIONS(3246), + [anon_sym_sh] = ACTIONS(3246), + [anon_sym_zsh] = ACTIONS(3246), + [anon_sym_random] = ACTIONS(3246), + [anon_sym_random_boolean] = ACTIONS(3246), + [anon_sym_random_float] = ACTIONS(3246), + [anon_sym_random_integer] = ACTIONS(3246), + [anon_sym_columns] = ACTIONS(3246), + [anon_sym_rows] = ACTIONS(3246), + [anon_sym_reverse] = ACTIONS(3246), + }, + [600] = { + [sym_else_if] = STATE(656), + [sym_else] = STATE(605), + [aux_sym_if_else_repeat1] = STATE(656), + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [sym_integer] = ACTIONS(3231), + [sym_float] = ACTIONS(3229), + [sym_string] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_EQ] = ACTIONS(3231), + [anon_sym_COLON] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_PLUS_EQ] = ACTIONS(3229), + [anon_sym_DASH_EQ] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_elseif] = ACTIONS(3311), + [anon_sym_else] = ACTIONS(3313), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_asyncfor] = ACTIONS(3229), + [anon_sym_transform] = ACTIONS(3231), + [anon_sym_filter] = ACTIONS(3231), + [anon_sym_find] = ACTIONS(3231), + [anon_sym_remove] = ACTIONS(3231), + [anon_sym_reduce] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_insert] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_table] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_assert_equal] = ACTIONS(3231), + [anon_sym_download] = ACTIONS(3231), + [anon_sym_help] = ACTIONS(3231), + [anon_sym_length] = ACTIONS(3231), + [anon_sym_output] = ACTIONS(3231), + [anon_sym_output_error] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_append] = ACTIONS(3231), + [anon_sym_metadata] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_read] = ACTIONS(3231), + [anon_sym_workdir] = ACTIONS(3231), + [anon_sym_write] = ACTIONS(3231), + [anon_sym_from_json] = ACTIONS(3231), + [anon_sym_to_json] = ACTIONS(3231), + [anon_sym_to_string] = ACTIONS(3231), + [anon_sym_to_float] = ACTIONS(3231), + [anon_sym_bash] = ACTIONS(3231), + [anon_sym_fish] = ACTIONS(3231), + [anon_sym_raw] = ACTIONS(3231), + [anon_sym_sh] = ACTIONS(3231), + [anon_sym_zsh] = ACTIONS(3231), + [anon_sym_random] = ACTIONS(3231), + [anon_sym_random_boolean] = ACTIONS(3231), + [anon_sym_random_float] = ACTIONS(3231), + [anon_sym_random_integer] = ACTIONS(3231), + [anon_sym_columns] = ACTIONS(3231), + [anon_sym_rows] = ACTIONS(3231), + [anon_sym_reverse] = ACTIONS(3231), + }, + [601] = { + [sym_math_operator] = STATE(1316), + [sym_logic_operator] = STATE(1285), + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_RBRACK] = ACTIONS(3275), + [anon_sym_EQ] = ACTIONS(3277), + [anon_sym_COLON] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3275), + [anon_sym_DASH_EQ] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [602] = { + [sym_math_operator] = STATE(1414), + [sym_logic_operator] = STATE(1413), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3242), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [sym_integer] = ACTIONS(3242), + [sym_float] = ACTIONS(3240), + [sym_string] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_EQ] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_elseif] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_asyncfor] = ACTIONS(3240), + [anon_sym_transform] = ACTIONS(3242), + [anon_sym_filter] = ACTIONS(3242), + [anon_sym_find] = ACTIONS(3242), + [anon_sym_remove] = ACTIONS(3242), + [anon_sym_reduce] = ACTIONS(3242), + [anon_sym_select] = ACTIONS(3242), + [anon_sym_insert] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_table] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_assert_equal] = ACTIONS(3242), + [anon_sym_download] = ACTIONS(3242), + [anon_sym_help] = ACTIONS(3242), + [anon_sym_length] = ACTIONS(3242), + [anon_sym_output] = ACTIONS(3242), + [anon_sym_output_error] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_append] = ACTIONS(3242), + [anon_sym_metadata] = ACTIONS(3242), + [anon_sym_move] = ACTIONS(3242), + [anon_sym_read] = ACTIONS(3242), + [anon_sym_workdir] = ACTIONS(3242), + [anon_sym_write] = ACTIONS(3242), + [anon_sym_from_json] = ACTIONS(3242), + [anon_sym_to_json] = ACTIONS(3242), + [anon_sym_to_string] = ACTIONS(3242), + [anon_sym_to_float] = ACTIONS(3242), + [anon_sym_bash] = ACTIONS(3242), + [anon_sym_fish] = ACTIONS(3242), + [anon_sym_raw] = ACTIONS(3242), + [anon_sym_sh] = ACTIONS(3242), + [anon_sym_zsh] = ACTIONS(3242), + [anon_sym_random] = ACTIONS(3242), + [anon_sym_random_boolean] = ACTIONS(3242), + [anon_sym_random_float] = ACTIONS(3242), + [anon_sym_random_integer] = ACTIONS(3242), + [anon_sym_columns] = ACTIONS(3242), + [anon_sym_rows] = ACTIONS(3242), + [anon_sym_reverse] = ACTIONS(3242), + }, + [603] = { + [ts_builtin_sym_end] = ACTIONS(3317), + [sym_identifier] = ACTIONS(3319), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_RPAREN] = ACTIONS(3317), + [anon_sym_COMMA] = ACTIONS(3317), + [sym_integer] = ACTIONS(3319), + [sym_float] = ACTIONS(3317), + [sym_string] = ACTIONS(3317), + [anon_sym_true] = ACTIONS(3319), + [anon_sym_false] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_RBRACK] = ACTIONS(3317), + [anon_sym_EQ] = ACTIONS(3319), + [anon_sym_COLON] = ACTIONS(3317), + [anon_sym_DOT_DOT] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_PERCENT] = ACTIONS(3317), + [anon_sym_EQ_EQ] = ACTIONS(3317), + [anon_sym_BANG_EQ] = ACTIONS(3317), + [anon_sym_AMP_AMP] = ACTIONS(3317), + [anon_sym_PIPE_PIPE] = ACTIONS(3317), + [anon_sym_GT] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3317), + [anon_sym_LT_EQ] = ACTIONS(3317), + [anon_sym_PLUS_EQ] = ACTIONS(3317), + [anon_sym_DASH_EQ] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_elseif] = ACTIONS(3317), + [anon_sym_else] = ACTIONS(3319), + [anon_sym_match] = ACTIONS(3319), + [anon_sym_EQ_GT] = ACTIONS(3317), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_asyncfor] = ACTIONS(3317), + [anon_sym_transform] = ACTIONS(3319), + [anon_sym_filter] = ACTIONS(3319), + [anon_sym_find] = ACTIONS(3319), + [anon_sym_remove] = ACTIONS(3319), + [anon_sym_reduce] = ACTIONS(3319), + [anon_sym_select] = ACTIONS(3319), + [anon_sym_insert] = ACTIONS(3319), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_PIPE] = ACTIONS(3319), + [anon_sym_table] = ACTIONS(3319), + [anon_sym_assert] = ACTIONS(3319), + [anon_sym_assert_equal] = ACTIONS(3319), + [anon_sym_download] = ACTIONS(3319), + [anon_sym_help] = ACTIONS(3319), + [anon_sym_length] = ACTIONS(3319), + [anon_sym_output] = ACTIONS(3319), + [anon_sym_output_error] = ACTIONS(3319), + [anon_sym_type] = ACTIONS(3319), + [anon_sym_append] = ACTIONS(3319), + [anon_sym_metadata] = ACTIONS(3319), + [anon_sym_move] = ACTIONS(3319), + [anon_sym_read] = ACTIONS(3319), + [anon_sym_workdir] = ACTIONS(3319), + [anon_sym_write] = ACTIONS(3319), + [anon_sym_from_json] = ACTIONS(3319), + [anon_sym_to_json] = ACTIONS(3319), + [anon_sym_to_string] = ACTIONS(3319), + [anon_sym_to_float] = ACTIONS(3319), + [anon_sym_bash] = ACTIONS(3319), + [anon_sym_fish] = ACTIONS(3319), + [anon_sym_raw] = ACTIONS(3319), + [anon_sym_sh] = ACTIONS(3319), + [anon_sym_zsh] = ACTIONS(3319), + [anon_sym_random] = ACTIONS(3319), + [anon_sym_random_boolean] = ACTIONS(3319), + [anon_sym_random_float] = ACTIONS(3319), + [anon_sym_random_integer] = ACTIONS(3319), + [anon_sym_columns] = ACTIONS(3319), + [anon_sym_rows] = ACTIONS(3319), + [anon_sym_reverse] = ACTIONS(3319), + }, + [604] = { + [ts_builtin_sym_end] = ACTIONS(3321), + [sym_identifier] = ACTIONS(3323), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_RPAREN] = ACTIONS(3321), + [anon_sym_COMMA] = ACTIONS(3321), + [sym_integer] = ACTIONS(3323), + [sym_float] = ACTIONS(3321), + [sym_string] = ACTIONS(3321), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_RBRACK] = ACTIONS(3321), + [anon_sym_EQ] = ACTIONS(3323), + [anon_sym_COLON] = ACTIONS(3321), + [anon_sym_DOT_DOT] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3321), + [anon_sym_PERCENT] = ACTIONS(3321), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3323), + [anon_sym_LT] = ACTIONS(3323), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3321), + [anon_sym_PLUS_EQ] = ACTIONS(3321), + [anon_sym_DASH_EQ] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_elseif] = ACTIONS(3321), + [anon_sym_else] = ACTIONS(3323), + [anon_sym_match] = ACTIONS(3323), + [anon_sym_EQ_GT] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_asyncfor] = ACTIONS(3321), + [anon_sym_transform] = ACTIONS(3323), + [anon_sym_filter] = ACTIONS(3323), + [anon_sym_find] = ACTIONS(3323), + [anon_sym_remove] = ACTIONS(3323), + [anon_sym_reduce] = ACTIONS(3323), + [anon_sym_select] = ACTIONS(3323), + [anon_sym_insert] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_PIPE] = ACTIONS(3323), + [anon_sym_table] = ACTIONS(3323), + [anon_sym_assert] = ACTIONS(3323), + [anon_sym_assert_equal] = ACTIONS(3323), + [anon_sym_download] = ACTIONS(3323), + [anon_sym_help] = ACTIONS(3323), + [anon_sym_length] = ACTIONS(3323), + [anon_sym_output] = ACTIONS(3323), + [anon_sym_output_error] = ACTIONS(3323), + [anon_sym_type] = ACTIONS(3323), + [anon_sym_append] = ACTIONS(3323), + [anon_sym_metadata] = ACTIONS(3323), + [anon_sym_move] = ACTIONS(3323), + [anon_sym_read] = ACTIONS(3323), + [anon_sym_workdir] = ACTIONS(3323), + [anon_sym_write] = ACTIONS(3323), + [anon_sym_from_json] = ACTIONS(3323), + [anon_sym_to_json] = ACTIONS(3323), + [anon_sym_to_string] = ACTIONS(3323), + [anon_sym_to_float] = ACTIONS(3323), + [anon_sym_bash] = ACTIONS(3323), + [anon_sym_fish] = ACTIONS(3323), + [anon_sym_raw] = ACTIONS(3323), + [anon_sym_sh] = ACTIONS(3323), + [anon_sym_zsh] = ACTIONS(3323), + [anon_sym_random] = ACTIONS(3323), + [anon_sym_random_boolean] = ACTIONS(3323), + [anon_sym_random_float] = ACTIONS(3323), + [anon_sym_random_integer] = ACTIONS(3323), + [anon_sym_columns] = ACTIONS(3323), + [anon_sym_rows] = ACTIONS(3323), + [anon_sym_reverse] = ACTIONS(3323), + }, + [605] = { + [ts_builtin_sym_end] = ACTIONS(3325), + [sym_identifier] = ACTIONS(3327), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_RPAREN] = ACTIONS(3325), + [anon_sym_COMMA] = ACTIONS(3325), + [sym_integer] = ACTIONS(3327), + [sym_float] = ACTIONS(3325), + [sym_string] = ACTIONS(3325), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_RBRACK] = ACTIONS(3325), + [anon_sym_EQ] = ACTIONS(3327), + [anon_sym_COLON] = ACTIONS(3325), + [anon_sym_DOT_DOT] = ACTIONS(3325), + [anon_sym_PLUS] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_STAR] = ACTIONS(3325), + [anon_sym_SLASH] = ACTIONS(3325), + [anon_sym_PERCENT] = ACTIONS(3325), + [anon_sym_EQ_EQ] = ACTIONS(3325), + [anon_sym_BANG_EQ] = ACTIONS(3325), + [anon_sym_AMP_AMP] = ACTIONS(3325), + [anon_sym_PIPE_PIPE] = ACTIONS(3325), + [anon_sym_GT] = ACTIONS(3327), + [anon_sym_LT] = ACTIONS(3327), + [anon_sym_GT_EQ] = ACTIONS(3325), + [anon_sym_LT_EQ] = ACTIONS(3325), + [anon_sym_PLUS_EQ] = ACTIONS(3325), + [anon_sym_DASH_EQ] = ACTIONS(3325), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_elseif] = ACTIONS(3325), + [anon_sym_else] = ACTIONS(3327), + [anon_sym_match] = ACTIONS(3327), + [anon_sym_EQ_GT] = ACTIONS(3325), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_asyncfor] = ACTIONS(3325), + [anon_sym_transform] = ACTIONS(3327), + [anon_sym_filter] = ACTIONS(3327), + [anon_sym_find] = ACTIONS(3327), + [anon_sym_remove] = ACTIONS(3327), + [anon_sym_reduce] = ACTIONS(3327), + [anon_sym_select] = ACTIONS(3327), + [anon_sym_insert] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_PIPE] = ACTIONS(3327), + [anon_sym_table] = ACTIONS(3327), + [anon_sym_assert] = ACTIONS(3327), + [anon_sym_assert_equal] = ACTIONS(3327), + [anon_sym_download] = ACTIONS(3327), + [anon_sym_help] = ACTIONS(3327), + [anon_sym_length] = ACTIONS(3327), + [anon_sym_output] = ACTIONS(3327), + [anon_sym_output_error] = ACTIONS(3327), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_append] = ACTIONS(3327), + [anon_sym_metadata] = ACTIONS(3327), + [anon_sym_move] = ACTIONS(3327), + [anon_sym_read] = ACTIONS(3327), + [anon_sym_workdir] = ACTIONS(3327), + [anon_sym_write] = ACTIONS(3327), + [anon_sym_from_json] = ACTIONS(3327), + [anon_sym_to_json] = ACTIONS(3327), + [anon_sym_to_string] = ACTIONS(3327), + [anon_sym_to_float] = ACTIONS(3327), + [anon_sym_bash] = ACTIONS(3327), + [anon_sym_fish] = ACTIONS(3327), + [anon_sym_raw] = ACTIONS(3327), + [anon_sym_sh] = ACTIONS(3327), + [anon_sym_zsh] = ACTIONS(3327), + [anon_sym_random] = ACTIONS(3327), + [anon_sym_random_boolean] = ACTIONS(3327), + [anon_sym_random_float] = ACTIONS(3327), + [anon_sym_random_integer] = ACTIONS(3327), + [anon_sym_columns] = ACTIONS(3327), + [anon_sym_rows] = ACTIONS(3327), + [anon_sym_reverse] = ACTIONS(3327), + }, + [606] = { + [ts_builtin_sym_end] = ACTIONS(3329), + [sym_identifier] = ACTIONS(3331), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_RBRACE] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_RPAREN] = ACTIONS(3329), + [anon_sym_COMMA] = ACTIONS(3329), + [sym_integer] = ACTIONS(3331), + [sym_float] = ACTIONS(3329), + [sym_string] = ACTIONS(3329), + [anon_sym_true] = ACTIONS(3331), + [anon_sym_false] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_RBRACK] = ACTIONS(3329), + [anon_sym_EQ] = ACTIONS(3331), + [anon_sym_COLON] = ACTIONS(3329), + [anon_sym_DOT_DOT] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3329), + [anon_sym_SLASH] = ACTIONS(3329), + [anon_sym_PERCENT] = ACTIONS(3329), + [anon_sym_EQ_EQ] = ACTIONS(3329), + [anon_sym_BANG_EQ] = ACTIONS(3329), + [anon_sym_AMP_AMP] = ACTIONS(3329), + [anon_sym_PIPE_PIPE] = ACTIONS(3329), + [anon_sym_GT] = ACTIONS(3331), + [anon_sym_LT] = ACTIONS(3331), + [anon_sym_GT_EQ] = ACTIONS(3329), + [anon_sym_LT_EQ] = ACTIONS(3329), + [anon_sym_PLUS_EQ] = ACTIONS(3329), + [anon_sym_DASH_EQ] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_elseif] = ACTIONS(3329), + [anon_sym_else] = ACTIONS(3331), + [anon_sym_match] = ACTIONS(3331), + [anon_sym_EQ_GT] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_asyncfor] = ACTIONS(3329), + [anon_sym_transform] = ACTIONS(3331), + [anon_sym_filter] = ACTIONS(3331), + [anon_sym_find] = ACTIONS(3331), + [anon_sym_remove] = ACTIONS(3331), + [anon_sym_reduce] = ACTIONS(3331), + [anon_sym_select] = ACTIONS(3331), + [anon_sym_insert] = ACTIONS(3331), + [anon_sym_async] = ACTIONS(3331), + [anon_sym_PIPE] = ACTIONS(3331), + [anon_sym_table] = ACTIONS(3331), + [anon_sym_assert] = ACTIONS(3331), + [anon_sym_assert_equal] = ACTIONS(3331), + [anon_sym_download] = ACTIONS(3331), + [anon_sym_help] = ACTIONS(3331), + [anon_sym_length] = ACTIONS(3331), + [anon_sym_output] = ACTIONS(3331), + [anon_sym_output_error] = ACTIONS(3331), + [anon_sym_type] = ACTIONS(3331), + [anon_sym_append] = ACTIONS(3331), + [anon_sym_metadata] = ACTIONS(3331), + [anon_sym_move] = ACTIONS(3331), + [anon_sym_read] = ACTIONS(3331), + [anon_sym_workdir] = ACTIONS(3331), + [anon_sym_write] = ACTIONS(3331), + [anon_sym_from_json] = ACTIONS(3331), + [anon_sym_to_json] = ACTIONS(3331), + [anon_sym_to_string] = ACTIONS(3331), + [anon_sym_to_float] = ACTIONS(3331), + [anon_sym_bash] = ACTIONS(3331), + [anon_sym_fish] = ACTIONS(3331), + [anon_sym_raw] = ACTIONS(3331), + [anon_sym_sh] = ACTIONS(3331), + [anon_sym_zsh] = ACTIONS(3331), + [anon_sym_random] = ACTIONS(3331), + [anon_sym_random_boolean] = ACTIONS(3331), + [anon_sym_random_float] = ACTIONS(3331), + [anon_sym_random_integer] = ACTIONS(3331), + [anon_sym_columns] = ACTIONS(3331), + [anon_sym_rows] = ACTIONS(3331), + [anon_sym_reverse] = ACTIONS(3331), + }, + [607] = { + [ts_builtin_sym_end] = ACTIONS(3333), + [sym_identifier] = ACTIONS(3335), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_RPAREN] = ACTIONS(3333), + [anon_sym_COMMA] = ACTIONS(3333), + [sym_integer] = ACTIONS(3335), + [sym_float] = ACTIONS(3333), + [sym_string] = ACTIONS(3333), + [anon_sym_true] = ACTIONS(3335), + [anon_sym_false] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_RBRACK] = ACTIONS(3333), + [anon_sym_EQ] = ACTIONS(3335), + [anon_sym_COLON] = ACTIONS(3333), + [anon_sym_DOT_DOT] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(3335), + [anon_sym_STAR] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3333), + [anon_sym_PERCENT] = ACTIONS(3333), + [anon_sym_EQ_EQ] = ACTIONS(3333), + [anon_sym_BANG_EQ] = ACTIONS(3333), + [anon_sym_AMP_AMP] = ACTIONS(3333), + [anon_sym_PIPE_PIPE] = ACTIONS(3333), + [anon_sym_GT] = ACTIONS(3335), + [anon_sym_LT] = ACTIONS(3335), + [anon_sym_GT_EQ] = ACTIONS(3333), + [anon_sym_LT_EQ] = ACTIONS(3333), + [anon_sym_PLUS_EQ] = ACTIONS(3333), + [anon_sym_DASH_EQ] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_elseif] = ACTIONS(3333), + [anon_sym_else] = ACTIONS(3335), + [anon_sym_match] = ACTIONS(3335), + [anon_sym_EQ_GT] = ACTIONS(3333), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_asyncfor] = ACTIONS(3333), + [anon_sym_transform] = ACTIONS(3335), + [anon_sym_filter] = ACTIONS(3335), + [anon_sym_find] = ACTIONS(3335), + [anon_sym_remove] = ACTIONS(3335), + [anon_sym_reduce] = ACTIONS(3335), + [anon_sym_select] = ACTIONS(3335), + [anon_sym_insert] = ACTIONS(3335), + [anon_sym_async] = ACTIONS(3335), + [anon_sym_PIPE] = ACTIONS(3335), + [anon_sym_table] = ACTIONS(3335), + [anon_sym_assert] = ACTIONS(3335), + [anon_sym_assert_equal] = ACTIONS(3335), + [anon_sym_download] = ACTIONS(3335), + [anon_sym_help] = ACTIONS(3335), + [anon_sym_length] = ACTIONS(3335), + [anon_sym_output] = ACTIONS(3335), + [anon_sym_output_error] = ACTIONS(3335), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_append] = ACTIONS(3335), + [anon_sym_metadata] = ACTIONS(3335), + [anon_sym_move] = ACTIONS(3335), + [anon_sym_read] = ACTIONS(3335), + [anon_sym_workdir] = ACTIONS(3335), + [anon_sym_write] = ACTIONS(3335), + [anon_sym_from_json] = ACTIONS(3335), + [anon_sym_to_json] = ACTIONS(3335), + [anon_sym_to_string] = ACTIONS(3335), + [anon_sym_to_float] = ACTIONS(3335), + [anon_sym_bash] = ACTIONS(3335), + [anon_sym_fish] = ACTIONS(3335), + [anon_sym_raw] = ACTIONS(3335), + [anon_sym_sh] = ACTIONS(3335), + [anon_sym_zsh] = ACTIONS(3335), + [anon_sym_random] = ACTIONS(3335), + [anon_sym_random_boolean] = ACTIONS(3335), + [anon_sym_random_float] = ACTIONS(3335), + [anon_sym_random_integer] = ACTIONS(3335), + [anon_sym_columns] = ACTIONS(3335), + [anon_sym_rows] = ACTIONS(3335), + [anon_sym_reverse] = ACTIONS(3335), + }, + [608] = { + [ts_builtin_sym_end] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3339), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_RPAREN] = ACTIONS(3337), + [anon_sym_COMMA] = ACTIONS(3337), + [sym_integer] = ACTIONS(3339), + [sym_float] = ACTIONS(3337), + [sym_string] = ACTIONS(3337), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_RBRACK] = ACTIONS(3337), + [anon_sym_EQ] = ACTIONS(3339), + [anon_sym_COLON] = ACTIONS(3337), + [anon_sym_DOT_DOT] = ACTIONS(3337), + [anon_sym_PLUS] = ACTIONS(3339), + [anon_sym_DASH] = ACTIONS(3339), + [anon_sym_STAR] = ACTIONS(3337), + [anon_sym_SLASH] = ACTIONS(3337), + [anon_sym_PERCENT] = ACTIONS(3337), + [anon_sym_EQ_EQ] = ACTIONS(3337), + [anon_sym_BANG_EQ] = ACTIONS(3337), + [anon_sym_AMP_AMP] = ACTIONS(3337), + [anon_sym_PIPE_PIPE] = ACTIONS(3337), + [anon_sym_GT] = ACTIONS(3339), + [anon_sym_LT] = ACTIONS(3339), + [anon_sym_GT_EQ] = ACTIONS(3337), + [anon_sym_LT_EQ] = ACTIONS(3337), + [anon_sym_PLUS_EQ] = ACTIONS(3337), + [anon_sym_DASH_EQ] = ACTIONS(3337), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_elseif] = ACTIONS(3337), + [anon_sym_else] = ACTIONS(3339), + [anon_sym_match] = ACTIONS(3339), + [anon_sym_EQ_GT] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_asyncfor] = ACTIONS(3337), + [anon_sym_transform] = ACTIONS(3339), + [anon_sym_filter] = ACTIONS(3339), + [anon_sym_find] = ACTIONS(3339), + [anon_sym_remove] = ACTIONS(3339), + [anon_sym_reduce] = ACTIONS(3339), + [anon_sym_select] = ACTIONS(3339), + [anon_sym_insert] = ACTIONS(3339), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_PIPE] = ACTIONS(3339), + [anon_sym_table] = ACTIONS(3339), + [anon_sym_assert] = ACTIONS(3339), + [anon_sym_assert_equal] = ACTIONS(3339), + [anon_sym_download] = ACTIONS(3339), + [anon_sym_help] = ACTIONS(3339), + [anon_sym_length] = ACTIONS(3339), + [anon_sym_output] = ACTIONS(3339), + [anon_sym_output_error] = ACTIONS(3339), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_append] = ACTIONS(3339), + [anon_sym_metadata] = ACTIONS(3339), + [anon_sym_move] = ACTIONS(3339), + [anon_sym_read] = ACTIONS(3339), + [anon_sym_workdir] = ACTIONS(3339), + [anon_sym_write] = ACTIONS(3339), + [anon_sym_from_json] = ACTIONS(3339), + [anon_sym_to_json] = ACTIONS(3339), + [anon_sym_to_string] = ACTIONS(3339), + [anon_sym_to_float] = ACTIONS(3339), + [anon_sym_bash] = ACTIONS(3339), + [anon_sym_fish] = ACTIONS(3339), + [anon_sym_raw] = ACTIONS(3339), + [anon_sym_sh] = ACTIONS(3339), + [anon_sym_zsh] = ACTIONS(3339), + [anon_sym_random] = ACTIONS(3339), + [anon_sym_random_boolean] = ACTIONS(3339), + [anon_sym_random_float] = ACTIONS(3339), + [anon_sym_random_integer] = ACTIONS(3339), + [anon_sym_columns] = ACTIONS(3339), + [anon_sym_rows] = ACTIONS(3339), + [anon_sym_reverse] = ACTIONS(3339), + }, + [609] = { + [sym_math_operator] = STATE(1414), + [sym_logic_operator] = STATE(1413), + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3254), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3252), + [sym_integer] = ACTIONS(3254), + [sym_float] = ACTIONS(3252), + [sym_string] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_EQ] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_DOT_DOT] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_PLUS_EQ] = ACTIONS(3252), + [anon_sym_DASH_EQ] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_elseif] = ACTIONS(3252), + [anon_sym_else] = ACTIONS(3254), + [anon_sym_match] = ACTIONS(3254), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_asyncfor] = ACTIONS(3252), + [anon_sym_transform] = ACTIONS(3254), + [anon_sym_filter] = ACTIONS(3254), + [anon_sym_find] = ACTIONS(3254), + [anon_sym_remove] = ACTIONS(3254), + [anon_sym_reduce] = ACTIONS(3254), + [anon_sym_select] = ACTIONS(3254), + [anon_sym_insert] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_table] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_assert_equal] = ACTIONS(3254), + [anon_sym_download] = ACTIONS(3254), + [anon_sym_help] = ACTIONS(3254), + [anon_sym_length] = ACTIONS(3254), + [anon_sym_output] = ACTIONS(3254), + [anon_sym_output_error] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_append] = ACTIONS(3254), + [anon_sym_metadata] = ACTIONS(3254), + [anon_sym_move] = ACTIONS(3254), + [anon_sym_read] = ACTIONS(3254), + [anon_sym_workdir] = ACTIONS(3254), + [anon_sym_write] = ACTIONS(3254), + [anon_sym_from_json] = ACTIONS(3254), + [anon_sym_to_json] = ACTIONS(3254), + [anon_sym_to_string] = ACTIONS(3254), + [anon_sym_to_float] = ACTIONS(3254), + [anon_sym_bash] = ACTIONS(3254), + [anon_sym_fish] = ACTIONS(3254), + [anon_sym_raw] = ACTIONS(3254), + [anon_sym_sh] = ACTIONS(3254), + [anon_sym_zsh] = ACTIONS(3254), + [anon_sym_random] = ACTIONS(3254), + [anon_sym_random_boolean] = ACTIONS(3254), + [anon_sym_random_float] = ACTIONS(3254), + [anon_sym_random_integer] = ACTIONS(3254), + [anon_sym_columns] = ACTIONS(3254), + [anon_sym_rows] = ACTIONS(3254), + [anon_sym_reverse] = ACTIONS(3254), + }, + [610] = { + [ts_builtin_sym_end] = ACTIONS(3341), + [sym_identifier] = ACTIONS(3343), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_RPAREN] = ACTIONS(3341), + [anon_sym_COMMA] = ACTIONS(3341), + [sym_integer] = ACTIONS(3343), + [sym_float] = ACTIONS(3341), + [sym_string] = ACTIONS(3341), + [anon_sym_true] = ACTIONS(3343), + [anon_sym_false] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_RBRACK] = ACTIONS(3341), + [anon_sym_EQ] = ACTIONS(3343), + [anon_sym_COLON] = ACTIONS(3341), + [anon_sym_DOT_DOT] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3343), + [anon_sym_STAR] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3341), + [anon_sym_PERCENT] = ACTIONS(3341), + [anon_sym_EQ_EQ] = ACTIONS(3341), + [anon_sym_BANG_EQ] = ACTIONS(3341), + [anon_sym_AMP_AMP] = ACTIONS(3341), + [anon_sym_PIPE_PIPE] = ACTIONS(3341), + [anon_sym_GT] = ACTIONS(3343), + [anon_sym_LT] = ACTIONS(3343), + [anon_sym_GT_EQ] = ACTIONS(3341), + [anon_sym_LT_EQ] = ACTIONS(3341), + [anon_sym_PLUS_EQ] = ACTIONS(3341), + [anon_sym_DASH_EQ] = ACTIONS(3341), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_elseif] = ACTIONS(3341), + [anon_sym_else] = ACTIONS(3343), + [anon_sym_match] = ACTIONS(3343), + [anon_sym_EQ_GT] = ACTIONS(3341), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_asyncfor] = ACTIONS(3341), + [anon_sym_transform] = ACTIONS(3343), + [anon_sym_filter] = ACTIONS(3343), + [anon_sym_find] = ACTIONS(3343), + [anon_sym_remove] = ACTIONS(3343), + [anon_sym_reduce] = ACTIONS(3343), + [anon_sym_select] = ACTIONS(3343), + [anon_sym_insert] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_PIPE] = ACTIONS(3343), + [anon_sym_table] = ACTIONS(3343), + [anon_sym_assert] = ACTIONS(3343), + [anon_sym_assert_equal] = ACTIONS(3343), + [anon_sym_download] = ACTIONS(3343), + [anon_sym_help] = ACTIONS(3343), + [anon_sym_length] = ACTIONS(3343), + [anon_sym_output] = ACTIONS(3343), + [anon_sym_output_error] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3343), + [anon_sym_append] = ACTIONS(3343), + [anon_sym_metadata] = ACTIONS(3343), + [anon_sym_move] = ACTIONS(3343), + [anon_sym_read] = ACTIONS(3343), + [anon_sym_workdir] = ACTIONS(3343), + [anon_sym_write] = ACTIONS(3343), + [anon_sym_from_json] = ACTIONS(3343), + [anon_sym_to_json] = ACTIONS(3343), + [anon_sym_to_string] = ACTIONS(3343), + [anon_sym_to_float] = ACTIONS(3343), + [anon_sym_bash] = ACTIONS(3343), + [anon_sym_fish] = ACTIONS(3343), + [anon_sym_raw] = ACTIONS(3343), + [anon_sym_sh] = ACTIONS(3343), + [anon_sym_zsh] = ACTIONS(3343), + [anon_sym_random] = ACTIONS(3343), + [anon_sym_random_boolean] = ACTIONS(3343), + [anon_sym_random_float] = ACTIONS(3343), + [anon_sym_random_integer] = ACTIONS(3343), + [anon_sym_columns] = ACTIONS(3343), + [anon_sym_rows] = ACTIONS(3343), + [anon_sym_reverse] = ACTIONS(3343), + }, + [611] = { + [sym_else_if] = STATE(612), + [sym_else] = STATE(711), + [aux_sym_if_else_repeat1] = STATE(612), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_RPAREN] = ACTIONS(3219), + [sym_integer] = ACTIONS(3221), + [sym_float] = ACTIONS(3219), + [sym_string] = ACTIONS(3219), + [anon_sym_true] = ACTIONS(3221), + [anon_sym_false] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_EQ] = ACTIONS(3221), + [anon_sym_COLON] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_PLUS_EQ] = ACTIONS(3219), + [anon_sym_DASH_EQ] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_elseif] = ACTIONS(3311), + [anon_sym_else] = ACTIONS(3345), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_EQ_GT] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_asyncfor] = ACTIONS(3219), + [anon_sym_transform] = ACTIONS(3221), + [anon_sym_filter] = ACTIONS(3221), + [anon_sym_find] = ACTIONS(3221), + [anon_sym_remove] = ACTIONS(3221), + [anon_sym_reduce] = ACTIONS(3221), + [anon_sym_select] = ACTIONS(3221), + [anon_sym_insert] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_table] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_assert_equal] = ACTIONS(3221), + [anon_sym_download] = ACTIONS(3221), + [anon_sym_help] = ACTIONS(3221), + [anon_sym_length] = ACTIONS(3221), + [anon_sym_output] = ACTIONS(3221), + [anon_sym_output_error] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_append] = ACTIONS(3221), + [anon_sym_metadata] = ACTIONS(3221), + [anon_sym_move] = ACTIONS(3221), + [anon_sym_read] = ACTIONS(3221), + [anon_sym_workdir] = ACTIONS(3221), + [anon_sym_write] = ACTIONS(3221), + [anon_sym_from_json] = ACTIONS(3221), + [anon_sym_to_json] = ACTIONS(3221), + [anon_sym_to_string] = ACTIONS(3221), + [anon_sym_to_float] = ACTIONS(3221), + [anon_sym_bash] = ACTIONS(3221), + [anon_sym_fish] = ACTIONS(3221), + [anon_sym_raw] = ACTIONS(3221), + [anon_sym_sh] = ACTIONS(3221), + [anon_sym_zsh] = ACTIONS(3221), + [anon_sym_random] = ACTIONS(3221), + [anon_sym_random_boolean] = ACTIONS(3221), + [anon_sym_random_float] = ACTIONS(3221), + [anon_sym_random_integer] = ACTIONS(3221), + [anon_sym_columns] = ACTIONS(3221), + [anon_sym_rows] = ACTIONS(3221), + [anon_sym_reverse] = ACTIONS(3221), + }, + [612] = { + [sym_else_if] = STATE(656), + [sym_else] = STATE(725), + [aux_sym_if_else_repeat1] = STATE(656), + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [sym_integer] = ACTIONS(3231), + [sym_float] = ACTIONS(3229), + [sym_string] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_EQ] = ACTIONS(3231), + [anon_sym_COLON] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_PLUS_EQ] = ACTIONS(3229), + [anon_sym_DASH_EQ] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_elseif] = ACTIONS(3311), + [anon_sym_else] = ACTIONS(3345), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_asyncfor] = ACTIONS(3229), + [anon_sym_transform] = ACTIONS(3231), + [anon_sym_filter] = ACTIONS(3231), + [anon_sym_find] = ACTIONS(3231), + [anon_sym_remove] = ACTIONS(3231), + [anon_sym_reduce] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_insert] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_table] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_assert_equal] = ACTIONS(3231), + [anon_sym_download] = ACTIONS(3231), + [anon_sym_help] = ACTIONS(3231), + [anon_sym_length] = ACTIONS(3231), + [anon_sym_output] = ACTIONS(3231), + [anon_sym_output_error] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_append] = ACTIONS(3231), + [anon_sym_metadata] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_read] = ACTIONS(3231), + [anon_sym_workdir] = ACTIONS(3231), + [anon_sym_write] = ACTIONS(3231), + [anon_sym_from_json] = ACTIONS(3231), + [anon_sym_to_json] = ACTIONS(3231), + [anon_sym_to_string] = ACTIONS(3231), + [anon_sym_to_float] = ACTIONS(3231), + [anon_sym_bash] = ACTIONS(3231), + [anon_sym_fish] = ACTIONS(3231), + [anon_sym_raw] = ACTIONS(3231), + [anon_sym_sh] = ACTIONS(3231), + [anon_sym_zsh] = ACTIONS(3231), + [anon_sym_random] = ACTIONS(3231), + [anon_sym_random_boolean] = ACTIONS(3231), + [anon_sym_random_float] = ACTIONS(3231), + [anon_sym_random_integer] = ACTIONS(3231), + [anon_sym_columns] = ACTIONS(3231), + [anon_sym_rows] = ACTIONS(3231), + [anon_sym_reverse] = ACTIONS(3231), + }, + [613] = { + [sym_else_if] = STATE(652), + [sym_else] = STATE(802), + [aux_sym_if_else_repeat1] = STATE(652), + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [anon_sym_COMMA] = ACTIONS(3229), + [sym_integer] = ACTIONS(3231), + [sym_float] = ACTIONS(3229), + [sym_string] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_RBRACK] = ACTIONS(3229), + [anon_sym_COLON] = ACTIONS(3229), + [anon_sym_DOT_DOT] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_elseif] = ACTIONS(3347), + [anon_sym_else] = ACTIONS(3349), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_asyncfor] = ACTIONS(3229), + [anon_sym_transform] = ACTIONS(3231), + [anon_sym_filter] = ACTIONS(3231), + [anon_sym_find] = ACTIONS(3231), + [anon_sym_remove] = ACTIONS(3231), + [anon_sym_reduce] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_insert] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_table] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_assert_equal] = ACTIONS(3231), + [anon_sym_download] = ACTIONS(3231), + [anon_sym_help] = ACTIONS(3231), + [anon_sym_length] = ACTIONS(3231), + [anon_sym_output] = ACTIONS(3231), + [anon_sym_output_error] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_append] = ACTIONS(3231), + [anon_sym_metadata] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_read] = ACTIONS(3231), + [anon_sym_workdir] = ACTIONS(3231), + [anon_sym_write] = ACTIONS(3231), + [anon_sym_from_json] = ACTIONS(3231), + [anon_sym_to_json] = ACTIONS(3231), + [anon_sym_to_string] = ACTIONS(3231), + [anon_sym_to_float] = ACTIONS(3231), + [anon_sym_bash] = ACTIONS(3231), + [anon_sym_fish] = ACTIONS(3231), + [anon_sym_raw] = ACTIONS(3231), + [anon_sym_sh] = ACTIONS(3231), + [anon_sym_zsh] = ACTIONS(3231), + [anon_sym_random] = ACTIONS(3231), + [anon_sym_random_boolean] = ACTIONS(3231), + [anon_sym_random_float] = ACTIONS(3231), + [anon_sym_random_integer] = ACTIONS(3231), + [anon_sym_columns] = ACTIONS(3231), + [anon_sym_rows] = ACTIONS(3231), + [anon_sym_reverse] = ACTIONS(3231), + }, + [614] = { + [ts_builtin_sym_end] = ACTIONS(3351), + [sym_identifier] = ACTIONS(3353), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_RBRACE] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_RPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3351), + [sym_integer] = ACTIONS(3353), + [sym_float] = ACTIONS(3351), + [sym_string] = ACTIONS(3351), + [anon_sym_true] = ACTIONS(3353), + [anon_sym_false] = ACTIONS(3353), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_RBRACK] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_DOT_DOT] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3353), + [anon_sym_DASH] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_SLASH] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_EQ_EQ] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_GT] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_GT_EQ] = ACTIONS(3351), + [anon_sym_LT_EQ] = ACTIONS(3351), + [anon_sym_PLUS_EQ] = ACTIONS(3351), + [anon_sym_DASH_EQ] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3353), + [anon_sym_elseif] = ACTIONS(3351), + [anon_sym_else] = ACTIONS(3353), + [anon_sym_match] = ACTIONS(3353), + [anon_sym_EQ_GT] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3353), + [anon_sym_asyncfor] = ACTIONS(3351), + [anon_sym_transform] = ACTIONS(3353), + [anon_sym_filter] = ACTIONS(3353), + [anon_sym_find] = ACTIONS(3353), + [anon_sym_remove] = ACTIONS(3353), + [anon_sym_reduce] = ACTIONS(3353), + [anon_sym_select] = ACTIONS(3353), + [anon_sym_insert] = ACTIONS(3353), + [anon_sym_async] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(3353), + [anon_sym_table] = ACTIONS(3353), + [anon_sym_assert] = ACTIONS(3353), + [anon_sym_assert_equal] = ACTIONS(3353), + [anon_sym_download] = ACTIONS(3353), + [anon_sym_help] = ACTIONS(3353), + [anon_sym_length] = ACTIONS(3353), + [anon_sym_output] = ACTIONS(3353), + [anon_sym_output_error] = ACTIONS(3353), + [anon_sym_type] = ACTIONS(3353), + [anon_sym_append] = ACTIONS(3353), + [anon_sym_metadata] = ACTIONS(3353), + [anon_sym_move] = ACTIONS(3353), + [anon_sym_read] = ACTIONS(3353), + [anon_sym_workdir] = ACTIONS(3353), + [anon_sym_write] = ACTIONS(3353), + [anon_sym_from_json] = ACTIONS(3353), + [anon_sym_to_json] = ACTIONS(3353), + [anon_sym_to_string] = ACTIONS(3353), + [anon_sym_to_float] = ACTIONS(3353), + [anon_sym_bash] = ACTIONS(3353), + [anon_sym_fish] = ACTIONS(3353), + [anon_sym_raw] = ACTIONS(3353), + [anon_sym_sh] = ACTIONS(3353), + [anon_sym_zsh] = ACTIONS(3353), + [anon_sym_random] = ACTIONS(3353), + [anon_sym_random_boolean] = ACTIONS(3353), + [anon_sym_random_float] = ACTIONS(3353), + [anon_sym_random_integer] = ACTIONS(3353), + [anon_sym_columns] = ACTIONS(3353), + [anon_sym_rows] = ACTIONS(3353), + [anon_sym_reverse] = ACTIONS(3353), + }, + [615] = { + [ts_builtin_sym_end] = ACTIONS(3355), + [sym_identifier] = ACTIONS(3357), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_RBRACE] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_RPAREN] = ACTIONS(3355), + [anon_sym_COMMA] = ACTIONS(3355), + [sym_integer] = ACTIONS(3357), + [sym_float] = ACTIONS(3355), + [sym_string] = ACTIONS(3355), + [anon_sym_true] = ACTIONS(3357), + [anon_sym_false] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_RBRACK] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(3357), + [anon_sym_COLON] = ACTIONS(3355), + [anon_sym_DOT_DOT] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3357), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3355), + [anon_sym_SLASH] = ACTIONS(3355), + [anon_sym_PERCENT] = ACTIONS(3355), + [anon_sym_EQ_EQ] = ACTIONS(3355), + [anon_sym_BANG_EQ] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_GT] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_GT_EQ] = ACTIONS(3355), + [anon_sym_LT_EQ] = ACTIONS(3355), + [anon_sym_PLUS_EQ] = ACTIONS(3355), + [anon_sym_DASH_EQ] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3357), + [anon_sym_elseif] = ACTIONS(3355), + [anon_sym_else] = ACTIONS(3357), + [anon_sym_match] = ACTIONS(3357), + [anon_sym_EQ_GT] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3357), + [anon_sym_asyncfor] = ACTIONS(3355), + [anon_sym_transform] = ACTIONS(3357), + [anon_sym_filter] = ACTIONS(3357), + [anon_sym_find] = ACTIONS(3357), + [anon_sym_remove] = ACTIONS(3357), + [anon_sym_reduce] = ACTIONS(3357), + [anon_sym_select] = ACTIONS(3357), + [anon_sym_insert] = ACTIONS(3357), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(3357), + [anon_sym_table] = ACTIONS(3357), + [anon_sym_assert] = ACTIONS(3357), + [anon_sym_assert_equal] = ACTIONS(3357), + [anon_sym_download] = ACTIONS(3357), + [anon_sym_help] = ACTIONS(3357), + [anon_sym_length] = ACTIONS(3357), + [anon_sym_output] = ACTIONS(3357), + [anon_sym_output_error] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3357), + [anon_sym_append] = ACTIONS(3357), + [anon_sym_metadata] = ACTIONS(3357), + [anon_sym_move] = ACTIONS(3357), + [anon_sym_read] = ACTIONS(3357), + [anon_sym_workdir] = ACTIONS(3357), + [anon_sym_write] = ACTIONS(3357), + [anon_sym_from_json] = ACTIONS(3357), + [anon_sym_to_json] = ACTIONS(3357), + [anon_sym_to_string] = ACTIONS(3357), + [anon_sym_to_float] = ACTIONS(3357), + [anon_sym_bash] = ACTIONS(3357), + [anon_sym_fish] = ACTIONS(3357), + [anon_sym_raw] = ACTIONS(3357), + [anon_sym_sh] = ACTIONS(3357), + [anon_sym_zsh] = ACTIONS(3357), + [anon_sym_random] = ACTIONS(3357), + [anon_sym_random_boolean] = ACTIONS(3357), + [anon_sym_random_float] = ACTIONS(3357), + [anon_sym_random_integer] = ACTIONS(3357), + [anon_sym_columns] = ACTIONS(3357), + [anon_sym_rows] = ACTIONS(3357), + [anon_sym_reverse] = ACTIONS(3357), + }, + [616] = { + [sym_math_operator] = STATE(1316), + [sym_logic_operator] = STATE(1285), + [ts_builtin_sym_end] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3264), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [sym_integer] = ACTIONS(3264), + [sym_float] = ACTIONS(3262), + [sym_string] = ACTIONS(3262), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_RBRACK] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_DOT_DOT] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_PLUS_EQ] = ACTIONS(3262), + [anon_sym_DASH_EQ] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_match] = ACTIONS(3264), + [anon_sym_EQ_GT] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_asyncfor] = ACTIONS(3262), + [anon_sym_transform] = ACTIONS(3264), + [anon_sym_filter] = ACTIONS(3264), + [anon_sym_find] = ACTIONS(3264), + [anon_sym_remove] = ACTIONS(3264), + [anon_sym_reduce] = ACTIONS(3264), + [anon_sym_select] = ACTIONS(3264), + [anon_sym_insert] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_table] = ACTIONS(3264), + [anon_sym_assert] = ACTIONS(3264), + [anon_sym_assert_equal] = ACTIONS(3264), + [anon_sym_download] = ACTIONS(3264), + [anon_sym_help] = ACTIONS(3264), + [anon_sym_length] = ACTIONS(3264), + [anon_sym_output] = ACTIONS(3264), + [anon_sym_output_error] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_append] = ACTIONS(3264), + [anon_sym_metadata] = ACTIONS(3264), + [anon_sym_move] = ACTIONS(3264), + [anon_sym_read] = ACTIONS(3264), + [anon_sym_workdir] = ACTIONS(3264), + [anon_sym_write] = ACTIONS(3264), + [anon_sym_from_json] = ACTIONS(3264), + [anon_sym_to_json] = ACTIONS(3264), + [anon_sym_to_string] = ACTIONS(3264), + [anon_sym_to_float] = ACTIONS(3264), + [anon_sym_bash] = ACTIONS(3264), + [anon_sym_fish] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3264), + [anon_sym_sh] = ACTIONS(3264), + [anon_sym_zsh] = ACTIONS(3264), + [anon_sym_random] = ACTIONS(3264), + [anon_sym_random_boolean] = ACTIONS(3264), + [anon_sym_random_float] = ACTIONS(3264), + [anon_sym_random_integer] = ACTIONS(3264), + [anon_sym_columns] = ACTIONS(3264), + [anon_sym_rows] = ACTIONS(3264), + [anon_sym_reverse] = ACTIONS(3264), + }, + [617] = { + [ts_builtin_sym_end] = ACTIONS(3359), + [sym_identifier] = ACTIONS(3361), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3359), + [anon_sym_RBRACE] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3359), + [anon_sym_RPAREN] = ACTIONS(3359), + [anon_sym_COMMA] = ACTIONS(3359), + [sym_integer] = ACTIONS(3361), + [sym_float] = ACTIONS(3359), + [sym_string] = ACTIONS(3359), + [anon_sym_true] = ACTIONS(3361), + [anon_sym_false] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3359), + [anon_sym_RBRACK] = ACTIONS(3359), + [anon_sym_EQ] = ACTIONS(3361), + [anon_sym_COLON] = ACTIONS(3359), + [anon_sym_DOT_DOT] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_STAR] = ACTIONS(3359), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_PERCENT] = ACTIONS(3359), + [anon_sym_EQ_EQ] = ACTIONS(3359), + [anon_sym_BANG_EQ] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [anon_sym_GT] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_GT_EQ] = ACTIONS(3359), + [anon_sym_LT_EQ] = ACTIONS(3359), + [anon_sym_PLUS_EQ] = ACTIONS(3359), + [anon_sym_DASH_EQ] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_elseif] = ACTIONS(3359), + [anon_sym_else] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_EQ_GT] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_asyncfor] = ACTIONS(3359), + [anon_sym_transform] = ACTIONS(3361), + [anon_sym_filter] = ACTIONS(3361), + [anon_sym_find] = ACTIONS(3361), + [anon_sym_remove] = ACTIONS(3361), + [anon_sym_reduce] = ACTIONS(3361), + [anon_sym_select] = ACTIONS(3361), + [anon_sym_insert] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_PIPE] = ACTIONS(3361), + [anon_sym_table] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_assert_equal] = ACTIONS(3361), + [anon_sym_download] = ACTIONS(3361), + [anon_sym_help] = ACTIONS(3361), + [anon_sym_length] = ACTIONS(3361), + [anon_sym_output] = ACTIONS(3361), + [anon_sym_output_error] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_append] = ACTIONS(3361), + [anon_sym_metadata] = ACTIONS(3361), + [anon_sym_move] = ACTIONS(3361), + [anon_sym_read] = ACTIONS(3361), + [anon_sym_workdir] = ACTIONS(3361), + [anon_sym_write] = ACTIONS(3361), + [anon_sym_from_json] = ACTIONS(3361), + [anon_sym_to_json] = ACTIONS(3361), + [anon_sym_to_string] = ACTIONS(3361), + [anon_sym_to_float] = ACTIONS(3361), + [anon_sym_bash] = ACTIONS(3361), + [anon_sym_fish] = ACTIONS(3361), + [anon_sym_raw] = ACTIONS(3361), + [anon_sym_sh] = ACTIONS(3361), + [anon_sym_zsh] = ACTIONS(3361), + [anon_sym_random] = ACTIONS(3361), + [anon_sym_random_boolean] = ACTIONS(3361), + [anon_sym_random_float] = ACTIONS(3361), + [anon_sym_random_integer] = ACTIONS(3361), + [anon_sym_columns] = ACTIONS(3361), + [anon_sym_rows] = ACTIONS(3361), + [anon_sym_reverse] = ACTIONS(3361), + }, + [618] = { + [ts_builtin_sym_end] = ACTIONS(3363), + [sym_identifier] = ACTIONS(3365), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3363), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_RPAREN] = ACTIONS(3363), + [anon_sym_COMMA] = ACTIONS(3363), + [sym_integer] = ACTIONS(3365), + [sym_float] = ACTIONS(3363), + [sym_string] = ACTIONS(3363), + [anon_sym_true] = ACTIONS(3365), + [anon_sym_false] = ACTIONS(3365), + [anon_sym_LBRACK] = ACTIONS(3363), + [anon_sym_RBRACK] = ACTIONS(3363), + [anon_sym_EQ] = ACTIONS(3365), + [anon_sym_COLON] = ACTIONS(3363), + [anon_sym_DOT_DOT] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3365), + [anon_sym_DASH] = ACTIONS(3365), + [anon_sym_STAR] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_PERCENT] = ACTIONS(3363), + [anon_sym_EQ_EQ] = ACTIONS(3363), + [anon_sym_BANG_EQ] = ACTIONS(3363), + [anon_sym_AMP_AMP] = ACTIONS(3363), + [anon_sym_PIPE_PIPE] = ACTIONS(3363), + [anon_sym_GT] = ACTIONS(3365), + [anon_sym_LT] = ACTIONS(3365), + [anon_sym_GT_EQ] = ACTIONS(3363), + [anon_sym_LT_EQ] = ACTIONS(3363), + [anon_sym_PLUS_EQ] = ACTIONS(3363), + [anon_sym_DASH_EQ] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3365), + [anon_sym_elseif] = ACTIONS(3363), + [anon_sym_else] = ACTIONS(3365), + [anon_sym_match] = ACTIONS(3365), + [anon_sym_EQ_GT] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3365), + [anon_sym_for] = ACTIONS(3365), + [anon_sym_asyncfor] = ACTIONS(3363), + [anon_sym_transform] = ACTIONS(3365), + [anon_sym_filter] = ACTIONS(3365), + [anon_sym_find] = ACTIONS(3365), + [anon_sym_remove] = ACTIONS(3365), + [anon_sym_reduce] = ACTIONS(3365), + [anon_sym_select] = ACTIONS(3365), + [anon_sym_insert] = ACTIONS(3365), + [anon_sym_async] = ACTIONS(3365), + [anon_sym_PIPE] = ACTIONS(3365), + [anon_sym_table] = ACTIONS(3365), + [anon_sym_assert] = ACTIONS(3365), + [anon_sym_assert_equal] = ACTIONS(3365), + [anon_sym_download] = ACTIONS(3365), + [anon_sym_help] = ACTIONS(3365), + [anon_sym_length] = ACTIONS(3365), + [anon_sym_output] = ACTIONS(3365), + [anon_sym_output_error] = ACTIONS(3365), + [anon_sym_type] = ACTIONS(3365), + [anon_sym_append] = ACTIONS(3365), + [anon_sym_metadata] = ACTIONS(3365), + [anon_sym_move] = ACTIONS(3365), + [anon_sym_read] = ACTIONS(3365), + [anon_sym_workdir] = ACTIONS(3365), + [anon_sym_write] = ACTIONS(3365), + [anon_sym_from_json] = ACTIONS(3365), + [anon_sym_to_json] = ACTIONS(3365), + [anon_sym_to_string] = ACTIONS(3365), + [anon_sym_to_float] = ACTIONS(3365), + [anon_sym_bash] = ACTIONS(3365), + [anon_sym_fish] = ACTIONS(3365), + [anon_sym_raw] = ACTIONS(3365), + [anon_sym_sh] = ACTIONS(3365), + [anon_sym_zsh] = ACTIONS(3365), + [anon_sym_random] = ACTIONS(3365), + [anon_sym_random_boolean] = ACTIONS(3365), + [anon_sym_random_float] = ACTIONS(3365), + [anon_sym_random_integer] = ACTIONS(3365), + [anon_sym_columns] = ACTIONS(3365), + [anon_sym_rows] = ACTIONS(3365), + [anon_sym_reverse] = ACTIONS(3365), + }, + [619] = { + [ts_builtin_sym_end] = ACTIONS(3367), + [sym_identifier] = ACTIONS(3369), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_RPAREN] = ACTIONS(3367), + [anon_sym_COMMA] = ACTIONS(3367), + [sym_integer] = ACTIONS(3369), + [sym_float] = ACTIONS(3367), + [sym_string] = ACTIONS(3367), + [anon_sym_true] = ACTIONS(3369), + [anon_sym_false] = ACTIONS(3369), + [anon_sym_LBRACK] = ACTIONS(3367), + [anon_sym_RBRACK] = ACTIONS(3367), + [anon_sym_EQ] = ACTIONS(3369), + [anon_sym_COLON] = ACTIONS(3367), + [anon_sym_DOT_DOT] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(3367), + [anon_sym_PERCENT] = ACTIONS(3367), + [anon_sym_EQ_EQ] = ACTIONS(3367), + [anon_sym_BANG_EQ] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_PIPE_PIPE] = ACTIONS(3367), + [anon_sym_GT] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3369), + [anon_sym_GT_EQ] = ACTIONS(3367), + [anon_sym_LT_EQ] = ACTIONS(3367), + [anon_sym_PLUS_EQ] = ACTIONS(3367), + [anon_sym_DASH_EQ] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3369), + [anon_sym_elseif] = ACTIONS(3367), + [anon_sym_else] = ACTIONS(3369), + [anon_sym_match] = ACTIONS(3369), + [anon_sym_EQ_GT] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3369), + [anon_sym_for] = ACTIONS(3369), + [anon_sym_asyncfor] = ACTIONS(3367), + [anon_sym_transform] = ACTIONS(3369), + [anon_sym_filter] = ACTIONS(3369), + [anon_sym_find] = ACTIONS(3369), + [anon_sym_remove] = ACTIONS(3369), + [anon_sym_reduce] = ACTIONS(3369), + [anon_sym_select] = ACTIONS(3369), + [anon_sym_insert] = ACTIONS(3369), + [anon_sym_async] = ACTIONS(3369), + [anon_sym_PIPE] = ACTIONS(3369), + [anon_sym_table] = ACTIONS(3369), + [anon_sym_assert] = ACTIONS(3369), + [anon_sym_assert_equal] = ACTIONS(3369), + [anon_sym_download] = ACTIONS(3369), + [anon_sym_help] = ACTIONS(3369), + [anon_sym_length] = ACTIONS(3369), + [anon_sym_output] = ACTIONS(3369), + [anon_sym_output_error] = ACTIONS(3369), + [anon_sym_type] = ACTIONS(3369), + [anon_sym_append] = ACTIONS(3369), + [anon_sym_metadata] = ACTIONS(3369), + [anon_sym_move] = ACTIONS(3369), + [anon_sym_read] = ACTIONS(3369), + [anon_sym_workdir] = ACTIONS(3369), + [anon_sym_write] = ACTIONS(3369), + [anon_sym_from_json] = ACTIONS(3369), + [anon_sym_to_json] = ACTIONS(3369), + [anon_sym_to_string] = ACTIONS(3369), + [anon_sym_to_float] = ACTIONS(3369), + [anon_sym_bash] = ACTIONS(3369), + [anon_sym_fish] = ACTIONS(3369), + [anon_sym_raw] = ACTIONS(3369), + [anon_sym_sh] = ACTIONS(3369), + [anon_sym_zsh] = ACTIONS(3369), + [anon_sym_random] = ACTIONS(3369), + [anon_sym_random_boolean] = ACTIONS(3369), + [anon_sym_random_float] = ACTIONS(3369), + [anon_sym_random_integer] = ACTIONS(3369), + [anon_sym_columns] = ACTIONS(3369), + [anon_sym_rows] = ACTIONS(3369), + [anon_sym_reverse] = ACTIONS(3369), + }, + [620] = { + [sym_assignment_operator] = STATE(542), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_RBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_elseif] = ACTIONS(2435), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), + }, + [621] = { + [sym_math_operator] = STATE(1414), + [sym_logic_operator] = STATE(1413), + [ts_builtin_sym_end] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3264), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [sym_integer] = ACTIONS(3264), + [sym_float] = ACTIONS(3262), + [sym_string] = ACTIONS(3262), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_DOT_DOT] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_PLUS_EQ] = ACTIONS(3262), + [anon_sym_DASH_EQ] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_elseif] = ACTIONS(3262), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_match] = ACTIONS(3264), + [anon_sym_EQ_GT] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_asyncfor] = ACTIONS(3262), + [anon_sym_transform] = ACTIONS(3264), + [anon_sym_filter] = ACTIONS(3264), + [anon_sym_find] = ACTIONS(3264), + [anon_sym_remove] = ACTIONS(3264), + [anon_sym_reduce] = ACTIONS(3264), + [anon_sym_select] = ACTIONS(3264), + [anon_sym_insert] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_table] = ACTIONS(3264), + [anon_sym_assert] = ACTIONS(3264), + [anon_sym_assert_equal] = ACTIONS(3264), + [anon_sym_download] = ACTIONS(3264), + [anon_sym_help] = ACTIONS(3264), + [anon_sym_length] = ACTIONS(3264), + [anon_sym_output] = ACTIONS(3264), + [anon_sym_output_error] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_append] = ACTIONS(3264), + [anon_sym_metadata] = ACTIONS(3264), + [anon_sym_move] = ACTIONS(3264), + [anon_sym_read] = ACTIONS(3264), + [anon_sym_workdir] = ACTIONS(3264), + [anon_sym_write] = ACTIONS(3264), + [anon_sym_from_json] = ACTIONS(3264), + [anon_sym_to_json] = ACTIONS(3264), + [anon_sym_to_string] = ACTIONS(3264), + [anon_sym_to_float] = ACTIONS(3264), + [anon_sym_bash] = ACTIONS(3264), + [anon_sym_fish] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3264), + [anon_sym_sh] = ACTIONS(3264), + [anon_sym_zsh] = ACTIONS(3264), + [anon_sym_random] = ACTIONS(3264), + [anon_sym_random_boolean] = ACTIONS(3264), + [anon_sym_random_float] = ACTIONS(3264), + [anon_sym_random_integer] = ACTIONS(3264), + [anon_sym_columns] = ACTIONS(3264), + [anon_sym_rows] = ACTIONS(3264), + [anon_sym_reverse] = ACTIONS(3264), + }, + [622] = { + [ts_builtin_sym_end] = ACTIONS(3371), + [sym_identifier] = ACTIONS(3373), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3371), + [anon_sym_RBRACE] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3371), + [anon_sym_RPAREN] = ACTIONS(3371), + [anon_sym_COMMA] = ACTIONS(3371), + [sym_integer] = ACTIONS(3373), + [sym_float] = ACTIONS(3371), + [sym_string] = ACTIONS(3371), + [anon_sym_true] = ACTIONS(3373), + [anon_sym_false] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3371), + [anon_sym_RBRACK] = ACTIONS(3371), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3373), + [anon_sym_DASH] = ACTIONS(3373), + [anon_sym_STAR] = ACTIONS(3371), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_PERCENT] = ACTIONS(3371), + [anon_sym_EQ_EQ] = ACTIONS(3371), + [anon_sym_BANG_EQ] = ACTIONS(3371), + [anon_sym_AMP_AMP] = ACTIONS(3371), + [anon_sym_PIPE_PIPE] = ACTIONS(3371), + [anon_sym_GT] = ACTIONS(3373), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_GT_EQ] = ACTIONS(3371), + [anon_sym_LT_EQ] = ACTIONS(3371), + [anon_sym_PLUS_EQ] = ACTIONS(3371), + [anon_sym_DASH_EQ] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3373), + [anon_sym_elseif] = ACTIONS(3371), + [anon_sym_else] = ACTIONS(3373), + [anon_sym_match] = ACTIONS(3373), + [anon_sym_EQ_GT] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3373), + [anon_sym_for] = ACTIONS(3373), + [anon_sym_asyncfor] = ACTIONS(3371), + [anon_sym_transform] = ACTIONS(3373), + [anon_sym_filter] = ACTIONS(3373), + [anon_sym_find] = ACTIONS(3373), + [anon_sym_remove] = ACTIONS(3373), + [anon_sym_reduce] = ACTIONS(3373), + [anon_sym_select] = ACTIONS(3373), + [anon_sym_insert] = ACTIONS(3373), + [anon_sym_async] = ACTIONS(3373), + [anon_sym_PIPE] = ACTIONS(3373), + [anon_sym_table] = ACTIONS(3373), + [anon_sym_assert] = ACTIONS(3373), + [anon_sym_assert_equal] = ACTIONS(3373), + [anon_sym_download] = ACTIONS(3373), + [anon_sym_help] = ACTIONS(3373), + [anon_sym_length] = ACTIONS(3373), + [anon_sym_output] = ACTIONS(3373), + [anon_sym_output_error] = ACTIONS(3373), + [anon_sym_type] = ACTIONS(3373), + [anon_sym_append] = ACTIONS(3373), + [anon_sym_metadata] = ACTIONS(3373), + [anon_sym_move] = ACTIONS(3373), + [anon_sym_read] = ACTIONS(3373), + [anon_sym_workdir] = ACTIONS(3373), + [anon_sym_write] = ACTIONS(3373), + [anon_sym_from_json] = ACTIONS(3373), + [anon_sym_to_json] = ACTIONS(3373), + [anon_sym_to_string] = ACTIONS(3373), + [anon_sym_to_float] = ACTIONS(3373), + [anon_sym_bash] = ACTIONS(3373), + [anon_sym_fish] = ACTIONS(3373), + [anon_sym_raw] = ACTIONS(3373), + [anon_sym_sh] = ACTIONS(3373), + [anon_sym_zsh] = ACTIONS(3373), + [anon_sym_random] = ACTIONS(3373), + [anon_sym_random_boolean] = ACTIONS(3373), + [anon_sym_random_float] = ACTIONS(3373), + [anon_sym_random_integer] = ACTIONS(3373), + [anon_sym_columns] = ACTIONS(3373), + [anon_sym_rows] = ACTIONS(3373), + [anon_sym_reverse] = ACTIONS(3373), + }, + [623] = { + [ts_builtin_sym_end] = ACTIONS(3375), + [sym_identifier] = ACTIONS(3377), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_RPAREN] = ACTIONS(3375), + [anon_sym_COMMA] = ACTIONS(3375), + [sym_integer] = ACTIONS(3377), + [sym_float] = ACTIONS(3375), + [sym_string] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_RBRACK] = ACTIONS(3375), + [anon_sym_EQ] = ACTIONS(3377), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_DOT_DOT] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3377), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_STAR] = ACTIONS(3375), + [anon_sym_SLASH] = ACTIONS(3375), + [anon_sym_PERCENT] = ACTIONS(3375), + [anon_sym_EQ_EQ] = ACTIONS(3375), + [anon_sym_BANG_EQ] = ACTIONS(3375), + [anon_sym_AMP_AMP] = ACTIONS(3375), + [anon_sym_PIPE_PIPE] = ACTIONS(3375), + [anon_sym_GT] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_GT_EQ] = ACTIONS(3375), + [anon_sym_LT_EQ] = ACTIONS(3375), + [anon_sym_PLUS_EQ] = ACTIONS(3375), + [anon_sym_DASH_EQ] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3377), + [anon_sym_elseif] = ACTIONS(3375), + [anon_sym_else] = ACTIONS(3377), + [anon_sym_match] = ACTIONS(3377), + [anon_sym_EQ_GT] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3377), + [anon_sym_for] = ACTIONS(3377), + [anon_sym_asyncfor] = ACTIONS(3375), + [anon_sym_transform] = ACTIONS(3377), + [anon_sym_filter] = ACTIONS(3377), + [anon_sym_find] = ACTIONS(3377), + [anon_sym_remove] = ACTIONS(3377), + [anon_sym_reduce] = ACTIONS(3377), + [anon_sym_select] = ACTIONS(3377), + [anon_sym_insert] = ACTIONS(3377), + [anon_sym_async] = ACTIONS(3377), + [anon_sym_PIPE] = ACTIONS(3377), + [anon_sym_table] = ACTIONS(3377), + [anon_sym_assert] = ACTIONS(3377), + [anon_sym_assert_equal] = ACTIONS(3377), + [anon_sym_download] = ACTIONS(3377), + [anon_sym_help] = ACTIONS(3377), + [anon_sym_length] = ACTIONS(3377), + [anon_sym_output] = ACTIONS(3377), + [anon_sym_output_error] = ACTIONS(3377), + [anon_sym_type] = ACTIONS(3377), + [anon_sym_append] = ACTIONS(3377), + [anon_sym_metadata] = ACTIONS(3377), + [anon_sym_move] = ACTIONS(3377), + [anon_sym_read] = ACTIONS(3377), + [anon_sym_workdir] = ACTIONS(3377), + [anon_sym_write] = ACTIONS(3377), + [anon_sym_from_json] = ACTIONS(3377), + [anon_sym_to_json] = ACTIONS(3377), + [anon_sym_to_string] = ACTIONS(3377), + [anon_sym_to_float] = ACTIONS(3377), + [anon_sym_bash] = ACTIONS(3377), + [anon_sym_fish] = ACTIONS(3377), + [anon_sym_raw] = ACTIONS(3377), + [anon_sym_sh] = ACTIONS(3377), + [anon_sym_zsh] = ACTIONS(3377), + [anon_sym_random] = ACTIONS(3377), + [anon_sym_random_boolean] = ACTIONS(3377), + [anon_sym_random_float] = ACTIONS(3377), + [anon_sym_random_integer] = ACTIONS(3377), + [anon_sym_columns] = ACTIONS(3377), + [anon_sym_rows] = ACTIONS(3377), + [anon_sym_reverse] = ACTIONS(3377), + }, + [624] = { + [ts_builtin_sym_end] = ACTIONS(3379), + [sym_identifier] = ACTIONS(3381), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3379), + [anon_sym_RBRACE] = ACTIONS(3379), + [anon_sym_SEMI] = ACTIONS(3379), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3379), + [anon_sym_COMMA] = ACTIONS(3379), + [sym_integer] = ACTIONS(3381), + [sym_float] = ACTIONS(3379), + [sym_string] = ACTIONS(3379), + [anon_sym_true] = ACTIONS(3381), + [anon_sym_false] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3379), + [anon_sym_RBRACK] = ACTIONS(3379), + [anon_sym_EQ] = ACTIONS(3381), + [anon_sym_COLON] = ACTIONS(3379), + [anon_sym_DOT_DOT] = ACTIONS(3379), + [anon_sym_PLUS] = ACTIONS(3381), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_SLASH] = ACTIONS(3379), + [anon_sym_PERCENT] = ACTIONS(3379), + [anon_sym_EQ_EQ] = ACTIONS(3379), + [anon_sym_BANG_EQ] = ACTIONS(3379), + [anon_sym_AMP_AMP] = ACTIONS(3379), + [anon_sym_PIPE_PIPE] = ACTIONS(3379), + [anon_sym_GT] = ACTIONS(3381), + [anon_sym_LT] = ACTIONS(3381), + [anon_sym_GT_EQ] = ACTIONS(3379), + [anon_sym_LT_EQ] = ACTIONS(3379), + [anon_sym_PLUS_EQ] = ACTIONS(3379), + [anon_sym_DASH_EQ] = ACTIONS(3379), + [anon_sym_if] = ACTIONS(3381), + [anon_sym_elseif] = ACTIONS(3379), + [anon_sym_else] = ACTIONS(3381), + [anon_sym_match] = ACTIONS(3381), + [anon_sym_EQ_GT] = ACTIONS(3379), + [anon_sym_while] = ACTIONS(3381), + [anon_sym_for] = ACTIONS(3381), + [anon_sym_asyncfor] = ACTIONS(3379), + [anon_sym_transform] = ACTIONS(3381), + [anon_sym_filter] = ACTIONS(3381), + [anon_sym_find] = ACTIONS(3381), + [anon_sym_remove] = ACTIONS(3381), + [anon_sym_reduce] = ACTIONS(3381), + [anon_sym_select] = ACTIONS(3381), + [anon_sym_insert] = ACTIONS(3381), + [anon_sym_async] = ACTIONS(3381), + [anon_sym_PIPE] = ACTIONS(3381), + [anon_sym_table] = ACTIONS(3381), + [anon_sym_assert] = ACTIONS(3381), + [anon_sym_assert_equal] = ACTIONS(3381), + [anon_sym_download] = ACTIONS(3381), + [anon_sym_help] = ACTIONS(3381), + [anon_sym_length] = ACTIONS(3381), + [anon_sym_output] = ACTIONS(3381), + [anon_sym_output_error] = ACTIONS(3381), + [anon_sym_type] = ACTIONS(3381), + [anon_sym_append] = ACTIONS(3381), + [anon_sym_metadata] = ACTIONS(3381), + [anon_sym_move] = ACTIONS(3381), + [anon_sym_read] = ACTIONS(3381), + [anon_sym_workdir] = ACTIONS(3381), + [anon_sym_write] = ACTIONS(3381), + [anon_sym_from_json] = ACTIONS(3381), + [anon_sym_to_json] = ACTIONS(3381), + [anon_sym_to_string] = ACTIONS(3381), + [anon_sym_to_float] = ACTIONS(3381), + [anon_sym_bash] = ACTIONS(3381), + [anon_sym_fish] = ACTIONS(3381), + [anon_sym_raw] = ACTIONS(3381), + [anon_sym_sh] = ACTIONS(3381), + [anon_sym_zsh] = ACTIONS(3381), + [anon_sym_random] = ACTIONS(3381), + [anon_sym_random_boolean] = ACTIONS(3381), + [anon_sym_random_float] = ACTIONS(3381), + [anon_sym_random_integer] = ACTIONS(3381), + [anon_sym_columns] = ACTIONS(3381), + [anon_sym_rows] = ACTIONS(3381), + [anon_sym_reverse] = ACTIONS(3381), + }, + [625] = { + [ts_builtin_sym_end] = ACTIONS(3383), + [sym_identifier] = ACTIONS(3385), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_RBRACE] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3383), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_RPAREN] = ACTIONS(3383), + [anon_sym_COMMA] = ACTIONS(3383), + [sym_integer] = ACTIONS(3385), + [sym_float] = ACTIONS(3383), + [sym_string] = ACTIONS(3383), + [anon_sym_true] = ACTIONS(3385), + [anon_sym_false] = ACTIONS(3385), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_RBRACK] = ACTIONS(3383), + [anon_sym_EQ] = ACTIONS(3385), + [anon_sym_COLON] = ACTIONS(3383), + [anon_sym_DOT_DOT] = ACTIONS(3383), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3383), + [anon_sym_SLASH] = ACTIONS(3383), + [anon_sym_PERCENT] = ACTIONS(3383), + [anon_sym_EQ_EQ] = ACTIONS(3383), + [anon_sym_BANG_EQ] = ACTIONS(3383), + [anon_sym_AMP_AMP] = ACTIONS(3383), + [anon_sym_PIPE_PIPE] = ACTIONS(3383), + [anon_sym_GT] = ACTIONS(3385), + [anon_sym_LT] = ACTIONS(3385), + [anon_sym_GT_EQ] = ACTIONS(3383), + [anon_sym_LT_EQ] = ACTIONS(3383), + [anon_sym_PLUS_EQ] = ACTIONS(3383), + [anon_sym_DASH_EQ] = ACTIONS(3383), + [anon_sym_if] = ACTIONS(3385), + [anon_sym_elseif] = ACTIONS(3383), + [anon_sym_else] = ACTIONS(3385), + [anon_sym_match] = ACTIONS(3385), + [anon_sym_EQ_GT] = ACTIONS(3383), + [anon_sym_while] = ACTIONS(3385), + [anon_sym_for] = ACTIONS(3385), + [anon_sym_asyncfor] = ACTIONS(3383), + [anon_sym_transform] = ACTIONS(3385), + [anon_sym_filter] = ACTIONS(3385), + [anon_sym_find] = ACTIONS(3385), + [anon_sym_remove] = ACTIONS(3385), + [anon_sym_reduce] = ACTIONS(3385), + [anon_sym_select] = ACTIONS(3385), + [anon_sym_insert] = ACTIONS(3385), + [anon_sym_async] = ACTIONS(3385), + [anon_sym_PIPE] = ACTIONS(3385), + [anon_sym_table] = ACTIONS(3385), + [anon_sym_assert] = ACTIONS(3385), + [anon_sym_assert_equal] = ACTIONS(3385), + [anon_sym_download] = ACTIONS(3385), + [anon_sym_help] = ACTIONS(3385), + [anon_sym_length] = ACTIONS(3385), + [anon_sym_output] = ACTIONS(3385), + [anon_sym_output_error] = ACTIONS(3385), + [anon_sym_type] = ACTIONS(3385), + [anon_sym_append] = ACTIONS(3385), + [anon_sym_metadata] = ACTIONS(3385), + [anon_sym_move] = ACTIONS(3385), + [anon_sym_read] = ACTIONS(3385), + [anon_sym_workdir] = ACTIONS(3385), + [anon_sym_write] = ACTIONS(3385), + [anon_sym_from_json] = ACTIONS(3385), + [anon_sym_to_json] = ACTIONS(3385), + [anon_sym_to_string] = ACTIONS(3385), + [anon_sym_to_float] = ACTIONS(3385), + [anon_sym_bash] = ACTIONS(3385), + [anon_sym_fish] = ACTIONS(3385), + [anon_sym_raw] = ACTIONS(3385), + [anon_sym_sh] = ACTIONS(3385), + [anon_sym_zsh] = ACTIONS(3385), + [anon_sym_random] = ACTIONS(3385), + [anon_sym_random_boolean] = ACTIONS(3385), + [anon_sym_random_float] = ACTIONS(3385), + [anon_sym_random_integer] = ACTIONS(3385), + [anon_sym_columns] = ACTIONS(3385), + [anon_sym_rows] = ACTIONS(3385), + [anon_sym_reverse] = ACTIONS(3385), + }, + [626] = { + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2541), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_RPAREN] = ACTIONS(2518), + [anon_sym_COMMA] = ACTIONS(2518), + [sym_integer] = ACTIONS(2541), + [sym_float] = ACTIONS(2518), + [sym_string] = ACTIONS(2518), + [anon_sym_true] = ACTIONS(2541), + [anon_sym_false] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym_RBRACK] = ACTIONS(2518), + [anon_sym_EQ] = ACTIONS(2541), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_PLUS_EQ] = ACTIONS(2518), + [anon_sym_DASH_EQ] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_elseif] = ACTIONS(2518), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2518), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_asyncfor] = ACTIONS(2518), + [anon_sym_transform] = ACTIONS(2541), + [anon_sym_filter] = ACTIONS(2541), + [anon_sym_find] = ACTIONS(2541), + [anon_sym_remove] = ACTIONS(2541), + [anon_sym_reduce] = ACTIONS(2541), + [anon_sym_select] = ACTIONS(2541), + [anon_sym_insert] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_table] = ACTIONS(2541), + [anon_sym_assert] = ACTIONS(2541), + [anon_sym_assert_equal] = ACTIONS(2541), + [anon_sym_download] = ACTIONS(2541), + [anon_sym_help] = ACTIONS(2541), + [anon_sym_length] = ACTIONS(2541), + [anon_sym_output] = ACTIONS(2541), + [anon_sym_output_error] = ACTIONS(2541), + [anon_sym_type] = ACTIONS(2541), + [anon_sym_append] = ACTIONS(2541), + [anon_sym_metadata] = ACTIONS(2541), + [anon_sym_move] = ACTIONS(2541), + [anon_sym_read] = ACTIONS(2541), + [anon_sym_workdir] = ACTIONS(2541), + [anon_sym_write] = ACTIONS(2541), + [anon_sym_from_json] = ACTIONS(2541), + [anon_sym_to_json] = ACTIONS(2541), + [anon_sym_to_string] = ACTIONS(2541), + [anon_sym_to_float] = ACTIONS(2541), + [anon_sym_bash] = ACTIONS(2541), + [anon_sym_fish] = ACTIONS(2541), + [anon_sym_raw] = ACTIONS(2541), + [anon_sym_sh] = ACTIONS(2541), + [anon_sym_zsh] = ACTIONS(2541), + [anon_sym_random] = ACTIONS(2541), + [anon_sym_random_boolean] = ACTIONS(2541), + [anon_sym_random_float] = ACTIONS(2541), + [anon_sym_random_integer] = ACTIONS(2541), + [anon_sym_columns] = ACTIONS(2541), + [anon_sym_rows] = ACTIONS(2541), + [anon_sym_reverse] = ACTIONS(2541), + }, + [627] = { + [sym_else_if] = STATE(648), + [sym_else] = STATE(878), + [aux_sym_if_else_repeat1] = STATE(648), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_RPAREN] = ACTIONS(3219), + [anon_sym_COMMA] = ACTIONS(3219), + [sym_integer] = ACTIONS(3221), + [sym_float] = ACTIONS(3219), + [sym_string] = ACTIONS(3219), + [anon_sym_true] = ACTIONS(3221), + [anon_sym_false] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_RBRACK] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_elseif] = ACTIONS(3347), + [anon_sym_else] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_EQ_GT] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_asyncfor] = ACTIONS(3219), + [anon_sym_transform] = ACTIONS(3221), + [anon_sym_filter] = ACTIONS(3221), + [anon_sym_find] = ACTIONS(3221), + [anon_sym_remove] = ACTIONS(3221), + [anon_sym_reduce] = ACTIONS(3221), + [anon_sym_select] = ACTIONS(3221), + [anon_sym_insert] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_table] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_assert_equal] = ACTIONS(3221), + [anon_sym_download] = ACTIONS(3221), + [anon_sym_help] = ACTIONS(3221), + [anon_sym_length] = ACTIONS(3221), + [anon_sym_output] = ACTIONS(3221), + [anon_sym_output_error] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_append] = ACTIONS(3221), + [anon_sym_metadata] = ACTIONS(3221), + [anon_sym_move] = ACTIONS(3221), + [anon_sym_read] = ACTIONS(3221), + [anon_sym_workdir] = ACTIONS(3221), + [anon_sym_write] = ACTIONS(3221), + [anon_sym_from_json] = ACTIONS(3221), + [anon_sym_to_json] = ACTIONS(3221), + [anon_sym_to_string] = ACTIONS(3221), + [anon_sym_to_float] = ACTIONS(3221), + [anon_sym_bash] = ACTIONS(3221), + [anon_sym_fish] = ACTIONS(3221), + [anon_sym_raw] = ACTIONS(3221), + [anon_sym_sh] = ACTIONS(3221), + [anon_sym_zsh] = ACTIONS(3221), + [anon_sym_random] = ACTIONS(3221), + [anon_sym_random_boolean] = ACTIONS(3221), + [anon_sym_random_float] = ACTIONS(3221), + [anon_sym_random_integer] = ACTIONS(3221), + [anon_sym_columns] = ACTIONS(3221), + [anon_sym_rows] = ACTIONS(3221), + [anon_sym_reverse] = ACTIONS(3221), + }, + [628] = { + [ts_builtin_sym_end] = ACTIONS(3389), + [sym_identifier] = ACTIONS(3391), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3389), + [anon_sym_RPAREN] = ACTIONS(3389), + [anon_sym_COMMA] = ACTIONS(3389), + [sym_integer] = ACTIONS(3391), + [sym_float] = ACTIONS(3389), + [sym_string] = ACTIONS(3389), + [anon_sym_true] = ACTIONS(3391), + [anon_sym_false] = ACTIONS(3391), + [anon_sym_LBRACK] = ACTIONS(3389), + [anon_sym_RBRACK] = ACTIONS(3389), + [anon_sym_EQ] = ACTIONS(3391), + [anon_sym_COLON] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_PLUS] = ACTIONS(3391), + [anon_sym_DASH] = ACTIONS(3391), + [anon_sym_STAR] = ACTIONS(3389), + [anon_sym_SLASH] = ACTIONS(3389), + [anon_sym_PERCENT] = ACTIONS(3389), + [anon_sym_EQ_EQ] = ACTIONS(3389), + [anon_sym_BANG_EQ] = ACTIONS(3389), + [anon_sym_AMP_AMP] = ACTIONS(3389), + [anon_sym_PIPE_PIPE] = ACTIONS(3389), + [anon_sym_GT] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3391), + [anon_sym_GT_EQ] = ACTIONS(3389), + [anon_sym_LT_EQ] = ACTIONS(3389), + [anon_sym_PLUS_EQ] = ACTIONS(3389), + [anon_sym_DASH_EQ] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_elseif] = ACTIONS(3389), + [anon_sym_else] = ACTIONS(3391), + [anon_sym_match] = ACTIONS(3391), + [anon_sym_EQ_GT] = ACTIONS(3389), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_asyncfor] = ACTIONS(3389), + [anon_sym_transform] = ACTIONS(3391), + [anon_sym_filter] = ACTIONS(3391), + [anon_sym_find] = ACTIONS(3391), + [anon_sym_remove] = ACTIONS(3391), + [anon_sym_reduce] = ACTIONS(3391), + [anon_sym_select] = ACTIONS(3391), + [anon_sym_insert] = ACTIONS(3391), + [anon_sym_async] = ACTIONS(3391), + [anon_sym_PIPE] = ACTIONS(3391), + [anon_sym_table] = ACTIONS(3391), + [anon_sym_assert] = ACTIONS(3391), + [anon_sym_assert_equal] = ACTIONS(3391), + [anon_sym_download] = ACTIONS(3391), + [anon_sym_help] = ACTIONS(3391), + [anon_sym_length] = ACTIONS(3391), + [anon_sym_output] = ACTIONS(3391), + [anon_sym_output_error] = ACTIONS(3391), + [anon_sym_type] = ACTIONS(3391), + [anon_sym_append] = ACTIONS(3391), + [anon_sym_metadata] = ACTIONS(3391), + [anon_sym_move] = ACTIONS(3391), + [anon_sym_read] = ACTIONS(3391), + [anon_sym_workdir] = ACTIONS(3391), + [anon_sym_write] = ACTIONS(3391), + [anon_sym_from_json] = ACTIONS(3391), + [anon_sym_to_json] = ACTIONS(3391), + [anon_sym_to_string] = ACTIONS(3391), + [anon_sym_to_float] = ACTIONS(3391), + [anon_sym_bash] = ACTIONS(3391), + [anon_sym_fish] = ACTIONS(3391), + [anon_sym_raw] = ACTIONS(3391), + [anon_sym_sh] = ACTIONS(3391), + [anon_sym_zsh] = ACTIONS(3391), + [anon_sym_random] = ACTIONS(3391), + [anon_sym_random_boolean] = ACTIONS(3391), + [anon_sym_random_float] = ACTIONS(3391), + [anon_sym_random_integer] = ACTIONS(3391), + [anon_sym_columns] = ACTIONS(3391), + [anon_sym_rows] = ACTIONS(3391), + [anon_sym_reverse] = ACTIONS(3391), + }, + [629] = { + [ts_builtin_sym_end] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3395), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_RBRACE] = ACTIONS(3393), + [anon_sym_SEMI] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_RPAREN] = ACTIONS(3393), + [anon_sym_COMMA] = ACTIONS(3393), + [sym_integer] = ACTIONS(3395), + [sym_float] = ACTIONS(3393), + [sym_string] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_RBRACK] = ACTIONS(3393), + [anon_sym_EQ] = ACTIONS(3395), + [anon_sym_COLON] = ACTIONS(3393), + [anon_sym_DOT_DOT] = ACTIONS(3393), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_STAR] = ACTIONS(3393), + [anon_sym_SLASH] = ACTIONS(3393), + [anon_sym_PERCENT] = ACTIONS(3393), + [anon_sym_EQ_EQ] = ACTIONS(3393), + [anon_sym_BANG_EQ] = ACTIONS(3393), + [anon_sym_AMP_AMP] = ACTIONS(3393), + [anon_sym_PIPE_PIPE] = ACTIONS(3393), + [anon_sym_GT] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_GT_EQ] = ACTIONS(3393), + [anon_sym_LT_EQ] = ACTIONS(3393), + [anon_sym_PLUS_EQ] = ACTIONS(3393), + [anon_sym_DASH_EQ] = ACTIONS(3393), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_elseif] = ACTIONS(3393), + [anon_sym_else] = ACTIONS(3395), + [anon_sym_match] = ACTIONS(3395), + [anon_sym_EQ_GT] = ACTIONS(3393), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_asyncfor] = ACTIONS(3393), + [anon_sym_transform] = ACTIONS(3395), + [anon_sym_filter] = ACTIONS(3395), + [anon_sym_find] = ACTIONS(3395), + [anon_sym_remove] = ACTIONS(3395), + [anon_sym_reduce] = ACTIONS(3395), + [anon_sym_select] = ACTIONS(3395), + [anon_sym_insert] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_PIPE] = ACTIONS(3395), + [anon_sym_table] = ACTIONS(3395), + [anon_sym_assert] = ACTIONS(3395), + [anon_sym_assert_equal] = ACTIONS(3395), + [anon_sym_download] = ACTIONS(3395), + [anon_sym_help] = ACTIONS(3395), + [anon_sym_length] = ACTIONS(3395), + [anon_sym_output] = ACTIONS(3395), + [anon_sym_output_error] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_append] = ACTIONS(3395), + [anon_sym_metadata] = ACTIONS(3395), + [anon_sym_move] = ACTIONS(3395), + [anon_sym_read] = ACTIONS(3395), + [anon_sym_workdir] = ACTIONS(3395), + [anon_sym_write] = ACTIONS(3395), + [anon_sym_from_json] = ACTIONS(3395), + [anon_sym_to_json] = ACTIONS(3395), + [anon_sym_to_string] = ACTIONS(3395), + [anon_sym_to_float] = ACTIONS(3395), + [anon_sym_bash] = ACTIONS(3395), + [anon_sym_fish] = ACTIONS(3395), + [anon_sym_raw] = ACTIONS(3395), + [anon_sym_sh] = ACTIONS(3395), + [anon_sym_zsh] = ACTIONS(3395), + [anon_sym_random] = ACTIONS(3395), + [anon_sym_random_boolean] = ACTIONS(3395), + [anon_sym_random_float] = ACTIONS(3395), + [anon_sym_random_integer] = ACTIONS(3395), + [anon_sym_columns] = ACTIONS(3395), + [anon_sym_rows] = ACTIONS(3395), + [anon_sym_reverse] = ACTIONS(3395), + }, + [630] = { + [ts_builtin_sym_end] = ACTIONS(3397), + [sym_identifier] = ACTIONS(3399), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3397), + [anon_sym_RBRACE] = ACTIONS(3397), + [anon_sym_SEMI] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3397), + [anon_sym_RPAREN] = ACTIONS(3397), + [anon_sym_COMMA] = ACTIONS(3397), + [sym_integer] = ACTIONS(3399), + [sym_float] = ACTIONS(3397), + [sym_string] = ACTIONS(3397), + [anon_sym_true] = ACTIONS(3399), + [anon_sym_false] = ACTIONS(3399), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(3397), + [anon_sym_EQ] = ACTIONS(3399), + [anon_sym_COLON] = ACTIONS(3397), + [anon_sym_DOT_DOT] = ACTIONS(3397), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_STAR] = ACTIONS(3397), + [anon_sym_SLASH] = ACTIONS(3397), + [anon_sym_PERCENT] = ACTIONS(3397), + [anon_sym_EQ_EQ] = ACTIONS(3397), + [anon_sym_BANG_EQ] = ACTIONS(3397), + [anon_sym_AMP_AMP] = ACTIONS(3397), + [anon_sym_PIPE_PIPE] = ACTIONS(3397), + [anon_sym_GT] = ACTIONS(3399), + [anon_sym_LT] = ACTIONS(3399), + [anon_sym_GT_EQ] = ACTIONS(3397), + [anon_sym_LT_EQ] = ACTIONS(3397), + [anon_sym_PLUS_EQ] = ACTIONS(3397), + [anon_sym_DASH_EQ] = ACTIONS(3397), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_elseif] = ACTIONS(3397), + [anon_sym_else] = ACTIONS(3399), + [anon_sym_match] = ACTIONS(3399), + [anon_sym_EQ_GT] = ACTIONS(3397), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_asyncfor] = ACTIONS(3397), + [anon_sym_transform] = ACTIONS(3399), + [anon_sym_filter] = ACTIONS(3399), + [anon_sym_find] = ACTIONS(3399), + [anon_sym_remove] = ACTIONS(3399), + [anon_sym_reduce] = ACTIONS(3399), + [anon_sym_select] = ACTIONS(3399), + [anon_sym_insert] = ACTIONS(3399), + [anon_sym_async] = ACTIONS(3399), + [anon_sym_PIPE] = ACTIONS(3399), + [anon_sym_table] = ACTIONS(3399), + [anon_sym_assert] = ACTIONS(3399), + [anon_sym_assert_equal] = ACTIONS(3399), + [anon_sym_download] = ACTIONS(3399), + [anon_sym_help] = ACTIONS(3399), + [anon_sym_length] = ACTIONS(3399), + [anon_sym_output] = ACTIONS(3399), + [anon_sym_output_error] = ACTIONS(3399), + [anon_sym_type] = ACTIONS(3399), + [anon_sym_append] = ACTIONS(3399), + [anon_sym_metadata] = ACTIONS(3399), + [anon_sym_move] = ACTIONS(3399), + [anon_sym_read] = ACTIONS(3399), + [anon_sym_workdir] = ACTIONS(3399), + [anon_sym_write] = ACTIONS(3399), + [anon_sym_from_json] = ACTIONS(3399), + [anon_sym_to_json] = ACTIONS(3399), + [anon_sym_to_string] = ACTIONS(3399), + [anon_sym_to_float] = ACTIONS(3399), + [anon_sym_bash] = ACTIONS(3399), + [anon_sym_fish] = ACTIONS(3399), + [anon_sym_raw] = ACTIONS(3399), + [anon_sym_sh] = ACTIONS(3399), + [anon_sym_zsh] = ACTIONS(3399), + [anon_sym_random] = ACTIONS(3399), + [anon_sym_random_boolean] = ACTIONS(3399), + [anon_sym_random_float] = ACTIONS(3399), + [anon_sym_random_integer] = ACTIONS(3399), + [anon_sym_columns] = ACTIONS(3399), + [anon_sym_rows] = ACTIONS(3399), + [anon_sym_reverse] = ACTIONS(3399), + }, + [631] = { + [ts_builtin_sym_end] = ACTIONS(3401), + [sym_identifier] = ACTIONS(3403), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_RBRACE] = ACTIONS(3401), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_RPAREN] = ACTIONS(3401), + [anon_sym_COMMA] = ACTIONS(3401), + [sym_integer] = ACTIONS(3403), + [sym_float] = ACTIONS(3401), + [sym_string] = ACTIONS(3401), + [anon_sym_true] = ACTIONS(3403), + [anon_sym_false] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_RBRACK] = ACTIONS(3401), + [anon_sym_EQ] = ACTIONS(3403), + [anon_sym_COLON] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3403), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_STAR] = ACTIONS(3401), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_PERCENT] = ACTIONS(3401), + [anon_sym_EQ_EQ] = ACTIONS(3401), + [anon_sym_BANG_EQ] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_PIPE_PIPE] = ACTIONS(3401), + [anon_sym_GT] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_GT_EQ] = ACTIONS(3401), + [anon_sym_LT_EQ] = ACTIONS(3401), + [anon_sym_PLUS_EQ] = ACTIONS(3401), + [anon_sym_DASH_EQ] = ACTIONS(3401), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_elseif] = ACTIONS(3401), + [anon_sym_else] = ACTIONS(3403), + [anon_sym_match] = ACTIONS(3403), + [anon_sym_EQ_GT] = ACTIONS(3401), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_asyncfor] = ACTIONS(3401), + [anon_sym_transform] = ACTIONS(3403), + [anon_sym_filter] = ACTIONS(3403), + [anon_sym_find] = ACTIONS(3403), + [anon_sym_remove] = ACTIONS(3403), + [anon_sym_reduce] = ACTIONS(3403), + [anon_sym_select] = ACTIONS(3403), + [anon_sym_insert] = ACTIONS(3403), + [anon_sym_async] = ACTIONS(3403), + [anon_sym_PIPE] = ACTIONS(3403), + [anon_sym_table] = ACTIONS(3403), + [anon_sym_assert] = ACTIONS(3403), + [anon_sym_assert_equal] = ACTIONS(3403), + [anon_sym_download] = ACTIONS(3403), + [anon_sym_help] = ACTIONS(3403), + [anon_sym_length] = ACTIONS(3403), + [anon_sym_output] = ACTIONS(3403), + [anon_sym_output_error] = ACTIONS(3403), + [anon_sym_type] = ACTIONS(3403), + [anon_sym_append] = ACTIONS(3403), + [anon_sym_metadata] = ACTIONS(3403), + [anon_sym_move] = ACTIONS(3403), + [anon_sym_read] = ACTIONS(3403), + [anon_sym_workdir] = ACTIONS(3403), + [anon_sym_write] = ACTIONS(3403), + [anon_sym_from_json] = ACTIONS(3403), + [anon_sym_to_json] = ACTIONS(3403), + [anon_sym_to_string] = ACTIONS(3403), + [anon_sym_to_float] = ACTIONS(3403), + [anon_sym_bash] = ACTIONS(3403), + [anon_sym_fish] = ACTIONS(3403), + [anon_sym_raw] = ACTIONS(3403), + [anon_sym_sh] = ACTIONS(3403), + [anon_sym_zsh] = ACTIONS(3403), + [anon_sym_random] = ACTIONS(3403), + [anon_sym_random_boolean] = ACTIONS(3403), + [anon_sym_random_float] = ACTIONS(3403), + [anon_sym_random_integer] = ACTIONS(3403), + [anon_sym_columns] = ACTIONS(3403), + [anon_sym_rows] = ACTIONS(3403), + [anon_sym_reverse] = ACTIONS(3403), + }, + [632] = { + [ts_builtin_sym_end] = ACTIONS(3405), + [sym_identifier] = ACTIONS(3407), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_RBRACE] = ACTIONS(3405), + [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_LPAREN] = ACTIONS(3405), + [anon_sym_RPAREN] = ACTIONS(3405), + [anon_sym_COMMA] = ACTIONS(3405), + [sym_integer] = ACTIONS(3407), + [sym_float] = ACTIONS(3405), + [sym_string] = ACTIONS(3405), + [anon_sym_true] = ACTIONS(3407), + [anon_sym_false] = ACTIONS(3407), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_RBRACK] = ACTIONS(3405), + [anon_sym_EQ] = ACTIONS(3407), + [anon_sym_COLON] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(3405), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(3405), + [anon_sym_SLASH] = ACTIONS(3405), + [anon_sym_PERCENT] = ACTIONS(3405), + [anon_sym_EQ_EQ] = ACTIONS(3405), + [anon_sym_BANG_EQ] = ACTIONS(3405), + [anon_sym_AMP_AMP] = ACTIONS(3405), + [anon_sym_PIPE_PIPE] = ACTIONS(3405), + [anon_sym_GT] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3407), + [anon_sym_GT_EQ] = ACTIONS(3405), + [anon_sym_LT_EQ] = ACTIONS(3405), + [anon_sym_PLUS_EQ] = ACTIONS(3405), + [anon_sym_DASH_EQ] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3407), + [anon_sym_elseif] = ACTIONS(3405), + [anon_sym_else] = ACTIONS(3407), + [anon_sym_match] = ACTIONS(3407), + [anon_sym_EQ_GT] = ACTIONS(3405), + [anon_sym_while] = ACTIONS(3407), + [anon_sym_for] = ACTIONS(3407), + [anon_sym_asyncfor] = ACTIONS(3405), + [anon_sym_transform] = ACTIONS(3407), + [anon_sym_filter] = ACTIONS(3407), + [anon_sym_find] = ACTIONS(3407), + [anon_sym_remove] = ACTIONS(3407), + [anon_sym_reduce] = ACTIONS(3407), + [anon_sym_select] = ACTIONS(3407), + [anon_sym_insert] = ACTIONS(3407), + [anon_sym_async] = ACTIONS(3407), + [anon_sym_PIPE] = ACTIONS(3407), + [anon_sym_table] = ACTIONS(3407), + [anon_sym_assert] = ACTIONS(3407), + [anon_sym_assert_equal] = ACTIONS(3407), + [anon_sym_download] = ACTIONS(3407), + [anon_sym_help] = ACTIONS(3407), + [anon_sym_length] = ACTIONS(3407), + [anon_sym_output] = ACTIONS(3407), + [anon_sym_output_error] = ACTIONS(3407), + [anon_sym_type] = ACTIONS(3407), + [anon_sym_append] = ACTIONS(3407), + [anon_sym_metadata] = ACTIONS(3407), + [anon_sym_move] = ACTIONS(3407), + [anon_sym_read] = ACTIONS(3407), + [anon_sym_workdir] = ACTIONS(3407), + [anon_sym_write] = ACTIONS(3407), + [anon_sym_from_json] = ACTIONS(3407), + [anon_sym_to_json] = ACTIONS(3407), + [anon_sym_to_string] = ACTIONS(3407), + [anon_sym_to_float] = ACTIONS(3407), + [anon_sym_bash] = ACTIONS(3407), + [anon_sym_fish] = ACTIONS(3407), + [anon_sym_raw] = ACTIONS(3407), + [anon_sym_sh] = ACTIONS(3407), + [anon_sym_zsh] = ACTIONS(3407), + [anon_sym_random] = ACTIONS(3407), + [anon_sym_random_boolean] = ACTIONS(3407), + [anon_sym_random_float] = ACTIONS(3407), + [anon_sym_random_integer] = ACTIONS(3407), + [anon_sym_columns] = ACTIONS(3407), + [anon_sym_rows] = ACTIONS(3407), + [anon_sym_reverse] = ACTIONS(3407), + }, + [633] = { + [ts_builtin_sym_end] = ACTIONS(3409), + [sym_identifier] = ACTIONS(3411), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_RBRACE] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), + [anon_sym_RPAREN] = ACTIONS(3409), + [anon_sym_COMMA] = ACTIONS(3409), + [sym_integer] = ACTIONS(3411), + [sym_float] = ACTIONS(3409), + [sym_string] = ACTIONS(3409), + [anon_sym_true] = ACTIONS(3411), + [anon_sym_false] = ACTIONS(3411), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_RBRACK] = ACTIONS(3409), + [anon_sym_EQ] = ACTIONS(3411), + [anon_sym_COLON] = ACTIONS(3409), + [anon_sym_DOT_DOT] = ACTIONS(3409), + [anon_sym_PLUS] = ACTIONS(3411), + [anon_sym_DASH] = ACTIONS(3411), + [anon_sym_STAR] = ACTIONS(3409), + [anon_sym_SLASH] = ACTIONS(3409), + [anon_sym_PERCENT] = ACTIONS(3409), + [anon_sym_EQ_EQ] = ACTIONS(3409), + [anon_sym_BANG_EQ] = ACTIONS(3409), + [anon_sym_AMP_AMP] = ACTIONS(3409), + [anon_sym_PIPE_PIPE] = ACTIONS(3409), + [anon_sym_GT] = ACTIONS(3411), + [anon_sym_LT] = ACTIONS(3411), + [anon_sym_GT_EQ] = ACTIONS(3409), + [anon_sym_LT_EQ] = ACTIONS(3409), + [anon_sym_PLUS_EQ] = ACTIONS(3409), + [anon_sym_DASH_EQ] = ACTIONS(3409), + [anon_sym_if] = ACTIONS(3411), + [anon_sym_elseif] = ACTIONS(3409), + [anon_sym_else] = ACTIONS(3411), + [anon_sym_match] = ACTIONS(3411), + [anon_sym_EQ_GT] = ACTIONS(3409), + [anon_sym_while] = ACTIONS(3411), + [anon_sym_for] = ACTIONS(3411), + [anon_sym_asyncfor] = ACTIONS(3409), + [anon_sym_transform] = ACTIONS(3411), + [anon_sym_filter] = ACTIONS(3411), + [anon_sym_find] = ACTIONS(3411), + [anon_sym_remove] = ACTIONS(3411), + [anon_sym_reduce] = ACTIONS(3411), + [anon_sym_select] = ACTIONS(3411), + [anon_sym_insert] = ACTIONS(3411), + [anon_sym_async] = ACTIONS(3411), + [anon_sym_PIPE] = ACTIONS(3411), + [anon_sym_table] = ACTIONS(3411), + [anon_sym_assert] = ACTIONS(3411), + [anon_sym_assert_equal] = ACTIONS(3411), + [anon_sym_download] = ACTIONS(3411), + [anon_sym_help] = ACTIONS(3411), + [anon_sym_length] = ACTIONS(3411), + [anon_sym_output] = ACTIONS(3411), + [anon_sym_output_error] = ACTIONS(3411), + [anon_sym_type] = ACTIONS(3411), + [anon_sym_append] = ACTIONS(3411), + [anon_sym_metadata] = ACTIONS(3411), + [anon_sym_move] = ACTIONS(3411), + [anon_sym_read] = ACTIONS(3411), + [anon_sym_workdir] = ACTIONS(3411), + [anon_sym_write] = ACTIONS(3411), + [anon_sym_from_json] = ACTIONS(3411), + [anon_sym_to_json] = ACTIONS(3411), + [anon_sym_to_string] = ACTIONS(3411), + [anon_sym_to_float] = ACTIONS(3411), + [anon_sym_bash] = ACTIONS(3411), + [anon_sym_fish] = ACTIONS(3411), + [anon_sym_raw] = ACTIONS(3411), + [anon_sym_sh] = ACTIONS(3411), + [anon_sym_zsh] = ACTIONS(3411), + [anon_sym_random] = ACTIONS(3411), + [anon_sym_random_boolean] = ACTIONS(3411), + [anon_sym_random_float] = ACTIONS(3411), + [anon_sym_random_integer] = ACTIONS(3411), + [anon_sym_columns] = ACTIONS(3411), + [anon_sym_rows] = ACTIONS(3411), + [anon_sym_reverse] = ACTIONS(3411), + }, + [634] = { + [sym_math_operator] = STATE(1414), + [sym_logic_operator] = STATE(1413), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3248), + [sym_string] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_elseif] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_asyncfor] = ACTIONS(3248), + [anon_sym_transform] = ACTIONS(3250), + [anon_sym_filter] = ACTIONS(3250), + [anon_sym_find] = ACTIONS(3250), + [anon_sym_remove] = ACTIONS(3250), + [anon_sym_reduce] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_insert] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_table] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_assert_equal] = ACTIONS(3250), + [anon_sym_download] = ACTIONS(3250), + [anon_sym_help] = ACTIONS(3250), + [anon_sym_length] = ACTIONS(3250), + [anon_sym_output] = ACTIONS(3250), + [anon_sym_output_error] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_append] = ACTIONS(3250), + [anon_sym_metadata] = ACTIONS(3250), + [anon_sym_move] = ACTIONS(3250), + [anon_sym_read] = ACTIONS(3250), + [anon_sym_workdir] = ACTIONS(3250), + [anon_sym_write] = ACTIONS(3250), + [anon_sym_from_json] = ACTIONS(3250), + [anon_sym_to_json] = ACTIONS(3250), + [anon_sym_to_string] = ACTIONS(3250), + [anon_sym_to_float] = ACTIONS(3250), + [anon_sym_bash] = ACTIONS(3250), + [anon_sym_fish] = ACTIONS(3250), + [anon_sym_raw] = ACTIONS(3250), + [anon_sym_sh] = ACTIONS(3250), + [anon_sym_zsh] = ACTIONS(3250), + [anon_sym_random] = ACTIONS(3250), + [anon_sym_random_boolean] = ACTIONS(3250), + [anon_sym_random_float] = ACTIONS(3250), + [anon_sym_random_integer] = ACTIONS(3250), + [anon_sym_columns] = ACTIONS(3250), + [anon_sym_rows] = ACTIONS(3250), + [anon_sym_reverse] = ACTIONS(3250), + }, + [635] = { + [sym_math_operator] = STATE(1316), + [sym_logic_operator] = STATE(1285), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_COMMA] = ACTIONS(3248), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3248), + [sym_string] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3413), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_asyncfor] = ACTIONS(3248), + [anon_sym_transform] = ACTIONS(3250), + [anon_sym_filter] = ACTIONS(3250), + [anon_sym_find] = ACTIONS(3250), + [anon_sym_remove] = ACTIONS(3250), + [anon_sym_reduce] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_insert] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_table] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_assert_equal] = ACTIONS(3250), + [anon_sym_download] = ACTIONS(3250), + [anon_sym_help] = ACTIONS(3250), + [anon_sym_length] = ACTIONS(3250), + [anon_sym_output] = ACTIONS(3250), + [anon_sym_output_error] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_append] = ACTIONS(3250), + [anon_sym_metadata] = ACTIONS(3250), + [anon_sym_move] = ACTIONS(3250), + [anon_sym_read] = ACTIONS(3250), + [anon_sym_workdir] = ACTIONS(3250), + [anon_sym_write] = ACTIONS(3250), + [anon_sym_from_json] = ACTIONS(3250), + [anon_sym_to_json] = ACTIONS(3250), + [anon_sym_to_string] = ACTIONS(3250), + [anon_sym_to_float] = ACTIONS(3250), + [anon_sym_bash] = ACTIONS(3250), + [anon_sym_fish] = ACTIONS(3250), + [anon_sym_raw] = ACTIONS(3250), + [anon_sym_sh] = ACTIONS(3250), + [anon_sym_zsh] = ACTIONS(3250), + [anon_sym_random] = ACTIONS(3250), + [anon_sym_random_boolean] = ACTIONS(3250), + [anon_sym_random_float] = ACTIONS(3250), + [anon_sym_random_integer] = ACTIONS(3250), + [anon_sym_columns] = ACTIONS(3250), + [anon_sym_rows] = ACTIONS(3250), + [anon_sym_reverse] = ACTIONS(3250), + }, + [636] = { + [ts_builtin_sym_end] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3417), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3415), + [anon_sym_RBRACE] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_LPAREN] = ACTIONS(3415), + [anon_sym_RPAREN] = ACTIONS(3415), + [anon_sym_COMMA] = ACTIONS(3415), + [sym_integer] = ACTIONS(3417), + [sym_float] = ACTIONS(3415), + [sym_string] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_RBRACK] = ACTIONS(3415), + [anon_sym_EQ] = ACTIONS(3417), + [anon_sym_COLON] = ACTIONS(3415), + [anon_sym_DOT_DOT] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_STAR] = ACTIONS(3415), + [anon_sym_SLASH] = ACTIONS(3415), + [anon_sym_PERCENT] = ACTIONS(3415), + [anon_sym_EQ_EQ] = ACTIONS(3415), + [anon_sym_BANG_EQ] = ACTIONS(3415), + [anon_sym_AMP_AMP] = ACTIONS(3415), + [anon_sym_PIPE_PIPE] = ACTIONS(3415), + [anon_sym_GT] = ACTIONS(3417), + [anon_sym_LT] = ACTIONS(3417), + [anon_sym_GT_EQ] = ACTIONS(3415), + [anon_sym_LT_EQ] = ACTIONS(3415), + [anon_sym_PLUS_EQ] = ACTIONS(3415), + [anon_sym_DASH_EQ] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_elseif] = ACTIONS(3415), + [anon_sym_else] = ACTIONS(3417), + [anon_sym_match] = ACTIONS(3417), + [anon_sym_EQ_GT] = ACTIONS(3415), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_asyncfor] = ACTIONS(3415), + [anon_sym_transform] = ACTIONS(3417), + [anon_sym_filter] = ACTIONS(3417), + [anon_sym_find] = ACTIONS(3417), + [anon_sym_remove] = ACTIONS(3417), + [anon_sym_reduce] = ACTIONS(3417), + [anon_sym_select] = ACTIONS(3417), + [anon_sym_insert] = ACTIONS(3417), + [anon_sym_async] = ACTIONS(3417), + [anon_sym_PIPE] = ACTIONS(3417), + [anon_sym_table] = ACTIONS(3417), + [anon_sym_assert] = ACTIONS(3417), + [anon_sym_assert_equal] = ACTIONS(3417), + [anon_sym_download] = ACTIONS(3417), + [anon_sym_help] = ACTIONS(3417), + [anon_sym_length] = ACTIONS(3417), + [anon_sym_output] = ACTIONS(3417), + [anon_sym_output_error] = ACTIONS(3417), + [anon_sym_type] = ACTIONS(3417), + [anon_sym_append] = ACTIONS(3417), + [anon_sym_metadata] = ACTIONS(3417), + [anon_sym_move] = ACTIONS(3417), + [anon_sym_read] = ACTIONS(3417), + [anon_sym_workdir] = ACTIONS(3417), + [anon_sym_write] = ACTIONS(3417), + [anon_sym_from_json] = ACTIONS(3417), + [anon_sym_to_json] = ACTIONS(3417), + [anon_sym_to_string] = ACTIONS(3417), + [anon_sym_to_float] = ACTIONS(3417), + [anon_sym_bash] = ACTIONS(3417), + [anon_sym_fish] = ACTIONS(3417), + [anon_sym_raw] = ACTIONS(3417), + [anon_sym_sh] = ACTIONS(3417), + [anon_sym_zsh] = ACTIONS(3417), + [anon_sym_random] = ACTIONS(3417), + [anon_sym_random_boolean] = ACTIONS(3417), + [anon_sym_random_float] = ACTIONS(3417), + [anon_sym_random_integer] = ACTIONS(3417), + [anon_sym_columns] = ACTIONS(3417), + [anon_sym_rows] = ACTIONS(3417), + [anon_sym_reverse] = ACTIONS(3417), + }, + [637] = { + [sym_else_if] = STATE(600), + [sym_else] = STATE(595), + [aux_sym_if_else_repeat1] = STATE(600), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_RPAREN] = ACTIONS(3219), + [sym_integer] = ACTIONS(3221), + [sym_float] = ACTIONS(3219), + [sym_string] = ACTIONS(3219), + [anon_sym_true] = ACTIONS(3221), + [anon_sym_false] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_EQ] = ACTIONS(3221), + [anon_sym_COLON] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_PLUS_EQ] = ACTIONS(3219), + [anon_sym_DASH_EQ] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_elseif] = ACTIONS(3311), + [anon_sym_else] = ACTIONS(3313), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_EQ_GT] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_asyncfor] = ACTIONS(3219), + [anon_sym_transform] = ACTIONS(3221), + [anon_sym_filter] = ACTIONS(3221), + [anon_sym_find] = ACTIONS(3221), + [anon_sym_remove] = ACTIONS(3221), + [anon_sym_reduce] = ACTIONS(3221), + [anon_sym_select] = ACTIONS(3221), + [anon_sym_insert] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_table] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_assert_equal] = ACTIONS(3221), + [anon_sym_download] = ACTIONS(3221), + [anon_sym_help] = ACTIONS(3221), + [anon_sym_length] = ACTIONS(3221), + [anon_sym_output] = ACTIONS(3221), + [anon_sym_output_error] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_append] = ACTIONS(3221), + [anon_sym_metadata] = ACTIONS(3221), + [anon_sym_move] = ACTIONS(3221), + [anon_sym_read] = ACTIONS(3221), + [anon_sym_workdir] = ACTIONS(3221), + [anon_sym_write] = ACTIONS(3221), + [anon_sym_from_json] = ACTIONS(3221), + [anon_sym_to_json] = ACTIONS(3221), + [anon_sym_to_string] = ACTIONS(3221), + [anon_sym_to_float] = ACTIONS(3221), + [anon_sym_bash] = ACTIONS(3221), + [anon_sym_fish] = ACTIONS(3221), + [anon_sym_raw] = ACTIONS(3221), + [anon_sym_sh] = ACTIONS(3221), + [anon_sym_zsh] = ACTIONS(3221), + [anon_sym_random] = ACTIONS(3221), + [anon_sym_random_boolean] = ACTIONS(3221), + [anon_sym_random_float] = ACTIONS(3221), + [anon_sym_random_integer] = ACTIONS(3221), + [anon_sym_columns] = ACTIONS(3221), + [anon_sym_rows] = ACTIONS(3221), + [anon_sym_reverse] = ACTIONS(3221), + }, + [638] = { + [ts_builtin_sym_end] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3421), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_RBRACE] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_RPAREN] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3419), + [sym_integer] = ACTIONS(3421), + [sym_float] = ACTIONS(3419), + [sym_string] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_RBRACK] = ACTIONS(3419), + [anon_sym_EQ] = ACTIONS(3421), + [anon_sym_COLON] = ACTIONS(3419), + [anon_sym_DOT_DOT] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(3421), + [anon_sym_STAR] = ACTIONS(3419), + [anon_sym_SLASH] = ACTIONS(3419), + [anon_sym_PERCENT] = ACTIONS(3419), + [anon_sym_EQ_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3419), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_LT_EQ] = ACTIONS(3419), + [anon_sym_PLUS_EQ] = ACTIONS(3419), + [anon_sym_DASH_EQ] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3421), + [anon_sym_elseif] = ACTIONS(3419), + [anon_sym_else] = ACTIONS(3421), + [anon_sym_match] = ACTIONS(3421), + [anon_sym_EQ_GT] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3421), + [anon_sym_for] = ACTIONS(3421), + [anon_sym_asyncfor] = ACTIONS(3419), + [anon_sym_transform] = ACTIONS(3421), + [anon_sym_filter] = ACTIONS(3421), + [anon_sym_find] = ACTIONS(3421), + [anon_sym_remove] = ACTIONS(3421), + [anon_sym_reduce] = ACTIONS(3421), + [anon_sym_select] = ACTIONS(3421), + [anon_sym_insert] = ACTIONS(3421), + [anon_sym_async] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(3421), + [anon_sym_table] = ACTIONS(3421), + [anon_sym_assert] = ACTIONS(3421), + [anon_sym_assert_equal] = ACTIONS(3421), + [anon_sym_download] = ACTIONS(3421), + [anon_sym_help] = ACTIONS(3421), + [anon_sym_length] = ACTIONS(3421), + [anon_sym_output] = ACTIONS(3421), + [anon_sym_output_error] = ACTIONS(3421), + [anon_sym_type] = ACTIONS(3421), + [anon_sym_append] = ACTIONS(3421), + [anon_sym_metadata] = ACTIONS(3421), + [anon_sym_move] = ACTIONS(3421), + [anon_sym_read] = ACTIONS(3421), + [anon_sym_workdir] = ACTIONS(3421), + [anon_sym_write] = ACTIONS(3421), + [anon_sym_from_json] = ACTIONS(3421), + [anon_sym_to_json] = ACTIONS(3421), + [anon_sym_to_string] = ACTIONS(3421), + [anon_sym_to_float] = ACTIONS(3421), + [anon_sym_bash] = ACTIONS(3421), + [anon_sym_fish] = ACTIONS(3421), + [anon_sym_raw] = ACTIONS(3421), + [anon_sym_sh] = ACTIONS(3421), + [anon_sym_zsh] = ACTIONS(3421), + [anon_sym_random] = ACTIONS(3421), + [anon_sym_random_boolean] = ACTIONS(3421), + [anon_sym_random_float] = ACTIONS(3421), + [anon_sym_random_integer] = ACTIONS(3421), + [anon_sym_columns] = ACTIONS(3421), + [anon_sym_rows] = ACTIONS(3421), + [anon_sym_reverse] = ACTIONS(3421), + }, + [639] = { + [ts_builtin_sym_end] = ACTIONS(3423), + [sym_identifier] = ACTIONS(3425), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_RBRACE] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_RPAREN] = ACTIONS(3423), + [anon_sym_COMMA] = ACTIONS(3423), + [sym_integer] = ACTIONS(3425), + [sym_float] = ACTIONS(3423), + [sym_string] = ACTIONS(3423), + [anon_sym_true] = ACTIONS(3425), + [anon_sym_false] = ACTIONS(3425), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_RBRACK] = ACTIONS(3423), + [anon_sym_EQ] = ACTIONS(3425), + [anon_sym_COLON] = ACTIONS(3423), + [anon_sym_DOT_DOT] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3425), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_STAR] = ACTIONS(3423), + [anon_sym_SLASH] = ACTIONS(3423), + [anon_sym_PERCENT] = ACTIONS(3423), + [anon_sym_EQ_EQ] = ACTIONS(3423), + [anon_sym_BANG_EQ] = ACTIONS(3423), + [anon_sym_AMP_AMP] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_GT] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_GT_EQ] = ACTIONS(3423), + [anon_sym_LT_EQ] = ACTIONS(3423), + [anon_sym_PLUS_EQ] = ACTIONS(3423), + [anon_sym_DASH_EQ] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_elseif] = ACTIONS(3423), + [anon_sym_else] = ACTIONS(3425), + [anon_sym_match] = ACTIONS(3425), + [anon_sym_EQ_GT] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_asyncfor] = ACTIONS(3423), + [anon_sym_transform] = ACTIONS(3425), + [anon_sym_filter] = ACTIONS(3425), + [anon_sym_find] = ACTIONS(3425), + [anon_sym_remove] = ACTIONS(3425), + [anon_sym_reduce] = ACTIONS(3425), + [anon_sym_select] = ACTIONS(3425), + [anon_sym_insert] = ACTIONS(3425), + [anon_sym_async] = ACTIONS(3425), + [anon_sym_PIPE] = ACTIONS(3425), + [anon_sym_table] = ACTIONS(3425), + [anon_sym_assert] = ACTIONS(3425), + [anon_sym_assert_equal] = ACTIONS(3425), + [anon_sym_download] = ACTIONS(3425), + [anon_sym_help] = ACTIONS(3425), + [anon_sym_length] = ACTIONS(3425), + [anon_sym_output] = ACTIONS(3425), + [anon_sym_output_error] = ACTIONS(3425), + [anon_sym_type] = ACTIONS(3425), + [anon_sym_append] = ACTIONS(3425), + [anon_sym_metadata] = ACTIONS(3425), + [anon_sym_move] = ACTIONS(3425), + [anon_sym_read] = ACTIONS(3425), + [anon_sym_workdir] = ACTIONS(3425), + [anon_sym_write] = ACTIONS(3425), + [anon_sym_from_json] = ACTIONS(3425), + [anon_sym_to_json] = ACTIONS(3425), + [anon_sym_to_string] = ACTIONS(3425), + [anon_sym_to_float] = ACTIONS(3425), + [anon_sym_bash] = ACTIONS(3425), + [anon_sym_fish] = ACTIONS(3425), + [anon_sym_raw] = ACTIONS(3425), + [anon_sym_sh] = ACTIONS(3425), + [anon_sym_zsh] = ACTIONS(3425), + [anon_sym_random] = ACTIONS(3425), + [anon_sym_random_boolean] = ACTIONS(3425), + [anon_sym_random_float] = ACTIONS(3425), + [anon_sym_random_integer] = ACTIONS(3425), + [anon_sym_columns] = ACTIONS(3425), + [anon_sym_rows] = ACTIONS(3425), + [anon_sym_reverse] = ACTIONS(3425), + }, + [640] = { + [sym_math_operator] = STATE(1316), + [sym_logic_operator] = STATE(1285), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3242), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [sym_integer] = ACTIONS(3242), + [sym_float] = ACTIONS(3240), + [sym_string] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_EQ] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_asyncfor] = ACTIONS(3240), + [anon_sym_transform] = ACTIONS(3242), + [anon_sym_filter] = ACTIONS(3242), + [anon_sym_find] = ACTIONS(3242), + [anon_sym_remove] = ACTIONS(3242), + [anon_sym_reduce] = ACTIONS(3242), + [anon_sym_select] = ACTIONS(3242), + [anon_sym_insert] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_table] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_assert_equal] = ACTIONS(3242), + [anon_sym_download] = ACTIONS(3242), + [anon_sym_help] = ACTIONS(3242), + [anon_sym_length] = ACTIONS(3242), + [anon_sym_output] = ACTIONS(3242), + [anon_sym_output_error] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_append] = ACTIONS(3242), + [anon_sym_metadata] = ACTIONS(3242), + [anon_sym_move] = ACTIONS(3242), + [anon_sym_read] = ACTIONS(3242), + [anon_sym_workdir] = ACTIONS(3242), + [anon_sym_write] = ACTIONS(3242), + [anon_sym_from_json] = ACTIONS(3242), + [anon_sym_to_json] = ACTIONS(3242), + [anon_sym_to_string] = ACTIONS(3242), + [anon_sym_to_float] = ACTIONS(3242), + [anon_sym_bash] = ACTIONS(3242), + [anon_sym_fish] = ACTIONS(3242), + [anon_sym_raw] = ACTIONS(3242), + [anon_sym_sh] = ACTIONS(3242), + [anon_sym_zsh] = ACTIONS(3242), + [anon_sym_random] = ACTIONS(3242), + [anon_sym_random_boolean] = ACTIONS(3242), + [anon_sym_random_float] = ACTIONS(3242), + [anon_sym_random_integer] = ACTIONS(3242), + [anon_sym_columns] = ACTIONS(3242), + [anon_sym_rows] = ACTIONS(3242), + [anon_sym_reverse] = ACTIONS(3242), + }, + [641] = { + [sym_math_operator] = STATE(1414), + [sym_logic_operator] = STATE(1413), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3248), + [sym_string] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3427), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_elseif] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_asyncfor] = ACTIONS(3248), + [anon_sym_transform] = ACTIONS(3250), + [anon_sym_filter] = ACTIONS(3250), + [anon_sym_find] = ACTIONS(3250), + [anon_sym_remove] = ACTIONS(3250), + [anon_sym_reduce] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_insert] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_table] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_assert_equal] = ACTIONS(3250), + [anon_sym_download] = ACTIONS(3250), + [anon_sym_help] = ACTIONS(3250), + [anon_sym_length] = ACTIONS(3250), + [anon_sym_output] = ACTIONS(3250), + [anon_sym_output_error] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_append] = ACTIONS(3250), + [anon_sym_metadata] = ACTIONS(3250), + [anon_sym_move] = ACTIONS(3250), + [anon_sym_read] = ACTIONS(3250), + [anon_sym_workdir] = ACTIONS(3250), + [anon_sym_write] = ACTIONS(3250), + [anon_sym_from_json] = ACTIONS(3250), + [anon_sym_to_json] = ACTIONS(3250), + [anon_sym_to_string] = ACTIONS(3250), + [anon_sym_to_float] = ACTIONS(3250), + [anon_sym_bash] = ACTIONS(3250), + [anon_sym_fish] = ACTIONS(3250), + [anon_sym_raw] = ACTIONS(3250), + [anon_sym_sh] = ACTIONS(3250), + [anon_sym_zsh] = ACTIONS(3250), + [anon_sym_random] = ACTIONS(3250), + [anon_sym_random_boolean] = ACTIONS(3250), + [anon_sym_random_float] = ACTIONS(3250), + [anon_sym_random_integer] = ACTIONS(3250), + [anon_sym_columns] = ACTIONS(3250), + [anon_sym_rows] = ACTIONS(3250), + [anon_sym_reverse] = ACTIONS(3250), + }, + [642] = { + [sym_math_operator] = STATE(1316), + [sym_logic_operator] = STATE(1285), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3235), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3429), + [sym_integer] = ACTIONS(3235), + [sym_float] = ACTIONS(3233), + [sym_string] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_RBRACK] = ACTIONS(3233), + [anon_sym_EQ] = ACTIONS(3235), + [anon_sym_COLON] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3233), + [anon_sym_DASH_EQ] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_asyncfor] = ACTIONS(3233), + [anon_sym_transform] = ACTIONS(3235), + [anon_sym_filter] = ACTIONS(3235), + [anon_sym_find] = ACTIONS(3235), + [anon_sym_remove] = ACTIONS(3235), + [anon_sym_reduce] = ACTIONS(3235), + [anon_sym_select] = ACTIONS(3235), + [anon_sym_insert] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_table] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_assert_equal] = ACTIONS(3235), + [anon_sym_download] = ACTIONS(3235), + [anon_sym_help] = ACTIONS(3235), + [anon_sym_length] = ACTIONS(3235), + [anon_sym_output] = ACTIONS(3235), + [anon_sym_output_error] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_append] = ACTIONS(3235), + [anon_sym_metadata] = ACTIONS(3235), + [anon_sym_move] = ACTIONS(3235), + [anon_sym_read] = ACTIONS(3235), + [anon_sym_workdir] = ACTIONS(3235), + [anon_sym_write] = ACTIONS(3235), + [anon_sym_from_json] = ACTIONS(3235), + [anon_sym_to_json] = ACTIONS(3235), + [anon_sym_to_string] = ACTIONS(3235), + [anon_sym_to_float] = ACTIONS(3235), + [anon_sym_bash] = ACTIONS(3235), + [anon_sym_fish] = ACTIONS(3235), + [anon_sym_raw] = ACTIONS(3235), + [anon_sym_sh] = ACTIONS(3235), + [anon_sym_zsh] = ACTIONS(3235), + [anon_sym_random] = ACTIONS(3235), + [anon_sym_random_boolean] = ACTIONS(3235), + [anon_sym_random_float] = ACTIONS(3235), + [anon_sym_random_integer] = ACTIONS(3235), + [anon_sym_columns] = ACTIONS(3235), + [anon_sym_rows] = ACTIONS(3235), + [anon_sym_reverse] = ACTIONS(3235), + }, + [643] = { + [sym_math_operator] = STATE(1316), + [sym_logic_operator] = STATE(1285), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_COMMA] = ACTIONS(3248), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3248), + [sym_string] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_asyncfor] = ACTIONS(3248), + [anon_sym_transform] = ACTIONS(3250), + [anon_sym_filter] = ACTIONS(3250), + [anon_sym_find] = ACTIONS(3250), + [anon_sym_remove] = ACTIONS(3250), + [anon_sym_reduce] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_insert] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_table] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_assert_equal] = ACTIONS(3250), + [anon_sym_download] = ACTIONS(3250), + [anon_sym_help] = ACTIONS(3250), + [anon_sym_length] = ACTIONS(3250), + [anon_sym_output] = ACTIONS(3250), + [anon_sym_output_error] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_append] = ACTIONS(3250), + [anon_sym_metadata] = ACTIONS(3250), + [anon_sym_move] = ACTIONS(3250), + [anon_sym_read] = ACTIONS(3250), + [anon_sym_workdir] = ACTIONS(3250), + [anon_sym_write] = ACTIONS(3250), + [anon_sym_from_json] = ACTIONS(3250), + [anon_sym_to_json] = ACTIONS(3250), + [anon_sym_to_string] = ACTIONS(3250), + [anon_sym_to_float] = ACTIONS(3250), + [anon_sym_bash] = ACTIONS(3250), + [anon_sym_fish] = ACTIONS(3250), + [anon_sym_raw] = ACTIONS(3250), + [anon_sym_sh] = ACTIONS(3250), + [anon_sym_zsh] = ACTIONS(3250), + [anon_sym_random] = ACTIONS(3250), + [anon_sym_random_boolean] = ACTIONS(3250), + [anon_sym_random_float] = ACTIONS(3250), + [anon_sym_random_integer] = ACTIONS(3250), + [anon_sym_columns] = ACTIONS(3250), + [anon_sym_rows] = ACTIONS(3250), + [anon_sym_reverse] = ACTIONS(3250), + }, + [644] = { + [sym_math_operator] = STATE(1316), + [sym_logic_operator] = STATE(1285), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_RPAREN] = ACTIONS(3244), + [anon_sym_COMMA] = ACTIONS(3244), + [sym_integer] = ACTIONS(3246), + [sym_float] = ACTIONS(3244), + [sym_string] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_RBRACK] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3246), + [anon_sym_COLON] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3244), + [anon_sym_DASH_EQ] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_asyncfor] = ACTIONS(3244), + [anon_sym_transform] = ACTIONS(3246), + [anon_sym_filter] = ACTIONS(3246), + [anon_sym_find] = ACTIONS(3246), + [anon_sym_remove] = ACTIONS(3246), + [anon_sym_reduce] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_insert] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_table] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_assert_equal] = ACTIONS(3246), + [anon_sym_download] = ACTIONS(3246), + [anon_sym_help] = ACTIONS(3246), + [anon_sym_length] = ACTIONS(3246), + [anon_sym_output] = ACTIONS(3246), + [anon_sym_output_error] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_append] = ACTIONS(3246), + [anon_sym_metadata] = ACTIONS(3246), + [anon_sym_move] = ACTIONS(3246), + [anon_sym_read] = ACTIONS(3246), + [anon_sym_workdir] = ACTIONS(3246), + [anon_sym_write] = ACTIONS(3246), + [anon_sym_from_json] = ACTIONS(3246), + [anon_sym_to_json] = ACTIONS(3246), + [anon_sym_to_string] = ACTIONS(3246), + [anon_sym_to_float] = ACTIONS(3246), + [anon_sym_bash] = ACTIONS(3246), + [anon_sym_fish] = ACTIONS(3246), + [anon_sym_raw] = ACTIONS(3246), + [anon_sym_sh] = ACTIONS(3246), + [anon_sym_zsh] = ACTIONS(3246), + [anon_sym_random] = ACTIONS(3246), + [anon_sym_random_boolean] = ACTIONS(3246), + [anon_sym_random_float] = ACTIONS(3246), + [anon_sym_random_integer] = ACTIONS(3246), + [anon_sym_columns] = ACTIONS(3246), + [anon_sym_rows] = ACTIONS(3246), + [anon_sym_reverse] = ACTIONS(3246), + }, + [645] = { + [ts_builtin_sym_end] = ACTIONS(3432), + [sym_identifier] = ACTIONS(3434), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3432), + [anon_sym_RBRACE] = ACTIONS(3432), + [anon_sym_SEMI] = ACTIONS(3432), + [anon_sym_LPAREN] = ACTIONS(3432), + [anon_sym_RPAREN] = ACTIONS(3432), + [anon_sym_COMMA] = ACTIONS(3432), + [sym_integer] = ACTIONS(3434), + [sym_float] = ACTIONS(3432), + [sym_string] = ACTIONS(3432), + [anon_sym_true] = ACTIONS(3434), + [anon_sym_false] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3432), + [anon_sym_RBRACK] = ACTIONS(3432), + [anon_sym_EQ] = ACTIONS(3434), + [anon_sym_COLON] = ACTIONS(3432), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_STAR] = ACTIONS(3432), + [anon_sym_SLASH] = ACTIONS(3432), + [anon_sym_PERCENT] = ACTIONS(3432), + [anon_sym_EQ_EQ] = ACTIONS(3432), + [anon_sym_BANG_EQ] = ACTIONS(3432), + [anon_sym_AMP_AMP] = ACTIONS(3432), + [anon_sym_PIPE_PIPE] = ACTIONS(3432), + [anon_sym_GT] = ACTIONS(3434), + [anon_sym_LT] = ACTIONS(3434), + [anon_sym_GT_EQ] = ACTIONS(3432), + [anon_sym_LT_EQ] = ACTIONS(3432), + [anon_sym_PLUS_EQ] = ACTIONS(3432), + [anon_sym_DASH_EQ] = ACTIONS(3432), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_elseif] = ACTIONS(3432), + [anon_sym_else] = ACTIONS(3434), + [anon_sym_match] = ACTIONS(3434), + [anon_sym_EQ_GT] = ACTIONS(3432), + [anon_sym_while] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_asyncfor] = ACTIONS(3432), + [anon_sym_transform] = ACTIONS(3434), + [anon_sym_filter] = ACTIONS(3434), + [anon_sym_find] = ACTIONS(3434), + [anon_sym_remove] = ACTIONS(3434), + [anon_sym_reduce] = ACTIONS(3434), + [anon_sym_select] = ACTIONS(3434), + [anon_sym_insert] = ACTIONS(3434), + [anon_sym_async] = ACTIONS(3434), + [anon_sym_PIPE] = ACTIONS(3434), + [anon_sym_table] = ACTIONS(3434), + [anon_sym_assert] = ACTIONS(3434), + [anon_sym_assert_equal] = ACTIONS(3434), + [anon_sym_download] = ACTIONS(3434), + [anon_sym_help] = ACTIONS(3434), + [anon_sym_length] = ACTIONS(3434), + [anon_sym_output] = ACTIONS(3434), + [anon_sym_output_error] = ACTIONS(3434), + [anon_sym_type] = ACTIONS(3434), + [anon_sym_append] = ACTIONS(3434), + [anon_sym_metadata] = ACTIONS(3434), + [anon_sym_move] = ACTIONS(3434), + [anon_sym_read] = ACTIONS(3434), + [anon_sym_workdir] = ACTIONS(3434), + [anon_sym_write] = ACTIONS(3434), + [anon_sym_from_json] = ACTIONS(3434), + [anon_sym_to_json] = ACTIONS(3434), + [anon_sym_to_string] = ACTIONS(3434), + [anon_sym_to_float] = ACTIONS(3434), + [anon_sym_bash] = ACTIONS(3434), + [anon_sym_fish] = ACTIONS(3434), + [anon_sym_raw] = ACTIONS(3434), + [anon_sym_sh] = ACTIONS(3434), + [anon_sym_zsh] = ACTIONS(3434), + [anon_sym_random] = ACTIONS(3434), + [anon_sym_random_boolean] = ACTIONS(3434), + [anon_sym_random_float] = ACTIONS(3434), + [anon_sym_random_integer] = ACTIONS(3434), + [anon_sym_columns] = ACTIONS(3434), + [anon_sym_rows] = ACTIONS(3434), + [anon_sym_reverse] = ACTIONS(3434), + }, + [646] = { + [sym_math_operator] = STATE(1414), + [sym_logic_operator] = STATE(1413), + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3283), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_RPAREN] = ACTIONS(3281), + [sym_integer] = ACTIONS(3283), + [sym_float] = ACTIONS(3281), + [sym_string] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3281), + [anon_sym_DASH_EQ] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_elseif] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_EQ_GT] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_asyncfor] = ACTIONS(3281), + [anon_sym_transform] = ACTIONS(3283), + [anon_sym_filter] = ACTIONS(3283), + [anon_sym_find] = ACTIONS(3283), + [anon_sym_remove] = ACTIONS(3283), + [anon_sym_reduce] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_insert] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_table] = ACTIONS(3283), + [anon_sym_assert] = ACTIONS(3283), + [anon_sym_assert_equal] = ACTIONS(3283), + [anon_sym_download] = ACTIONS(3283), + [anon_sym_help] = ACTIONS(3283), + [anon_sym_length] = ACTIONS(3283), + [anon_sym_output] = ACTIONS(3283), + [anon_sym_output_error] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_append] = ACTIONS(3283), + [anon_sym_metadata] = ACTIONS(3283), + [anon_sym_move] = ACTIONS(3283), + [anon_sym_read] = ACTIONS(3283), + [anon_sym_workdir] = ACTIONS(3283), + [anon_sym_write] = ACTIONS(3283), + [anon_sym_from_json] = ACTIONS(3283), + [anon_sym_to_json] = ACTIONS(3283), + [anon_sym_to_string] = ACTIONS(3283), + [anon_sym_to_float] = ACTIONS(3283), + [anon_sym_bash] = ACTIONS(3283), + [anon_sym_fish] = ACTIONS(3283), + [anon_sym_raw] = ACTIONS(3283), + [anon_sym_sh] = ACTIONS(3283), + [anon_sym_zsh] = ACTIONS(3283), + [anon_sym_random] = ACTIONS(3283), + [anon_sym_random_boolean] = ACTIONS(3283), + [anon_sym_random_float] = ACTIONS(3283), + [anon_sym_random_integer] = ACTIONS(3283), + [anon_sym_columns] = ACTIONS(3283), + [anon_sym_rows] = ACTIONS(3283), + [anon_sym_reverse] = ACTIONS(3283), + }, + [647] = { + [sym_else_if] = STATE(613), + [sym_else] = STATE(792), + [aux_sym_if_else_repeat1] = STATE(613), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_RPAREN] = ACTIONS(3219), + [anon_sym_COMMA] = ACTIONS(3219), + [sym_integer] = ACTIONS(3221), + [sym_float] = ACTIONS(3219), + [sym_string] = ACTIONS(3219), + [anon_sym_true] = ACTIONS(3221), + [anon_sym_false] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_RBRACK] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_elseif] = ACTIONS(3347), + [anon_sym_else] = ACTIONS(3349), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_EQ_GT] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_asyncfor] = ACTIONS(3219), + [anon_sym_transform] = ACTIONS(3221), + [anon_sym_filter] = ACTIONS(3221), + [anon_sym_find] = ACTIONS(3221), + [anon_sym_remove] = ACTIONS(3221), + [anon_sym_reduce] = ACTIONS(3221), + [anon_sym_select] = ACTIONS(3221), + [anon_sym_insert] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_table] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_assert_equal] = ACTIONS(3221), + [anon_sym_download] = ACTIONS(3221), + [anon_sym_help] = ACTIONS(3221), + [anon_sym_length] = ACTIONS(3221), + [anon_sym_output] = ACTIONS(3221), + [anon_sym_output_error] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_append] = ACTIONS(3221), + [anon_sym_metadata] = ACTIONS(3221), + [anon_sym_move] = ACTIONS(3221), + [anon_sym_read] = ACTIONS(3221), + [anon_sym_workdir] = ACTIONS(3221), + [anon_sym_write] = ACTIONS(3221), + [anon_sym_from_json] = ACTIONS(3221), + [anon_sym_to_json] = ACTIONS(3221), + [anon_sym_to_string] = ACTIONS(3221), + [anon_sym_to_float] = ACTIONS(3221), + [anon_sym_bash] = ACTIONS(3221), + [anon_sym_fish] = ACTIONS(3221), + [anon_sym_raw] = ACTIONS(3221), + [anon_sym_sh] = ACTIONS(3221), + [anon_sym_zsh] = ACTIONS(3221), + [anon_sym_random] = ACTIONS(3221), + [anon_sym_random_boolean] = ACTIONS(3221), + [anon_sym_random_float] = ACTIONS(3221), + [anon_sym_random_integer] = ACTIONS(3221), + [anon_sym_columns] = ACTIONS(3221), + [anon_sym_rows] = ACTIONS(3221), + [anon_sym_reverse] = ACTIONS(3221), + }, + [648] = { + [sym_else_if] = STATE(652), + [sym_else] = STATE(857), + [aux_sym_if_else_repeat1] = STATE(652), + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [anon_sym_COMMA] = ACTIONS(3229), + [sym_integer] = ACTIONS(3231), + [sym_float] = ACTIONS(3229), + [sym_string] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_RBRACK] = ACTIONS(3229), + [anon_sym_COLON] = ACTIONS(3229), + [anon_sym_DOT_DOT] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_elseif] = ACTIONS(3347), + [anon_sym_else] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_asyncfor] = ACTIONS(3229), + [anon_sym_transform] = ACTIONS(3231), + [anon_sym_filter] = ACTIONS(3231), + [anon_sym_find] = ACTIONS(3231), + [anon_sym_remove] = ACTIONS(3231), + [anon_sym_reduce] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_insert] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_table] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_assert_equal] = ACTIONS(3231), + [anon_sym_download] = ACTIONS(3231), + [anon_sym_help] = ACTIONS(3231), + [anon_sym_length] = ACTIONS(3231), + [anon_sym_output] = ACTIONS(3231), + [anon_sym_output_error] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_append] = ACTIONS(3231), + [anon_sym_metadata] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_read] = ACTIONS(3231), + [anon_sym_workdir] = ACTIONS(3231), + [anon_sym_write] = ACTIONS(3231), + [anon_sym_from_json] = ACTIONS(3231), + [anon_sym_to_json] = ACTIONS(3231), + [anon_sym_to_string] = ACTIONS(3231), + [anon_sym_to_float] = ACTIONS(3231), + [anon_sym_bash] = ACTIONS(3231), + [anon_sym_fish] = ACTIONS(3231), + [anon_sym_raw] = ACTIONS(3231), + [anon_sym_sh] = ACTIONS(3231), + [anon_sym_zsh] = ACTIONS(3231), + [anon_sym_random] = ACTIONS(3231), + [anon_sym_random_boolean] = ACTIONS(3231), + [anon_sym_random_float] = ACTIONS(3231), + [anon_sym_random_integer] = ACTIONS(3231), + [anon_sym_columns] = ACTIONS(3231), + [anon_sym_rows] = ACTIONS(3231), + [anon_sym_reverse] = ACTIONS(3231), + }, + [649] = { + [sym_expression] = STATE(955), + [sym__expression_kind] = STATE(986), + [aux_sym__expression_list] = STATE(669), + [sym_value] = STATE(986), + [sym_boolean] = STATE(981), + [sym_list] = STATE(981), + [sym_map] = STATE(981), + [sym_index] = STATE(986), + [sym_math] = STATE(986), + [sym_logic] = STATE(986), + [sym_identifier_list] = STATE(1920), + [sym_table] = STATE(981), + [sym_function] = STATE(981), + [sym_function_call] = STATE(986), + [sym__context_defined_function] = STATE(990), + [sym_built_in_function] = STATE(990), + [sym__built_in_function_name] = STATE(673), + [sym_identifier] = ACTIONS(3436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_COMMA] = ACTIONS(2443), + [sym_integer] = ACTIONS(3442), + [sym_float] = ACTIONS(3444), + [sym_string] = ACTIONS(3444), + [anon_sym_true] = ACTIONS(3446), + [anon_sym_false] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_EQ] = ACTIONS(2447), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_PLUS_EQ] = ACTIONS(2443), + [anon_sym_DASH_EQ] = ACTIONS(2443), + [anon_sym_EQ_GT] = ACTIONS(3450), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3452), + [anon_sym_assert] = ACTIONS(3454), + [anon_sym_assert_equal] = ACTIONS(3454), + [anon_sym_download] = ACTIONS(3454), + [anon_sym_help] = ACTIONS(3454), + [anon_sym_length] = ACTIONS(3454), + [anon_sym_output] = ACTIONS(3454), + [anon_sym_output_error] = ACTIONS(3454), + [anon_sym_type] = ACTIONS(3454), + [anon_sym_append] = ACTIONS(3454), + [anon_sym_metadata] = ACTIONS(3454), + [anon_sym_move] = ACTIONS(3454), + [anon_sym_read] = ACTIONS(3454), + [anon_sym_workdir] = ACTIONS(3454), + [anon_sym_write] = ACTIONS(3454), + [anon_sym_from_json] = ACTIONS(3454), + [anon_sym_to_json] = ACTIONS(3454), + [anon_sym_to_string] = ACTIONS(3454), + [anon_sym_to_float] = ACTIONS(3454), + [anon_sym_bash] = ACTIONS(3454), + [anon_sym_fish] = ACTIONS(3454), + [anon_sym_raw] = ACTIONS(3454), + [anon_sym_sh] = ACTIONS(3454), + [anon_sym_zsh] = ACTIONS(3454), + [anon_sym_random] = ACTIONS(3454), + [anon_sym_random_boolean] = ACTIONS(3454), + [anon_sym_random_float] = ACTIONS(3454), + [anon_sym_random_integer] = ACTIONS(3454), + [anon_sym_columns] = ACTIONS(3454), + [anon_sym_rows] = ACTIONS(3454), + [anon_sym_reverse] = ACTIONS(3454), + }, + [650] = { + [sym_math_operator] = STATE(1362), + [sym_logic_operator] = STATE(1363), + [ts_builtin_sym_end] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3264), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [sym_integer] = ACTIONS(3264), + [sym_float] = ACTIONS(3262), + [sym_string] = ACTIONS(3262), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_RBRACK] = ACTIONS(3262), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_DOT_DOT] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_elseif] = ACTIONS(3262), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_match] = ACTIONS(3264), + [anon_sym_EQ_GT] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_asyncfor] = ACTIONS(3262), + [anon_sym_transform] = ACTIONS(3264), + [anon_sym_filter] = ACTIONS(3264), + [anon_sym_find] = ACTIONS(3264), + [anon_sym_remove] = ACTIONS(3264), + [anon_sym_reduce] = ACTIONS(3264), + [anon_sym_select] = ACTIONS(3264), + [anon_sym_insert] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_table] = ACTIONS(3264), + [anon_sym_assert] = ACTIONS(3264), + [anon_sym_assert_equal] = ACTIONS(3264), + [anon_sym_download] = ACTIONS(3264), + [anon_sym_help] = ACTIONS(3264), + [anon_sym_length] = ACTIONS(3264), + [anon_sym_output] = ACTIONS(3264), + [anon_sym_output_error] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_append] = ACTIONS(3264), + [anon_sym_metadata] = ACTIONS(3264), + [anon_sym_move] = ACTIONS(3264), + [anon_sym_read] = ACTIONS(3264), + [anon_sym_workdir] = ACTIONS(3264), + [anon_sym_write] = ACTIONS(3264), + [anon_sym_from_json] = ACTIONS(3264), + [anon_sym_to_json] = ACTIONS(3264), + [anon_sym_to_string] = ACTIONS(3264), + [anon_sym_to_float] = ACTIONS(3264), + [anon_sym_bash] = ACTIONS(3264), + [anon_sym_fish] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3264), + [anon_sym_sh] = ACTIONS(3264), + [anon_sym_zsh] = ACTIONS(3264), + [anon_sym_random] = ACTIONS(3264), + [anon_sym_random_boolean] = ACTIONS(3264), + [anon_sym_random_float] = ACTIONS(3264), + [anon_sym_random_integer] = ACTIONS(3264), + [anon_sym_columns] = ACTIONS(3264), + [anon_sym_rows] = ACTIONS(3264), + [anon_sym_reverse] = ACTIONS(3264), + }, + [651] = { + [sym_math_operator] = STATE(1261), + [sym_logic_operator] = STATE(1219), + [ts_builtin_sym_end] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3264), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [sym_integer] = ACTIONS(3264), + [sym_float] = ACTIONS(3262), + [sym_string] = ACTIONS(3262), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_RBRACK] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_PLUS_EQ] = ACTIONS(3262), + [anon_sym_DASH_EQ] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_match] = ACTIONS(3264), + [anon_sym_EQ_GT] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_asyncfor] = ACTIONS(3262), + [anon_sym_transform] = ACTIONS(3264), + [anon_sym_filter] = ACTIONS(3264), + [anon_sym_find] = ACTIONS(3264), + [anon_sym_remove] = ACTIONS(3264), + [anon_sym_reduce] = ACTIONS(3264), + [anon_sym_select] = ACTIONS(3264), + [anon_sym_insert] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_table] = ACTIONS(3264), + [anon_sym_assert] = ACTIONS(3264), + [anon_sym_assert_equal] = ACTIONS(3264), + [anon_sym_download] = ACTIONS(3264), + [anon_sym_help] = ACTIONS(3264), + [anon_sym_length] = ACTIONS(3264), + [anon_sym_output] = ACTIONS(3264), + [anon_sym_output_error] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_append] = ACTIONS(3264), + [anon_sym_metadata] = ACTIONS(3264), + [anon_sym_move] = ACTIONS(3264), + [anon_sym_read] = ACTIONS(3264), + [anon_sym_workdir] = ACTIONS(3264), + [anon_sym_write] = ACTIONS(3264), + [anon_sym_from_json] = ACTIONS(3264), + [anon_sym_to_json] = ACTIONS(3264), + [anon_sym_to_string] = ACTIONS(3264), + [anon_sym_to_float] = ACTIONS(3264), + [anon_sym_bash] = ACTIONS(3264), + [anon_sym_fish] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3264), + [anon_sym_sh] = ACTIONS(3264), + [anon_sym_zsh] = ACTIONS(3264), + [anon_sym_random] = ACTIONS(3264), + [anon_sym_random_boolean] = ACTIONS(3264), + [anon_sym_random_float] = ACTIONS(3264), + [anon_sym_random_integer] = ACTIONS(3264), + [anon_sym_columns] = ACTIONS(3264), + [anon_sym_rows] = ACTIONS(3264), + [anon_sym_reverse] = ACTIONS(3264), + }, + [652] = { + [sym_else_if] = STATE(652), + [aux_sym_if_else_repeat1] = STATE(652), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_RPAREN] = ACTIONS(3268), + [anon_sym_COMMA] = ACTIONS(3268), + [sym_integer] = ACTIONS(3270), + [sym_float] = ACTIONS(3268), + [sym_string] = ACTIONS(3268), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_RBRACK] = ACTIONS(3268), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_PIPE_PIPE] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT_EQ] = ACTIONS(3268), + [anon_sym_LT_EQ] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_elseif] = ACTIONS(3456), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_match] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_asyncfor] = ACTIONS(3268), + [anon_sym_transform] = ACTIONS(3270), + [anon_sym_filter] = ACTIONS(3270), + [anon_sym_find] = ACTIONS(3270), + [anon_sym_remove] = ACTIONS(3270), + [anon_sym_reduce] = ACTIONS(3270), + [anon_sym_select] = ACTIONS(3270), + [anon_sym_insert] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3270), + [anon_sym_table] = ACTIONS(3270), + [anon_sym_assert] = ACTIONS(3270), + [anon_sym_assert_equal] = ACTIONS(3270), + [anon_sym_download] = ACTIONS(3270), + [anon_sym_help] = ACTIONS(3270), + [anon_sym_length] = ACTIONS(3270), + [anon_sym_output] = ACTIONS(3270), + [anon_sym_output_error] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_append] = ACTIONS(3270), + [anon_sym_metadata] = ACTIONS(3270), + [anon_sym_move] = ACTIONS(3270), + [anon_sym_read] = ACTIONS(3270), + [anon_sym_workdir] = ACTIONS(3270), + [anon_sym_write] = ACTIONS(3270), + [anon_sym_from_json] = ACTIONS(3270), + [anon_sym_to_json] = ACTIONS(3270), + [anon_sym_to_string] = ACTIONS(3270), + [anon_sym_to_float] = ACTIONS(3270), + [anon_sym_bash] = ACTIONS(3270), + [anon_sym_fish] = ACTIONS(3270), + [anon_sym_raw] = ACTIONS(3270), + [anon_sym_sh] = ACTIONS(3270), + [anon_sym_zsh] = ACTIONS(3270), + [anon_sym_random] = ACTIONS(3270), + [anon_sym_random_boolean] = ACTIONS(3270), + [anon_sym_random_float] = ACTIONS(3270), + [anon_sym_random_integer] = ACTIONS(3270), + [anon_sym_columns] = ACTIONS(3270), + [anon_sym_rows] = ACTIONS(3270), + [anon_sym_reverse] = ACTIONS(3270), + }, + [653] = { + [sym_else_if] = STATE(660), + [sym_else] = STATE(878), + [aux_sym_if_else_repeat1] = STATE(660), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_RPAREN] = ACTIONS(3219), + [anon_sym_COMMA] = ACTIONS(3219), + [sym_integer] = ACTIONS(3221), + [sym_float] = ACTIONS(3219), + [sym_string] = ACTIONS(3219), + [anon_sym_true] = ACTIONS(3221), + [anon_sym_false] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_RBRACK] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_elseif] = ACTIONS(3459), + [anon_sym_else] = ACTIONS(3461), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_EQ_GT] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_asyncfor] = ACTIONS(3219), + [anon_sym_transform] = ACTIONS(3221), + [anon_sym_filter] = ACTIONS(3221), + [anon_sym_find] = ACTIONS(3221), + [anon_sym_remove] = ACTIONS(3221), + [anon_sym_reduce] = ACTIONS(3221), + [anon_sym_select] = ACTIONS(3221), + [anon_sym_insert] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_table] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_assert_equal] = ACTIONS(3221), + [anon_sym_download] = ACTIONS(3221), + [anon_sym_help] = ACTIONS(3221), + [anon_sym_length] = ACTIONS(3221), + [anon_sym_output] = ACTIONS(3221), + [anon_sym_output_error] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_append] = ACTIONS(3221), + [anon_sym_metadata] = ACTIONS(3221), + [anon_sym_move] = ACTIONS(3221), + [anon_sym_read] = ACTIONS(3221), + [anon_sym_workdir] = ACTIONS(3221), + [anon_sym_write] = ACTIONS(3221), + [anon_sym_from_json] = ACTIONS(3221), + [anon_sym_to_json] = ACTIONS(3221), + [anon_sym_to_string] = ACTIONS(3221), + [anon_sym_to_float] = ACTIONS(3221), + [anon_sym_bash] = ACTIONS(3221), + [anon_sym_fish] = ACTIONS(3221), + [anon_sym_raw] = ACTIONS(3221), + [anon_sym_sh] = ACTIONS(3221), + [anon_sym_zsh] = ACTIONS(3221), + [anon_sym_random] = ACTIONS(3221), + [anon_sym_random_boolean] = ACTIONS(3221), + [anon_sym_random_float] = ACTIONS(3221), + [anon_sym_random_integer] = ACTIONS(3221), + [anon_sym_columns] = ACTIONS(3221), + [anon_sym_rows] = ACTIONS(3221), + [anon_sym_reverse] = ACTIONS(3221), + }, + [654] = { + [sym_else_if] = STATE(677), + [sym_else] = STATE(792), + [aux_sym_if_else_repeat1] = STATE(677), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_RPAREN] = ACTIONS(3219), + [anon_sym_COMMA] = ACTIONS(3219), + [sym_integer] = ACTIONS(3221), + [sym_float] = ACTIONS(3219), + [sym_string] = ACTIONS(3219), + [anon_sym_true] = ACTIONS(3221), + [anon_sym_false] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_RBRACK] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_elseif] = ACTIONS(3459), + [anon_sym_else] = ACTIONS(3463), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_EQ_GT] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_asyncfor] = ACTIONS(3219), + [anon_sym_transform] = ACTIONS(3221), + [anon_sym_filter] = ACTIONS(3221), + [anon_sym_find] = ACTIONS(3221), + [anon_sym_remove] = ACTIONS(3221), + [anon_sym_reduce] = ACTIONS(3221), + [anon_sym_select] = ACTIONS(3221), + [anon_sym_insert] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_table] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_assert_equal] = ACTIONS(3221), + [anon_sym_download] = ACTIONS(3221), + [anon_sym_help] = ACTIONS(3221), + [anon_sym_length] = ACTIONS(3221), + [anon_sym_output] = ACTIONS(3221), + [anon_sym_output_error] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_append] = ACTIONS(3221), + [anon_sym_metadata] = ACTIONS(3221), + [anon_sym_move] = ACTIONS(3221), + [anon_sym_read] = ACTIONS(3221), + [anon_sym_workdir] = ACTIONS(3221), + [anon_sym_write] = ACTIONS(3221), + [anon_sym_from_json] = ACTIONS(3221), + [anon_sym_to_json] = ACTIONS(3221), + [anon_sym_to_string] = ACTIONS(3221), + [anon_sym_to_float] = ACTIONS(3221), + [anon_sym_bash] = ACTIONS(3221), + [anon_sym_fish] = ACTIONS(3221), + [anon_sym_raw] = ACTIONS(3221), + [anon_sym_sh] = ACTIONS(3221), + [anon_sym_zsh] = ACTIONS(3221), + [anon_sym_random] = ACTIONS(3221), + [anon_sym_random_boolean] = ACTIONS(3221), + [anon_sym_random_float] = ACTIONS(3221), + [anon_sym_random_integer] = ACTIONS(3221), + [anon_sym_columns] = ACTIONS(3221), + [anon_sym_rows] = ACTIONS(3221), + [anon_sym_reverse] = ACTIONS(3221), + }, + [655] = { + [sym_assignment_operator] = STATE(549), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_DOT_DOT] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_elseif] = ACTIONS(2435), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), + }, + [656] = { + [sym_else_if] = STATE(656), + [aux_sym_if_else_repeat1] = STATE(656), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_RPAREN] = ACTIONS(3268), + [sym_integer] = ACTIONS(3270), + [sym_float] = ACTIONS(3268), + [sym_string] = ACTIONS(3268), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_PIPE_PIPE] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT_EQ] = ACTIONS(3268), + [anon_sym_LT_EQ] = ACTIONS(3268), + [anon_sym_PLUS_EQ] = ACTIONS(3268), + [anon_sym_DASH_EQ] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_elseif] = ACTIONS(3465), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_match] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_asyncfor] = ACTIONS(3268), + [anon_sym_transform] = ACTIONS(3270), + [anon_sym_filter] = ACTIONS(3270), + [anon_sym_find] = ACTIONS(3270), + [anon_sym_remove] = ACTIONS(3270), + [anon_sym_reduce] = ACTIONS(3270), + [anon_sym_select] = ACTIONS(3270), + [anon_sym_insert] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3270), + [anon_sym_table] = ACTIONS(3270), + [anon_sym_assert] = ACTIONS(3270), + [anon_sym_assert_equal] = ACTIONS(3270), + [anon_sym_download] = ACTIONS(3270), + [anon_sym_help] = ACTIONS(3270), + [anon_sym_length] = ACTIONS(3270), + [anon_sym_output] = ACTIONS(3270), + [anon_sym_output_error] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_append] = ACTIONS(3270), + [anon_sym_metadata] = ACTIONS(3270), + [anon_sym_move] = ACTIONS(3270), + [anon_sym_read] = ACTIONS(3270), + [anon_sym_workdir] = ACTIONS(3270), + [anon_sym_write] = ACTIONS(3270), + [anon_sym_from_json] = ACTIONS(3270), + [anon_sym_to_json] = ACTIONS(3270), + [anon_sym_to_string] = ACTIONS(3270), + [anon_sym_to_float] = ACTIONS(3270), + [anon_sym_bash] = ACTIONS(3270), + [anon_sym_fish] = ACTIONS(3270), + [anon_sym_raw] = ACTIONS(3270), + [anon_sym_sh] = ACTIONS(3270), + [anon_sym_zsh] = ACTIONS(3270), + [anon_sym_random] = ACTIONS(3270), + [anon_sym_random_boolean] = ACTIONS(3270), + [anon_sym_random_float] = ACTIONS(3270), + [anon_sym_random_integer] = ACTIONS(3270), + [anon_sym_columns] = ACTIONS(3270), + [anon_sym_rows] = ACTIONS(3270), + [anon_sym_reverse] = ACTIONS(3270), + }, + [657] = { + [sym_assignment_operator] = STATE(534), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_RBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_DOT_DOT] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), + }, + [658] = { + [sym_math_operator] = STATE(1138), + [sym_logic_operator] = STATE(1277), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3242), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [sym_integer] = ACTIONS(3242), + [sym_float] = ACTIONS(3240), + [sym_string] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_EQ] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_elseif] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_asyncfor] = ACTIONS(3240), + [anon_sym_transform] = ACTIONS(3242), + [anon_sym_filter] = ACTIONS(3242), + [anon_sym_find] = ACTIONS(3242), + [anon_sym_remove] = ACTIONS(3242), + [anon_sym_reduce] = ACTIONS(3242), + [anon_sym_select] = ACTIONS(3242), + [anon_sym_insert] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_table] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_assert_equal] = ACTIONS(3242), + [anon_sym_download] = ACTIONS(3242), + [anon_sym_help] = ACTIONS(3242), + [anon_sym_length] = ACTIONS(3242), + [anon_sym_output] = ACTIONS(3242), + [anon_sym_output_error] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_append] = ACTIONS(3242), + [anon_sym_metadata] = ACTIONS(3242), + [anon_sym_move] = ACTIONS(3242), + [anon_sym_read] = ACTIONS(3242), + [anon_sym_workdir] = ACTIONS(3242), + [anon_sym_write] = ACTIONS(3242), + [anon_sym_from_json] = ACTIONS(3242), + [anon_sym_to_json] = ACTIONS(3242), + [anon_sym_to_string] = ACTIONS(3242), + [anon_sym_to_float] = ACTIONS(3242), + [anon_sym_bash] = ACTIONS(3242), + [anon_sym_fish] = ACTIONS(3242), + [anon_sym_raw] = ACTIONS(3242), + [anon_sym_sh] = ACTIONS(3242), + [anon_sym_zsh] = ACTIONS(3242), + [anon_sym_random] = ACTIONS(3242), + [anon_sym_random_boolean] = ACTIONS(3242), + [anon_sym_random_float] = ACTIONS(3242), + [anon_sym_random_integer] = ACTIONS(3242), + [anon_sym_columns] = ACTIONS(3242), + [anon_sym_rows] = ACTIONS(3242), + [anon_sym_reverse] = ACTIONS(3242), + }, + [659] = { + [sym_math_operator] = STATE(1138), + [sym_logic_operator] = STATE(1277), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_RPAREN] = ACTIONS(3244), + [sym_integer] = ACTIONS(3246), + [sym_float] = ACTIONS(3244), + [sym_string] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3246), + [anon_sym_COLON] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3244), + [anon_sym_DASH_EQ] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_elseif] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_asyncfor] = ACTIONS(3244), + [anon_sym_transform] = ACTIONS(3246), + [anon_sym_filter] = ACTIONS(3246), + [anon_sym_find] = ACTIONS(3246), + [anon_sym_remove] = ACTIONS(3246), + [anon_sym_reduce] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_insert] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_table] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_assert_equal] = ACTIONS(3246), + [anon_sym_download] = ACTIONS(3246), + [anon_sym_help] = ACTIONS(3246), + [anon_sym_length] = ACTIONS(3246), + [anon_sym_output] = ACTIONS(3246), + [anon_sym_output_error] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_append] = ACTIONS(3246), + [anon_sym_metadata] = ACTIONS(3246), + [anon_sym_move] = ACTIONS(3246), + [anon_sym_read] = ACTIONS(3246), + [anon_sym_workdir] = ACTIONS(3246), + [anon_sym_write] = ACTIONS(3246), + [anon_sym_from_json] = ACTIONS(3246), + [anon_sym_to_json] = ACTIONS(3246), + [anon_sym_to_string] = ACTIONS(3246), + [anon_sym_to_float] = ACTIONS(3246), + [anon_sym_bash] = ACTIONS(3246), + [anon_sym_fish] = ACTIONS(3246), + [anon_sym_raw] = ACTIONS(3246), + [anon_sym_sh] = ACTIONS(3246), + [anon_sym_zsh] = ACTIONS(3246), + [anon_sym_random] = ACTIONS(3246), + [anon_sym_random_boolean] = ACTIONS(3246), + [anon_sym_random_float] = ACTIONS(3246), + [anon_sym_random_integer] = ACTIONS(3246), + [anon_sym_columns] = ACTIONS(3246), + [anon_sym_rows] = ACTIONS(3246), + [anon_sym_reverse] = ACTIONS(3246), + }, + [660] = { + [sym_else_if] = STATE(741), + [sym_else] = STATE(857), + [aux_sym_if_else_repeat1] = STATE(741), + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [anon_sym_COMMA] = ACTIONS(3229), + [sym_integer] = ACTIONS(3231), + [sym_float] = ACTIONS(3229), + [sym_string] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_RBRACK] = ACTIONS(3229), + [anon_sym_COLON] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_elseif] = ACTIONS(3459), + [anon_sym_else] = ACTIONS(3461), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_asyncfor] = ACTIONS(3229), + [anon_sym_transform] = ACTIONS(3231), + [anon_sym_filter] = ACTIONS(3231), + [anon_sym_find] = ACTIONS(3231), + [anon_sym_remove] = ACTIONS(3231), + [anon_sym_reduce] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_insert] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_table] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_assert_equal] = ACTIONS(3231), + [anon_sym_download] = ACTIONS(3231), + [anon_sym_help] = ACTIONS(3231), + [anon_sym_length] = ACTIONS(3231), + [anon_sym_output] = ACTIONS(3231), + [anon_sym_output_error] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_append] = ACTIONS(3231), + [anon_sym_metadata] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_read] = ACTIONS(3231), + [anon_sym_workdir] = ACTIONS(3231), + [anon_sym_write] = ACTIONS(3231), + [anon_sym_from_json] = ACTIONS(3231), + [anon_sym_to_json] = ACTIONS(3231), + [anon_sym_to_string] = ACTIONS(3231), + [anon_sym_to_float] = ACTIONS(3231), + [anon_sym_bash] = ACTIONS(3231), + [anon_sym_fish] = ACTIONS(3231), + [anon_sym_raw] = ACTIONS(3231), + [anon_sym_sh] = ACTIONS(3231), + [anon_sym_zsh] = ACTIONS(3231), + [anon_sym_random] = ACTIONS(3231), + [anon_sym_random_boolean] = ACTIONS(3231), + [anon_sym_random_float] = ACTIONS(3231), + [anon_sym_random_integer] = ACTIONS(3231), + [anon_sym_columns] = ACTIONS(3231), + [anon_sym_rows] = ACTIONS(3231), + [anon_sym_reverse] = ACTIONS(3231), + }, + [661] = { + [sym_math_operator] = STATE(1138), + [sym_logic_operator] = STATE(1277), + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3283), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_RPAREN] = ACTIONS(3281), + [sym_integer] = ACTIONS(3283), + [sym_float] = ACTIONS(3281), + [sym_string] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3281), + [anon_sym_DASH_EQ] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_elseif] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_EQ_GT] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_asyncfor] = ACTIONS(3281), + [anon_sym_transform] = ACTIONS(3283), + [anon_sym_filter] = ACTIONS(3283), + [anon_sym_find] = ACTIONS(3283), + [anon_sym_remove] = ACTIONS(3283), + [anon_sym_reduce] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_insert] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_table] = ACTIONS(3283), + [anon_sym_assert] = ACTIONS(3283), + [anon_sym_assert_equal] = ACTIONS(3283), + [anon_sym_download] = ACTIONS(3283), + [anon_sym_help] = ACTIONS(3283), + [anon_sym_length] = ACTIONS(3283), + [anon_sym_output] = ACTIONS(3283), + [anon_sym_output_error] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_append] = ACTIONS(3283), + [anon_sym_metadata] = ACTIONS(3283), + [anon_sym_move] = ACTIONS(3283), + [anon_sym_read] = ACTIONS(3283), + [anon_sym_workdir] = ACTIONS(3283), + [anon_sym_write] = ACTIONS(3283), + [anon_sym_from_json] = ACTIONS(3283), + [anon_sym_to_json] = ACTIONS(3283), + [anon_sym_to_string] = ACTIONS(3283), + [anon_sym_to_float] = ACTIONS(3283), + [anon_sym_bash] = ACTIONS(3283), + [anon_sym_fish] = ACTIONS(3283), + [anon_sym_raw] = ACTIONS(3283), + [anon_sym_sh] = ACTIONS(3283), + [anon_sym_zsh] = ACTIONS(3283), + [anon_sym_random] = ACTIONS(3283), + [anon_sym_random_boolean] = ACTIONS(3283), + [anon_sym_random_float] = ACTIONS(3283), + [anon_sym_random_integer] = ACTIONS(3283), + [anon_sym_columns] = ACTIONS(3283), + [anon_sym_rows] = ACTIONS(3283), + [anon_sym_reverse] = ACTIONS(3283), + }, + [662] = { + [sym_expression] = STATE(955), + [sym__expression_kind] = STATE(986), + [aux_sym__expression_list] = STATE(674), + [sym_value] = STATE(986), + [sym_boolean] = STATE(981), + [sym_list] = STATE(981), + [sym_map] = STATE(981), + [sym_index] = STATE(986), + [sym_math] = STATE(986), + [sym_logic] = STATE(986), + [sym_identifier_list] = STATE(1920), + [sym_table] = STATE(981), + [sym_function] = STATE(981), + [sym_function_call] = STATE(986), + [sym__context_defined_function] = STATE(990), + [sym_built_in_function] = STATE(990), + [sym__built_in_function_name] = STATE(673), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_COMMA] = ACTIONS(2435), + [sym_integer] = ACTIONS(3442), + [sym_float] = ACTIONS(3444), + [sym_string] = ACTIONS(3444), + [anon_sym_true] = ACTIONS(3446), + [anon_sym_false] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_EQ] = ACTIONS(2437), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_DOT_DOT] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2435), + [anon_sym_DASH_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3450), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3452), + [anon_sym_assert] = ACTIONS(3454), + [anon_sym_assert_equal] = ACTIONS(3454), + [anon_sym_download] = ACTIONS(3454), + [anon_sym_help] = ACTIONS(3454), + [anon_sym_length] = ACTIONS(3454), + [anon_sym_output] = ACTIONS(3454), + [anon_sym_output_error] = ACTIONS(3454), + [anon_sym_type] = ACTIONS(3454), + [anon_sym_append] = ACTIONS(3454), + [anon_sym_metadata] = ACTIONS(3454), + [anon_sym_move] = ACTIONS(3454), + [anon_sym_read] = ACTIONS(3454), + [anon_sym_workdir] = ACTIONS(3454), + [anon_sym_write] = ACTIONS(3454), + [anon_sym_from_json] = ACTIONS(3454), + [anon_sym_to_json] = ACTIONS(3454), + [anon_sym_to_string] = ACTIONS(3454), + [anon_sym_to_float] = ACTIONS(3454), + [anon_sym_bash] = ACTIONS(3454), + [anon_sym_fish] = ACTIONS(3454), + [anon_sym_raw] = ACTIONS(3454), + [anon_sym_sh] = ACTIONS(3454), + [anon_sym_zsh] = ACTIONS(3454), + [anon_sym_random] = ACTIONS(3454), + [anon_sym_random_boolean] = ACTIONS(3454), + [anon_sym_random_float] = ACTIONS(3454), + [anon_sym_random_integer] = ACTIONS(3454), + [anon_sym_columns] = ACTIONS(3454), + [anon_sym_rows] = ACTIONS(3454), + [anon_sym_reverse] = ACTIONS(3454), + }, + [663] = { + [sym_math_operator] = STATE(1138), + [sym_logic_operator] = STATE(1277), + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_EQ] = ACTIONS(3277), + [anon_sym_COLON] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3275), + [anon_sym_DASH_EQ] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_elseif] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [664] = { + [sym_math_operator] = STATE(1261), + [sym_logic_operator] = STATE(1219), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3235), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3429), + [sym_integer] = ACTIONS(3235), + [sym_float] = ACTIONS(3233), + [sym_string] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_RBRACK] = ACTIONS(3233), + [anon_sym_EQ] = ACTIONS(3235), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3233), + [anon_sym_DASH_EQ] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_asyncfor] = ACTIONS(3233), + [anon_sym_transform] = ACTIONS(3235), + [anon_sym_filter] = ACTIONS(3235), + [anon_sym_find] = ACTIONS(3235), + [anon_sym_remove] = ACTIONS(3235), + [anon_sym_reduce] = ACTIONS(3235), + [anon_sym_select] = ACTIONS(3235), + [anon_sym_insert] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_table] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_assert_equal] = ACTIONS(3235), + [anon_sym_download] = ACTIONS(3235), + [anon_sym_help] = ACTIONS(3235), + [anon_sym_length] = ACTIONS(3235), + [anon_sym_output] = ACTIONS(3235), + [anon_sym_output_error] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_append] = ACTIONS(3235), + [anon_sym_metadata] = ACTIONS(3235), + [anon_sym_move] = ACTIONS(3235), + [anon_sym_read] = ACTIONS(3235), + [anon_sym_workdir] = ACTIONS(3235), + [anon_sym_write] = ACTIONS(3235), + [anon_sym_from_json] = ACTIONS(3235), + [anon_sym_to_json] = ACTIONS(3235), + [anon_sym_to_string] = ACTIONS(3235), + [anon_sym_to_float] = ACTIONS(3235), + [anon_sym_bash] = ACTIONS(3235), + [anon_sym_fish] = ACTIONS(3235), + [anon_sym_raw] = ACTIONS(3235), + [anon_sym_sh] = ACTIONS(3235), + [anon_sym_zsh] = ACTIONS(3235), + [anon_sym_random] = ACTIONS(3235), + [anon_sym_random_boolean] = ACTIONS(3235), + [anon_sym_random_float] = ACTIONS(3235), + [anon_sym_random_integer] = ACTIONS(3235), + [anon_sym_columns] = ACTIONS(3235), + [anon_sym_rows] = ACTIONS(3235), + [anon_sym_reverse] = ACTIONS(3235), + }, + [665] = { + [sym_math_operator] = STATE(1362), + [sym_logic_operator] = STATE(1363), + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3283), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_RPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3281), + [sym_integer] = ACTIONS(3283), + [sym_float] = ACTIONS(3281), + [sym_string] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_RBRACK] = ACTIONS(3281), + [anon_sym_COLON] = ACTIONS(243), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_elseif] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_EQ_GT] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_asyncfor] = ACTIONS(3281), + [anon_sym_transform] = ACTIONS(3283), + [anon_sym_filter] = ACTIONS(3283), + [anon_sym_find] = ACTIONS(3283), + [anon_sym_remove] = ACTIONS(3283), + [anon_sym_reduce] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_insert] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_table] = ACTIONS(3283), + [anon_sym_assert] = ACTIONS(3283), + [anon_sym_assert_equal] = ACTIONS(3283), + [anon_sym_download] = ACTIONS(3283), + [anon_sym_help] = ACTIONS(3283), + [anon_sym_length] = ACTIONS(3283), + [anon_sym_output] = ACTIONS(3283), + [anon_sym_output_error] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_append] = ACTIONS(3283), + [anon_sym_metadata] = ACTIONS(3283), + [anon_sym_move] = ACTIONS(3283), + [anon_sym_read] = ACTIONS(3283), + [anon_sym_workdir] = ACTIONS(3283), + [anon_sym_write] = ACTIONS(3283), + [anon_sym_from_json] = ACTIONS(3283), + [anon_sym_to_json] = ACTIONS(3283), + [anon_sym_to_string] = ACTIONS(3283), + [anon_sym_to_float] = ACTIONS(3283), + [anon_sym_bash] = ACTIONS(3283), + [anon_sym_fish] = ACTIONS(3283), + [anon_sym_raw] = ACTIONS(3283), + [anon_sym_sh] = ACTIONS(3283), + [anon_sym_zsh] = ACTIONS(3283), + [anon_sym_random] = ACTIONS(3283), + [anon_sym_random_boolean] = ACTIONS(3283), + [anon_sym_random_float] = ACTIONS(3283), + [anon_sym_random_integer] = ACTIONS(3283), + [anon_sym_columns] = ACTIONS(3283), + [anon_sym_rows] = ACTIONS(3283), + [anon_sym_reverse] = ACTIONS(3283), + }, + [666] = { + [sym_math_operator] = STATE(1362), + [sym_logic_operator] = STATE(1363), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_COMMA] = ACTIONS(3248), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3248), + [sym_string] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3468), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_elseif] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_asyncfor] = ACTIONS(3248), + [anon_sym_transform] = ACTIONS(3250), + [anon_sym_filter] = ACTIONS(3250), + [anon_sym_find] = ACTIONS(3250), + [anon_sym_remove] = ACTIONS(3250), + [anon_sym_reduce] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_insert] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_table] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_assert_equal] = ACTIONS(3250), + [anon_sym_download] = ACTIONS(3250), + [anon_sym_help] = ACTIONS(3250), + [anon_sym_length] = ACTIONS(3250), + [anon_sym_output] = ACTIONS(3250), + [anon_sym_output_error] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_append] = ACTIONS(3250), + [anon_sym_metadata] = ACTIONS(3250), + [anon_sym_move] = ACTIONS(3250), + [anon_sym_read] = ACTIONS(3250), + [anon_sym_workdir] = ACTIONS(3250), + [anon_sym_write] = ACTIONS(3250), + [anon_sym_from_json] = ACTIONS(3250), + [anon_sym_to_json] = ACTIONS(3250), + [anon_sym_to_string] = ACTIONS(3250), + [anon_sym_to_float] = ACTIONS(3250), + [anon_sym_bash] = ACTIONS(3250), + [anon_sym_fish] = ACTIONS(3250), + [anon_sym_raw] = ACTIONS(3250), + [anon_sym_sh] = ACTIONS(3250), + [anon_sym_zsh] = ACTIONS(3250), + [anon_sym_random] = ACTIONS(3250), + [anon_sym_random_boolean] = ACTIONS(3250), + [anon_sym_random_float] = ACTIONS(3250), + [anon_sym_random_integer] = ACTIONS(3250), + [anon_sym_columns] = ACTIONS(3250), + [anon_sym_rows] = ACTIONS(3250), + [anon_sym_reverse] = ACTIONS(3250), + }, + [667] = { + [sym_math_operator] = STATE(1362), + [sym_logic_operator] = STATE(1363), + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3254), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3252), + [anon_sym_COMMA] = ACTIONS(3252), + [sym_integer] = ACTIONS(3254), + [sym_float] = ACTIONS(3252), + [sym_string] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_RBRACK] = ACTIONS(3252), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_DOT_DOT] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_elseif] = ACTIONS(3252), + [anon_sym_else] = ACTIONS(3254), + [anon_sym_match] = ACTIONS(3254), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_asyncfor] = ACTIONS(3252), + [anon_sym_transform] = ACTIONS(3254), + [anon_sym_filter] = ACTIONS(3254), + [anon_sym_find] = ACTIONS(3254), + [anon_sym_remove] = ACTIONS(3254), + [anon_sym_reduce] = ACTIONS(3254), + [anon_sym_select] = ACTIONS(3254), + [anon_sym_insert] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_table] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_assert_equal] = ACTIONS(3254), + [anon_sym_download] = ACTIONS(3254), + [anon_sym_help] = ACTIONS(3254), + [anon_sym_length] = ACTIONS(3254), + [anon_sym_output] = ACTIONS(3254), + [anon_sym_output_error] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_append] = ACTIONS(3254), + [anon_sym_metadata] = ACTIONS(3254), + [anon_sym_move] = ACTIONS(3254), + [anon_sym_read] = ACTIONS(3254), + [anon_sym_workdir] = ACTIONS(3254), + [anon_sym_write] = ACTIONS(3254), + [anon_sym_from_json] = ACTIONS(3254), + [anon_sym_to_json] = ACTIONS(3254), + [anon_sym_to_string] = ACTIONS(3254), + [anon_sym_to_float] = ACTIONS(3254), + [anon_sym_bash] = ACTIONS(3254), + [anon_sym_fish] = ACTIONS(3254), + [anon_sym_raw] = ACTIONS(3254), + [anon_sym_sh] = ACTIONS(3254), + [anon_sym_zsh] = ACTIONS(3254), + [anon_sym_random] = ACTIONS(3254), + [anon_sym_random_boolean] = ACTIONS(3254), + [anon_sym_random_float] = ACTIONS(3254), + [anon_sym_random_integer] = ACTIONS(3254), + [anon_sym_columns] = ACTIONS(3254), + [anon_sym_rows] = ACTIONS(3254), + [anon_sym_reverse] = ACTIONS(3254), + }, + [668] = { + [sym_math_operator] = STATE(1362), + [sym_logic_operator] = STATE(1363), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3235), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3470), + [sym_integer] = ACTIONS(3235), + [sym_float] = ACTIONS(3233), + [sym_string] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_RBRACK] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(243), + [anon_sym_DOT_DOT] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_elseif] = ACTIONS(3233), + [anon_sym_else] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_asyncfor] = ACTIONS(3233), + [anon_sym_transform] = ACTIONS(3235), + [anon_sym_filter] = ACTIONS(3235), + [anon_sym_find] = ACTIONS(3235), + [anon_sym_remove] = ACTIONS(3235), + [anon_sym_reduce] = ACTIONS(3235), + [anon_sym_select] = ACTIONS(3235), + [anon_sym_insert] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_table] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_assert_equal] = ACTIONS(3235), + [anon_sym_download] = ACTIONS(3235), + [anon_sym_help] = ACTIONS(3235), + [anon_sym_length] = ACTIONS(3235), + [anon_sym_output] = ACTIONS(3235), + [anon_sym_output_error] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_append] = ACTIONS(3235), + [anon_sym_metadata] = ACTIONS(3235), + [anon_sym_move] = ACTIONS(3235), + [anon_sym_read] = ACTIONS(3235), + [anon_sym_workdir] = ACTIONS(3235), + [anon_sym_write] = ACTIONS(3235), + [anon_sym_from_json] = ACTIONS(3235), + [anon_sym_to_json] = ACTIONS(3235), + [anon_sym_to_string] = ACTIONS(3235), + [anon_sym_to_float] = ACTIONS(3235), + [anon_sym_bash] = ACTIONS(3235), + [anon_sym_fish] = ACTIONS(3235), + [anon_sym_raw] = ACTIONS(3235), + [anon_sym_sh] = ACTIONS(3235), + [anon_sym_zsh] = ACTIONS(3235), + [anon_sym_random] = ACTIONS(3235), + [anon_sym_random_boolean] = ACTIONS(3235), + [anon_sym_random_float] = ACTIONS(3235), + [anon_sym_random_integer] = ACTIONS(3235), + [anon_sym_columns] = ACTIONS(3235), + [anon_sym_rows] = ACTIONS(3235), + [anon_sym_reverse] = ACTIONS(3235), + }, + [669] = { + [sym_expression] = STATE(955), + [sym__expression_kind] = STATE(986), + [aux_sym__expression_list] = STATE(669), + [sym_value] = STATE(986), + [sym_boolean] = STATE(981), + [sym_list] = STATE(981), + [sym_map] = STATE(981), + [sym_index] = STATE(986), + [sym_math] = STATE(986), + [sym_logic] = STATE(986), + [sym_identifier_list] = STATE(1920), + [sym_table] = STATE(981), + [sym_function] = STATE(981), + [sym_function_call] = STATE(986), + [sym__context_defined_function] = STATE(990), + [sym_built_in_function] = STATE(990), + [sym__built_in_function_name] = STATE(673), + [sym_identifier] = ACTIONS(3473), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3476), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_COMMA] = ACTIONS(2518), + [sym_integer] = ACTIONS(3482), + [sym_float] = ACTIONS(3485), + [sym_string] = ACTIONS(3485), + [anon_sym_true] = ACTIONS(3488), + [anon_sym_false] = ACTIONS(3488), + [anon_sym_LBRACK] = ACTIONS(3491), + [anon_sym_EQ] = ACTIONS(2541), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_PLUS_EQ] = ACTIONS(2518), + [anon_sym_DASH_EQ] = ACTIONS(2518), + [anon_sym_EQ_GT] = ACTIONS(3494), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(3497), + [anon_sym_assert] = ACTIONS(3500), + [anon_sym_assert_equal] = ACTIONS(3500), + [anon_sym_download] = ACTIONS(3500), + [anon_sym_help] = ACTIONS(3500), + [anon_sym_length] = ACTIONS(3500), + [anon_sym_output] = ACTIONS(3500), + [anon_sym_output_error] = ACTIONS(3500), + [anon_sym_type] = ACTIONS(3500), + [anon_sym_append] = ACTIONS(3500), + [anon_sym_metadata] = ACTIONS(3500), + [anon_sym_move] = ACTIONS(3500), + [anon_sym_read] = ACTIONS(3500), + [anon_sym_workdir] = ACTIONS(3500), + [anon_sym_write] = ACTIONS(3500), + [anon_sym_from_json] = ACTIONS(3500), + [anon_sym_to_json] = ACTIONS(3500), + [anon_sym_to_string] = ACTIONS(3500), + [anon_sym_to_float] = ACTIONS(3500), + [anon_sym_bash] = ACTIONS(3500), + [anon_sym_fish] = ACTIONS(3500), + [anon_sym_raw] = ACTIONS(3500), + [anon_sym_sh] = ACTIONS(3500), + [anon_sym_zsh] = ACTIONS(3500), + [anon_sym_random] = ACTIONS(3500), + [anon_sym_random_boolean] = ACTIONS(3500), + [anon_sym_random_float] = ACTIONS(3500), + [anon_sym_random_integer] = ACTIONS(3500), + [anon_sym_columns] = ACTIONS(3500), + [anon_sym_rows] = ACTIONS(3500), + [anon_sym_reverse] = ACTIONS(3500), + }, + [670] = { + [sym_math_operator] = STATE(1362), + [sym_logic_operator] = STATE(1363), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_COMMA] = ACTIONS(3248), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3248), + [sym_string] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_elseif] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_asyncfor] = ACTIONS(3248), + [anon_sym_transform] = ACTIONS(3250), + [anon_sym_filter] = ACTIONS(3250), + [anon_sym_find] = ACTIONS(3250), + [anon_sym_remove] = ACTIONS(3250), + [anon_sym_reduce] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_insert] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_table] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_assert_equal] = ACTIONS(3250), + [anon_sym_download] = ACTIONS(3250), + [anon_sym_help] = ACTIONS(3250), + [anon_sym_length] = ACTIONS(3250), + [anon_sym_output] = ACTIONS(3250), + [anon_sym_output_error] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_append] = ACTIONS(3250), + [anon_sym_metadata] = ACTIONS(3250), + [anon_sym_move] = ACTIONS(3250), + [anon_sym_read] = ACTIONS(3250), + [anon_sym_workdir] = ACTIONS(3250), + [anon_sym_write] = ACTIONS(3250), + [anon_sym_from_json] = ACTIONS(3250), + [anon_sym_to_json] = ACTIONS(3250), + [anon_sym_to_string] = ACTIONS(3250), + [anon_sym_to_float] = ACTIONS(3250), + [anon_sym_bash] = ACTIONS(3250), + [anon_sym_fish] = ACTIONS(3250), + [anon_sym_raw] = ACTIONS(3250), + [anon_sym_sh] = ACTIONS(3250), + [anon_sym_zsh] = ACTIONS(3250), + [anon_sym_random] = ACTIONS(3250), + [anon_sym_random_boolean] = ACTIONS(3250), + [anon_sym_random_float] = ACTIONS(3250), + [anon_sym_random_integer] = ACTIONS(3250), + [anon_sym_columns] = ACTIONS(3250), + [anon_sym_rows] = ACTIONS(3250), + [anon_sym_reverse] = ACTIONS(3250), + }, + [671] = { + [sym_math_operator] = STATE(1261), + [sym_logic_operator] = STATE(1219), + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3254), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3252), + [anon_sym_COMMA] = ACTIONS(3252), + [sym_integer] = ACTIONS(3254), + [sym_float] = ACTIONS(3252), + [sym_string] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_RBRACK] = ACTIONS(3252), + [anon_sym_EQ] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_PLUS_EQ] = ACTIONS(3252), + [anon_sym_DASH_EQ] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_match] = ACTIONS(3254), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_asyncfor] = ACTIONS(3252), + [anon_sym_transform] = ACTIONS(3254), + [anon_sym_filter] = ACTIONS(3254), + [anon_sym_find] = ACTIONS(3254), + [anon_sym_remove] = ACTIONS(3254), + [anon_sym_reduce] = ACTIONS(3254), + [anon_sym_select] = ACTIONS(3254), + [anon_sym_insert] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_table] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_assert_equal] = ACTIONS(3254), + [anon_sym_download] = ACTIONS(3254), + [anon_sym_help] = ACTIONS(3254), + [anon_sym_length] = ACTIONS(3254), + [anon_sym_output] = ACTIONS(3254), + [anon_sym_output_error] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_append] = ACTIONS(3254), + [anon_sym_metadata] = ACTIONS(3254), + [anon_sym_move] = ACTIONS(3254), + [anon_sym_read] = ACTIONS(3254), + [anon_sym_workdir] = ACTIONS(3254), + [anon_sym_write] = ACTIONS(3254), + [anon_sym_from_json] = ACTIONS(3254), + [anon_sym_to_json] = ACTIONS(3254), + [anon_sym_to_string] = ACTIONS(3254), + [anon_sym_to_float] = ACTIONS(3254), + [anon_sym_bash] = ACTIONS(3254), + [anon_sym_fish] = ACTIONS(3254), + [anon_sym_raw] = ACTIONS(3254), + [anon_sym_sh] = ACTIONS(3254), + [anon_sym_zsh] = ACTIONS(3254), + [anon_sym_random] = ACTIONS(3254), + [anon_sym_random_boolean] = ACTIONS(3254), + [anon_sym_random_float] = ACTIONS(3254), + [anon_sym_random_integer] = ACTIONS(3254), + [anon_sym_columns] = ACTIONS(3254), + [anon_sym_rows] = ACTIONS(3254), + [anon_sym_reverse] = ACTIONS(3254), + }, + [672] = { + [sym_math_operator] = STATE(1138), + [sym_logic_operator] = STATE(1277), + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3254), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3252), + [sym_integer] = ACTIONS(3254), + [sym_float] = ACTIONS(3252), + [sym_string] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_EQ] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_PLUS_EQ] = ACTIONS(3252), + [anon_sym_DASH_EQ] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_elseif] = ACTIONS(3252), + [anon_sym_else] = ACTIONS(3254), + [anon_sym_match] = ACTIONS(3254), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_asyncfor] = ACTIONS(3252), + [anon_sym_transform] = ACTIONS(3254), + [anon_sym_filter] = ACTIONS(3254), + [anon_sym_find] = ACTIONS(3254), + [anon_sym_remove] = ACTIONS(3254), + [anon_sym_reduce] = ACTIONS(3254), + [anon_sym_select] = ACTIONS(3254), + [anon_sym_insert] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_table] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_assert_equal] = ACTIONS(3254), + [anon_sym_download] = ACTIONS(3254), + [anon_sym_help] = ACTIONS(3254), + [anon_sym_length] = ACTIONS(3254), + [anon_sym_output] = ACTIONS(3254), + [anon_sym_output_error] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_append] = ACTIONS(3254), + [anon_sym_metadata] = ACTIONS(3254), + [anon_sym_move] = ACTIONS(3254), + [anon_sym_read] = ACTIONS(3254), + [anon_sym_workdir] = ACTIONS(3254), + [anon_sym_write] = ACTIONS(3254), + [anon_sym_from_json] = ACTIONS(3254), + [anon_sym_to_json] = ACTIONS(3254), + [anon_sym_to_string] = ACTIONS(3254), + [anon_sym_to_float] = ACTIONS(3254), + [anon_sym_bash] = ACTIONS(3254), + [anon_sym_fish] = ACTIONS(3254), + [anon_sym_raw] = ACTIONS(3254), + [anon_sym_sh] = ACTIONS(3254), + [anon_sym_zsh] = ACTIONS(3254), + [anon_sym_random] = ACTIONS(3254), + [anon_sym_random_boolean] = ACTIONS(3254), + [anon_sym_random_float] = ACTIONS(3254), + [anon_sym_random_integer] = ACTIONS(3254), + [anon_sym_columns] = ACTIONS(3254), + [anon_sym_rows] = ACTIONS(3254), + [anon_sym_reverse] = ACTIONS(3254), + }, + [673] = { + [sym_expression] = STATE(955), + [sym__expression_kind] = STATE(986), + [aux_sym__expression_list] = STATE(649), + [sym_value] = STATE(986), + [sym_boolean] = STATE(981), + [sym_list] = STATE(981), + [sym_map] = STATE(981), + [sym_index] = STATE(986), + [sym_math] = STATE(986), + [sym_logic] = STATE(986), + [sym_identifier_list] = STATE(1920), + [sym_table] = STATE(981), + [sym_function] = STATE(981), + [sym_function_call] = STATE(986), + [sym__context_defined_function] = STATE(990), + [sym_built_in_function] = STATE(990), + [sym__built_in_function_name] = STATE(673), + [sym_identifier] = ACTIONS(3436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_COMMA] = ACTIONS(2473), + [sym_integer] = ACTIONS(3442), + [sym_float] = ACTIONS(3444), + [sym_string] = ACTIONS(3444), + [anon_sym_true] = ACTIONS(3446), + [anon_sym_false] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_EQ] = ACTIONS(2475), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_DOT_DOT] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_PLUS_EQ] = ACTIONS(2473), + [anon_sym_DASH_EQ] = ACTIONS(2473), + [anon_sym_EQ_GT] = ACTIONS(3450), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3452), + [anon_sym_assert] = ACTIONS(3454), + [anon_sym_assert_equal] = ACTIONS(3454), + [anon_sym_download] = ACTIONS(3454), + [anon_sym_help] = ACTIONS(3454), + [anon_sym_length] = ACTIONS(3454), + [anon_sym_output] = ACTIONS(3454), + [anon_sym_output_error] = ACTIONS(3454), + [anon_sym_type] = ACTIONS(3454), + [anon_sym_append] = ACTIONS(3454), + [anon_sym_metadata] = ACTIONS(3454), + [anon_sym_move] = ACTIONS(3454), + [anon_sym_read] = ACTIONS(3454), + [anon_sym_workdir] = ACTIONS(3454), + [anon_sym_write] = ACTIONS(3454), + [anon_sym_from_json] = ACTIONS(3454), + [anon_sym_to_json] = ACTIONS(3454), + [anon_sym_to_string] = ACTIONS(3454), + [anon_sym_to_float] = ACTIONS(3454), + [anon_sym_bash] = ACTIONS(3454), + [anon_sym_fish] = ACTIONS(3454), + [anon_sym_raw] = ACTIONS(3454), + [anon_sym_sh] = ACTIONS(3454), + [anon_sym_zsh] = ACTIONS(3454), + [anon_sym_random] = ACTIONS(3454), + [anon_sym_random_boolean] = ACTIONS(3454), + [anon_sym_random_float] = ACTIONS(3454), + [anon_sym_random_integer] = ACTIONS(3454), + [anon_sym_columns] = ACTIONS(3454), + [anon_sym_rows] = ACTIONS(3454), + [anon_sym_reverse] = ACTIONS(3454), + }, + [674] = { + [sym_expression] = STATE(955), + [sym__expression_kind] = STATE(986), + [aux_sym__expression_list] = STATE(669), + [sym_value] = STATE(986), + [sym_boolean] = STATE(981), + [sym_list] = STATE(981), + [sym_map] = STATE(981), + [sym_index] = STATE(986), + [sym_math] = STATE(986), + [sym_logic] = STATE(986), + [sym_identifier_list] = STATE(1920), + [sym_table] = STATE(981), + [sym_function] = STATE(981), + [sym_function_call] = STATE(986), + [sym__context_defined_function] = STATE(990), + [sym_built_in_function] = STATE(990), + [sym__built_in_function_name] = STATE(673), + [sym_identifier] = ACTIONS(3436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_COMMA] = ACTIONS(2477), + [sym_integer] = ACTIONS(3442), + [sym_float] = ACTIONS(3444), + [sym_string] = ACTIONS(3444), + [anon_sym_true] = ACTIONS(3446), + [anon_sym_false] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_EQ] = ACTIONS(2479), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_PLUS_EQ] = ACTIONS(2477), + [anon_sym_DASH_EQ] = ACTIONS(2477), + [anon_sym_EQ_GT] = ACTIONS(3450), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3452), + [anon_sym_assert] = ACTIONS(3454), + [anon_sym_assert_equal] = ACTIONS(3454), + [anon_sym_download] = ACTIONS(3454), + [anon_sym_help] = ACTIONS(3454), + [anon_sym_length] = ACTIONS(3454), + [anon_sym_output] = ACTIONS(3454), + [anon_sym_output_error] = ACTIONS(3454), + [anon_sym_type] = ACTIONS(3454), + [anon_sym_append] = ACTIONS(3454), + [anon_sym_metadata] = ACTIONS(3454), + [anon_sym_move] = ACTIONS(3454), + [anon_sym_read] = ACTIONS(3454), + [anon_sym_workdir] = ACTIONS(3454), + [anon_sym_write] = ACTIONS(3454), + [anon_sym_from_json] = ACTIONS(3454), + [anon_sym_to_json] = ACTIONS(3454), + [anon_sym_to_string] = ACTIONS(3454), + [anon_sym_to_float] = ACTIONS(3454), + [anon_sym_bash] = ACTIONS(3454), + [anon_sym_fish] = ACTIONS(3454), + [anon_sym_raw] = ACTIONS(3454), + [anon_sym_sh] = ACTIONS(3454), + [anon_sym_zsh] = ACTIONS(3454), + [anon_sym_random] = ACTIONS(3454), + [anon_sym_random_boolean] = ACTIONS(3454), + [anon_sym_random_float] = ACTIONS(3454), + [anon_sym_random_integer] = ACTIONS(3454), + [anon_sym_columns] = ACTIONS(3454), + [anon_sym_rows] = ACTIONS(3454), + [anon_sym_reverse] = ACTIONS(3454), + }, + [675] = { + [sym_math_operator] = STATE(1362), + [sym_logic_operator] = STATE(1363), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_RPAREN] = ACTIONS(3244), + [anon_sym_COMMA] = ACTIONS(3244), + [sym_integer] = ACTIONS(3246), + [sym_float] = ACTIONS(3244), + [sym_string] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_RBRACK] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(243), + [anon_sym_DOT_DOT] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_elseif] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_asyncfor] = ACTIONS(3244), + [anon_sym_transform] = ACTIONS(3246), + [anon_sym_filter] = ACTIONS(3246), + [anon_sym_find] = ACTIONS(3246), + [anon_sym_remove] = ACTIONS(3246), + [anon_sym_reduce] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_insert] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_table] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_assert_equal] = ACTIONS(3246), + [anon_sym_download] = ACTIONS(3246), + [anon_sym_help] = ACTIONS(3246), + [anon_sym_length] = ACTIONS(3246), + [anon_sym_output] = ACTIONS(3246), + [anon_sym_output_error] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_append] = ACTIONS(3246), + [anon_sym_metadata] = ACTIONS(3246), + [anon_sym_move] = ACTIONS(3246), + [anon_sym_read] = ACTIONS(3246), + [anon_sym_workdir] = ACTIONS(3246), + [anon_sym_write] = ACTIONS(3246), + [anon_sym_from_json] = ACTIONS(3246), + [anon_sym_to_json] = ACTIONS(3246), + [anon_sym_to_string] = ACTIONS(3246), + [anon_sym_to_float] = ACTIONS(3246), + [anon_sym_bash] = ACTIONS(3246), + [anon_sym_fish] = ACTIONS(3246), + [anon_sym_raw] = ACTIONS(3246), + [anon_sym_sh] = ACTIONS(3246), + [anon_sym_zsh] = ACTIONS(3246), + [anon_sym_random] = ACTIONS(3246), + [anon_sym_random_boolean] = ACTIONS(3246), + [anon_sym_random_float] = ACTIONS(3246), + [anon_sym_random_integer] = ACTIONS(3246), + [anon_sym_columns] = ACTIONS(3246), + [anon_sym_rows] = ACTIONS(3246), + [anon_sym_reverse] = ACTIONS(3246), + }, + [676] = { + [sym_math_operator] = STATE(1138), + [sym_logic_operator] = STATE(1277), + [ts_builtin_sym_end] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3264), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [sym_integer] = ACTIONS(3264), + [sym_float] = ACTIONS(3262), + [sym_string] = ACTIONS(3262), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_PLUS_EQ] = ACTIONS(3262), + [anon_sym_DASH_EQ] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_elseif] = ACTIONS(3262), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_match] = ACTIONS(3264), + [anon_sym_EQ_GT] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_asyncfor] = ACTIONS(3262), + [anon_sym_transform] = ACTIONS(3264), + [anon_sym_filter] = ACTIONS(3264), + [anon_sym_find] = ACTIONS(3264), + [anon_sym_remove] = ACTIONS(3264), + [anon_sym_reduce] = ACTIONS(3264), + [anon_sym_select] = ACTIONS(3264), + [anon_sym_insert] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_table] = ACTIONS(3264), + [anon_sym_assert] = ACTIONS(3264), + [anon_sym_assert_equal] = ACTIONS(3264), + [anon_sym_download] = ACTIONS(3264), + [anon_sym_help] = ACTIONS(3264), + [anon_sym_length] = ACTIONS(3264), + [anon_sym_output] = ACTIONS(3264), + [anon_sym_output_error] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_append] = ACTIONS(3264), + [anon_sym_metadata] = ACTIONS(3264), + [anon_sym_move] = ACTIONS(3264), + [anon_sym_read] = ACTIONS(3264), + [anon_sym_workdir] = ACTIONS(3264), + [anon_sym_write] = ACTIONS(3264), + [anon_sym_from_json] = ACTIONS(3264), + [anon_sym_to_json] = ACTIONS(3264), + [anon_sym_to_string] = ACTIONS(3264), + [anon_sym_to_float] = ACTIONS(3264), + [anon_sym_bash] = ACTIONS(3264), + [anon_sym_fish] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3264), + [anon_sym_sh] = ACTIONS(3264), + [anon_sym_zsh] = ACTIONS(3264), + [anon_sym_random] = ACTIONS(3264), + [anon_sym_random_boolean] = ACTIONS(3264), + [anon_sym_random_float] = ACTIONS(3264), + [anon_sym_random_integer] = ACTIONS(3264), + [anon_sym_columns] = ACTIONS(3264), + [anon_sym_rows] = ACTIONS(3264), + [anon_sym_reverse] = ACTIONS(3264), + }, + [677] = { + [sym_else_if] = STATE(741), + [sym_else] = STATE(802), + [aux_sym_if_else_repeat1] = STATE(741), + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [anon_sym_COMMA] = ACTIONS(3229), + [sym_integer] = ACTIONS(3231), + [sym_float] = ACTIONS(3229), + [sym_string] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_RBRACK] = ACTIONS(3229), + [anon_sym_COLON] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_elseif] = ACTIONS(3459), + [anon_sym_else] = ACTIONS(3463), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_asyncfor] = ACTIONS(3229), + [anon_sym_transform] = ACTIONS(3231), + [anon_sym_filter] = ACTIONS(3231), + [anon_sym_find] = ACTIONS(3231), + [anon_sym_remove] = ACTIONS(3231), + [anon_sym_reduce] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_insert] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_table] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_assert_equal] = ACTIONS(3231), + [anon_sym_download] = ACTIONS(3231), + [anon_sym_help] = ACTIONS(3231), + [anon_sym_length] = ACTIONS(3231), + [anon_sym_output] = ACTIONS(3231), + [anon_sym_output_error] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_append] = ACTIONS(3231), + [anon_sym_metadata] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_read] = ACTIONS(3231), + [anon_sym_workdir] = ACTIONS(3231), + [anon_sym_write] = ACTIONS(3231), + [anon_sym_from_json] = ACTIONS(3231), + [anon_sym_to_json] = ACTIONS(3231), + [anon_sym_to_string] = ACTIONS(3231), + [anon_sym_to_float] = ACTIONS(3231), + [anon_sym_bash] = ACTIONS(3231), + [anon_sym_fish] = ACTIONS(3231), + [anon_sym_raw] = ACTIONS(3231), + [anon_sym_sh] = ACTIONS(3231), + [anon_sym_zsh] = ACTIONS(3231), + [anon_sym_random] = ACTIONS(3231), + [anon_sym_random_boolean] = ACTIONS(3231), + [anon_sym_random_float] = ACTIONS(3231), + [anon_sym_random_integer] = ACTIONS(3231), + [anon_sym_columns] = ACTIONS(3231), + [anon_sym_rows] = ACTIONS(3231), + [anon_sym_reverse] = ACTIONS(3231), + }, + [678] = { + [sym_math_operator] = STATE(1362), + [sym_logic_operator] = STATE(1363), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3242), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [sym_integer] = ACTIONS(3242), + [sym_float] = ACTIONS(3240), + [sym_string] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(243), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_elseif] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_asyncfor] = ACTIONS(3240), + [anon_sym_transform] = ACTIONS(3242), + [anon_sym_filter] = ACTIONS(3242), + [anon_sym_find] = ACTIONS(3242), + [anon_sym_remove] = ACTIONS(3242), + [anon_sym_reduce] = ACTIONS(3242), + [anon_sym_select] = ACTIONS(3242), + [anon_sym_insert] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_table] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_assert_equal] = ACTIONS(3242), + [anon_sym_download] = ACTIONS(3242), + [anon_sym_help] = ACTIONS(3242), + [anon_sym_length] = ACTIONS(3242), + [anon_sym_output] = ACTIONS(3242), + [anon_sym_output_error] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_append] = ACTIONS(3242), + [anon_sym_metadata] = ACTIONS(3242), + [anon_sym_move] = ACTIONS(3242), + [anon_sym_read] = ACTIONS(3242), + [anon_sym_workdir] = ACTIONS(3242), + [anon_sym_write] = ACTIONS(3242), + [anon_sym_from_json] = ACTIONS(3242), + [anon_sym_to_json] = ACTIONS(3242), + [anon_sym_to_string] = ACTIONS(3242), + [anon_sym_to_float] = ACTIONS(3242), + [anon_sym_bash] = ACTIONS(3242), + [anon_sym_fish] = ACTIONS(3242), + [anon_sym_raw] = ACTIONS(3242), + [anon_sym_sh] = ACTIONS(3242), + [anon_sym_zsh] = ACTIONS(3242), + [anon_sym_random] = ACTIONS(3242), + [anon_sym_random_boolean] = ACTIONS(3242), + [anon_sym_random_float] = ACTIONS(3242), + [anon_sym_random_integer] = ACTIONS(3242), + [anon_sym_columns] = ACTIONS(3242), + [anon_sym_rows] = ACTIONS(3242), + [anon_sym_reverse] = ACTIONS(3242), + }, + [679] = { + [sym_expression] = STATE(975), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(773), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_assignment_operator] = STATE(541), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_COMMA] = ACTIONS(2435), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [680] = { + [sym_math_operator] = STATE(1316), + [sym_logic_operator] = STATE(1285), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3235), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3519), + [sym_integer] = ACTIONS(3235), + [sym_float] = ACTIONS(3233), + [sym_string] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_EQ] = ACTIONS(3235), + [anon_sym_COLON] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3233), + [anon_sym_DASH_EQ] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_asyncfor] = ACTIONS(3233), + [anon_sym_transform] = ACTIONS(3235), + [anon_sym_filter] = ACTIONS(3235), + [anon_sym_find] = ACTIONS(3235), + [anon_sym_remove] = ACTIONS(3235), + [anon_sym_reduce] = ACTIONS(3235), + [anon_sym_select] = ACTIONS(3235), + [anon_sym_insert] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_table] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_assert_equal] = ACTIONS(3235), + [anon_sym_download] = ACTIONS(3235), + [anon_sym_help] = ACTIONS(3235), + [anon_sym_length] = ACTIONS(3235), + [anon_sym_output] = ACTIONS(3235), + [anon_sym_output_error] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_append] = ACTIONS(3235), + [anon_sym_metadata] = ACTIONS(3235), + [anon_sym_move] = ACTIONS(3235), + [anon_sym_read] = ACTIONS(3235), + [anon_sym_workdir] = ACTIONS(3235), + [anon_sym_write] = ACTIONS(3235), + [anon_sym_from_json] = ACTIONS(3235), + [anon_sym_to_json] = ACTIONS(3235), + [anon_sym_to_string] = ACTIONS(3235), + [anon_sym_to_float] = ACTIONS(3235), + [anon_sym_bash] = ACTIONS(3235), + [anon_sym_fish] = ACTIONS(3235), + [anon_sym_raw] = ACTIONS(3235), + [anon_sym_sh] = ACTIONS(3235), + [anon_sym_zsh] = ACTIONS(3235), + [anon_sym_random] = ACTIONS(3235), + [anon_sym_random_boolean] = ACTIONS(3235), + [anon_sym_random_float] = ACTIONS(3235), + [anon_sym_random_integer] = ACTIONS(3235), + [anon_sym_columns] = ACTIONS(3235), + [anon_sym_rows] = ACTIONS(3235), + [anon_sym_reverse] = ACTIONS(3235), + }, + [681] = { + [sym_math_operator] = STATE(1261), + [sym_logic_operator] = STATE(1219), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3242), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [sym_integer] = ACTIONS(3242), + [sym_float] = ACTIONS(3240), + [sym_string] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_EQ] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_asyncfor] = ACTIONS(3240), + [anon_sym_transform] = ACTIONS(3242), + [anon_sym_filter] = ACTIONS(3242), + [anon_sym_find] = ACTIONS(3242), + [anon_sym_remove] = ACTIONS(3242), + [anon_sym_reduce] = ACTIONS(3242), + [anon_sym_select] = ACTIONS(3242), + [anon_sym_insert] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_table] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_assert_equal] = ACTIONS(3242), + [anon_sym_download] = ACTIONS(3242), + [anon_sym_help] = ACTIONS(3242), + [anon_sym_length] = ACTIONS(3242), + [anon_sym_output] = ACTIONS(3242), + [anon_sym_output_error] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_append] = ACTIONS(3242), + [anon_sym_metadata] = ACTIONS(3242), + [anon_sym_move] = ACTIONS(3242), + [anon_sym_read] = ACTIONS(3242), + [anon_sym_workdir] = ACTIONS(3242), + [anon_sym_write] = ACTIONS(3242), + [anon_sym_from_json] = ACTIONS(3242), + [anon_sym_to_json] = ACTIONS(3242), + [anon_sym_to_string] = ACTIONS(3242), + [anon_sym_to_float] = ACTIONS(3242), + [anon_sym_bash] = ACTIONS(3242), + [anon_sym_fish] = ACTIONS(3242), + [anon_sym_raw] = ACTIONS(3242), + [anon_sym_sh] = ACTIONS(3242), + [anon_sym_zsh] = ACTIONS(3242), + [anon_sym_random] = ACTIONS(3242), + [anon_sym_random_boolean] = ACTIONS(3242), + [anon_sym_random_float] = ACTIONS(3242), + [anon_sym_random_integer] = ACTIONS(3242), + [anon_sym_columns] = ACTIONS(3242), + [anon_sym_rows] = ACTIONS(3242), + [anon_sym_reverse] = ACTIONS(3242), + }, + [682] = { + [sym_math_operator] = STATE(1261), + [sym_logic_operator] = STATE(1219), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_RPAREN] = ACTIONS(3244), + [anon_sym_COMMA] = ACTIONS(3244), + [sym_integer] = ACTIONS(3246), + [sym_float] = ACTIONS(3244), + [sym_string] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_RBRACK] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3246), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3244), + [anon_sym_DASH_EQ] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_asyncfor] = ACTIONS(3244), + [anon_sym_transform] = ACTIONS(3246), + [anon_sym_filter] = ACTIONS(3246), + [anon_sym_find] = ACTIONS(3246), + [anon_sym_remove] = ACTIONS(3246), + [anon_sym_reduce] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_insert] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_table] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_assert_equal] = ACTIONS(3246), + [anon_sym_download] = ACTIONS(3246), + [anon_sym_help] = ACTIONS(3246), + [anon_sym_length] = ACTIONS(3246), + [anon_sym_output] = ACTIONS(3246), + [anon_sym_output_error] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_append] = ACTIONS(3246), + [anon_sym_metadata] = ACTIONS(3246), + [anon_sym_move] = ACTIONS(3246), + [anon_sym_read] = ACTIONS(3246), + [anon_sym_workdir] = ACTIONS(3246), + [anon_sym_write] = ACTIONS(3246), + [anon_sym_from_json] = ACTIONS(3246), + [anon_sym_to_json] = ACTIONS(3246), + [anon_sym_to_string] = ACTIONS(3246), + [anon_sym_to_float] = ACTIONS(3246), + [anon_sym_bash] = ACTIONS(3246), + [anon_sym_fish] = ACTIONS(3246), + [anon_sym_raw] = ACTIONS(3246), + [anon_sym_sh] = ACTIONS(3246), + [anon_sym_zsh] = ACTIONS(3246), + [anon_sym_random] = ACTIONS(3246), + [anon_sym_random_boolean] = ACTIONS(3246), + [anon_sym_random_float] = ACTIONS(3246), + [anon_sym_random_integer] = ACTIONS(3246), + [anon_sym_columns] = ACTIONS(3246), + [anon_sym_rows] = ACTIONS(3246), + [anon_sym_reverse] = ACTIONS(3246), + }, + [683] = { + [sym_math_operator] = STATE(1261), + [sym_logic_operator] = STATE(1219), + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_RBRACK] = ACTIONS(3275), + [anon_sym_EQ] = ACTIONS(3277), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3275), + [anon_sym_DASH_EQ] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [684] = { + [sym_math_operator] = STATE(1261), + [sym_logic_operator] = STATE(1219), + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3283), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_RPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3281), + [sym_integer] = ACTIONS(3283), + [sym_float] = ACTIONS(3281), + [sym_string] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_RBRACK] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3281), + [anon_sym_DASH_EQ] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_EQ_GT] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_asyncfor] = ACTIONS(3281), + [anon_sym_transform] = ACTIONS(3283), + [anon_sym_filter] = ACTIONS(3283), + [anon_sym_find] = ACTIONS(3283), + [anon_sym_remove] = ACTIONS(3283), + [anon_sym_reduce] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_insert] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_table] = ACTIONS(3283), + [anon_sym_assert] = ACTIONS(3283), + [anon_sym_assert_equal] = ACTIONS(3283), + [anon_sym_download] = ACTIONS(3283), + [anon_sym_help] = ACTIONS(3283), + [anon_sym_length] = ACTIONS(3283), + [anon_sym_output] = ACTIONS(3283), + [anon_sym_output_error] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_append] = ACTIONS(3283), + [anon_sym_metadata] = ACTIONS(3283), + [anon_sym_move] = ACTIONS(3283), + [anon_sym_read] = ACTIONS(3283), + [anon_sym_workdir] = ACTIONS(3283), + [anon_sym_write] = ACTIONS(3283), + [anon_sym_from_json] = ACTIONS(3283), + [anon_sym_to_json] = ACTIONS(3283), + [anon_sym_to_string] = ACTIONS(3283), + [anon_sym_to_float] = ACTIONS(3283), + [anon_sym_bash] = ACTIONS(3283), + [anon_sym_fish] = ACTIONS(3283), + [anon_sym_raw] = ACTIONS(3283), + [anon_sym_sh] = ACTIONS(3283), + [anon_sym_zsh] = ACTIONS(3283), + [anon_sym_random] = ACTIONS(3283), + [anon_sym_random_boolean] = ACTIONS(3283), + [anon_sym_random_float] = ACTIONS(3283), + [anon_sym_random_integer] = ACTIONS(3283), + [anon_sym_columns] = ACTIONS(3283), + [anon_sym_rows] = ACTIONS(3283), + [anon_sym_reverse] = ACTIONS(3283), + }, + [685] = { + [sym_math_operator] = STATE(1362), + [sym_logic_operator] = STATE(1363), + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3521), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_RBRACK] = ACTIONS(3275), + [anon_sym_COLON] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_elseif] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [686] = { + [ts_builtin_sym_end] = ACTIONS(3383), + [sym_identifier] = ACTIONS(3385), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_RBRACE] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3383), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_RPAREN] = ACTIONS(3383), + [anon_sym_COMMA] = ACTIONS(3383), + [sym_integer] = ACTIONS(3385), + [sym_float] = ACTIONS(3383), + [sym_string] = ACTIONS(3383), + [anon_sym_true] = ACTIONS(3385), + [anon_sym_false] = ACTIONS(3385), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_RBRACK] = ACTIONS(3383), + [anon_sym_EQ] = ACTIONS(3385), + [anon_sym_COLON] = ACTIONS(3383), + [anon_sym_DOT_DOT] = ACTIONS(3383), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3383), + [anon_sym_SLASH] = ACTIONS(3383), + [anon_sym_PERCENT] = ACTIONS(3383), + [anon_sym_EQ_EQ] = ACTIONS(3383), + [anon_sym_BANG_EQ] = ACTIONS(3383), + [anon_sym_AMP_AMP] = ACTIONS(3383), + [anon_sym_PIPE_PIPE] = ACTIONS(3383), + [anon_sym_GT] = ACTIONS(3385), + [anon_sym_LT] = ACTIONS(3385), + [anon_sym_GT_EQ] = ACTIONS(3383), + [anon_sym_LT_EQ] = ACTIONS(3383), + [anon_sym_PLUS_EQ] = ACTIONS(3383), + [anon_sym_DASH_EQ] = ACTIONS(3383), + [anon_sym_if] = ACTIONS(3385), + [anon_sym_match] = ACTIONS(3385), + [anon_sym_EQ_GT] = ACTIONS(3383), + [anon_sym_while] = ACTIONS(3385), + [anon_sym_for] = ACTIONS(3385), + [anon_sym_asyncfor] = ACTIONS(3383), + [anon_sym_transform] = ACTIONS(3385), + [anon_sym_filter] = ACTIONS(3385), + [anon_sym_find] = ACTIONS(3385), + [anon_sym_remove] = ACTIONS(3385), + [anon_sym_reduce] = ACTIONS(3385), + [anon_sym_select] = ACTIONS(3385), + [anon_sym_insert] = ACTIONS(3385), + [anon_sym_async] = ACTIONS(3385), + [anon_sym_PIPE] = ACTIONS(3385), + [anon_sym_table] = ACTIONS(3385), + [anon_sym_assert] = ACTIONS(3385), + [anon_sym_assert_equal] = ACTIONS(3385), + [anon_sym_download] = ACTIONS(3385), + [anon_sym_help] = ACTIONS(3385), + [anon_sym_length] = ACTIONS(3385), + [anon_sym_output] = ACTIONS(3385), + [anon_sym_output_error] = ACTIONS(3385), + [anon_sym_type] = ACTIONS(3385), + [anon_sym_append] = ACTIONS(3385), + [anon_sym_metadata] = ACTIONS(3385), + [anon_sym_move] = ACTIONS(3385), + [anon_sym_read] = ACTIONS(3385), + [anon_sym_workdir] = ACTIONS(3385), + [anon_sym_write] = ACTIONS(3385), + [anon_sym_from_json] = ACTIONS(3385), + [anon_sym_to_json] = ACTIONS(3385), + [anon_sym_to_string] = ACTIONS(3385), + [anon_sym_to_float] = ACTIONS(3385), + [anon_sym_bash] = ACTIONS(3385), + [anon_sym_fish] = ACTIONS(3385), + [anon_sym_raw] = ACTIONS(3385), + [anon_sym_sh] = ACTIONS(3385), + [anon_sym_zsh] = ACTIONS(3385), + [anon_sym_random] = ACTIONS(3385), + [anon_sym_random_boolean] = ACTIONS(3385), + [anon_sym_random_float] = ACTIONS(3385), + [anon_sym_random_integer] = ACTIONS(3385), + [anon_sym_columns] = ACTIONS(3385), + [anon_sym_rows] = ACTIONS(3385), + [anon_sym_reverse] = ACTIONS(3385), + }, + [687] = { + [ts_builtin_sym_end] = ACTIONS(3303), + [sym_identifier] = ACTIONS(3305), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_RPAREN] = ACTIONS(3303), + [anon_sym_COMMA] = ACTIONS(3303), + [sym_integer] = ACTIONS(3305), + [sym_float] = ACTIONS(3303), + [sym_string] = ACTIONS(3303), + [anon_sym_true] = ACTIONS(3305), + [anon_sym_false] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_RBRACK] = ACTIONS(3303), + [anon_sym_EQ] = ACTIONS(3305), + [anon_sym_COLON] = ACTIONS(3303), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3303), + [anon_sym_SLASH] = ACTIONS(3303), + [anon_sym_PERCENT] = ACTIONS(3303), + [anon_sym_EQ_EQ] = ACTIONS(3303), + [anon_sym_BANG_EQ] = ACTIONS(3303), + [anon_sym_AMP_AMP] = ACTIONS(3303), + [anon_sym_PIPE_PIPE] = ACTIONS(3303), + [anon_sym_GT] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_GT_EQ] = ACTIONS(3303), + [anon_sym_LT_EQ] = ACTIONS(3303), + [anon_sym_PLUS_EQ] = ACTIONS(3303), + [anon_sym_DASH_EQ] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_match] = ACTIONS(3305), + [anon_sym_EQ_GT] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_asyncfor] = ACTIONS(3303), + [anon_sym_transform] = ACTIONS(3305), + [anon_sym_filter] = ACTIONS(3305), + [anon_sym_find] = ACTIONS(3305), + [anon_sym_remove] = ACTIONS(3305), + [anon_sym_reduce] = ACTIONS(3305), + [anon_sym_select] = ACTIONS(3305), + [anon_sym_insert] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_PIPE] = ACTIONS(3305), + [anon_sym_table] = ACTIONS(3305), + [anon_sym_assert] = ACTIONS(3305), + [anon_sym_assert_equal] = ACTIONS(3305), + [anon_sym_download] = ACTIONS(3305), + [anon_sym_help] = ACTIONS(3305), + [anon_sym_length] = ACTIONS(3305), + [anon_sym_output] = ACTIONS(3305), + [anon_sym_output_error] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_append] = ACTIONS(3305), + [anon_sym_metadata] = ACTIONS(3305), + [anon_sym_move] = ACTIONS(3305), + [anon_sym_read] = ACTIONS(3305), + [anon_sym_workdir] = ACTIONS(3305), + [anon_sym_write] = ACTIONS(3305), + [anon_sym_from_json] = ACTIONS(3305), + [anon_sym_to_json] = ACTIONS(3305), + [anon_sym_to_string] = ACTIONS(3305), + [anon_sym_to_float] = ACTIONS(3305), + [anon_sym_bash] = ACTIONS(3305), + [anon_sym_fish] = ACTIONS(3305), + [anon_sym_raw] = ACTIONS(3305), + [anon_sym_sh] = ACTIONS(3305), + [anon_sym_zsh] = ACTIONS(3305), + [anon_sym_random] = ACTIONS(3305), + [anon_sym_random_boolean] = ACTIONS(3305), + [anon_sym_random_float] = ACTIONS(3305), + [anon_sym_random_integer] = ACTIONS(3305), + [anon_sym_columns] = ACTIONS(3305), + [anon_sym_rows] = ACTIONS(3305), + [anon_sym_reverse] = ACTIONS(3305), + }, + [688] = { + [ts_builtin_sym_end] = ACTIONS(3371), + [sym_identifier] = ACTIONS(3373), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3371), + [anon_sym_RBRACE] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3371), + [anon_sym_RPAREN] = ACTIONS(3371), + [anon_sym_COMMA] = ACTIONS(3371), + [sym_integer] = ACTIONS(3373), + [sym_float] = ACTIONS(3371), + [sym_string] = ACTIONS(3371), + [anon_sym_true] = ACTIONS(3373), + [anon_sym_false] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3371), + [anon_sym_RBRACK] = ACTIONS(3371), + [anon_sym_EQ] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3373), + [anon_sym_DASH] = ACTIONS(3373), + [anon_sym_STAR] = ACTIONS(3371), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_PERCENT] = ACTIONS(3371), + [anon_sym_EQ_EQ] = ACTIONS(3371), + [anon_sym_BANG_EQ] = ACTIONS(3371), + [anon_sym_AMP_AMP] = ACTIONS(3371), + [anon_sym_PIPE_PIPE] = ACTIONS(3371), + [anon_sym_GT] = ACTIONS(3373), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_GT_EQ] = ACTIONS(3371), + [anon_sym_LT_EQ] = ACTIONS(3371), + [anon_sym_PLUS_EQ] = ACTIONS(3371), + [anon_sym_DASH_EQ] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3373), + [anon_sym_match] = ACTIONS(3373), + [anon_sym_EQ_GT] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3373), + [anon_sym_for] = ACTIONS(3373), + [anon_sym_asyncfor] = ACTIONS(3371), + [anon_sym_transform] = ACTIONS(3373), + [anon_sym_filter] = ACTIONS(3373), + [anon_sym_find] = ACTIONS(3373), + [anon_sym_remove] = ACTIONS(3373), + [anon_sym_reduce] = ACTIONS(3373), + [anon_sym_select] = ACTIONS(3373), + [anon_sym_insert] = ACTIONS(3373), + [anon_sym_async] = ACTIONS(3373), + [anon_sym_PIPE] = ACTIONS(3373), + [anon_sym_table] = ACTIONS(3373), + [anon_sym_assert] = ACTIONS(3373), + [anon_sym_assert_equal] = ACTIONS(3373), + [anon_sym_download] = ACTIONS(3373), + [anon_sym_help] = ACTIONS(3373), + [anon_sym_length] = ACTIONS(3373), + [anon_sym_output] = ACTIONS(3373), + [anon_sym_output_error] = ACTIONS(3373), + [anon_sym_type] = ACTIONS(3373), + [anon_sym_append] = ACTIONS(3373), + [anon_sym_metadata] = ACTIONS(3373), + [anon_sym_move] = ACTIONS(3373), + [anon_sym_read] = ACTIONS(3373), + [anon_sym_workdir] = ACTIONS(3373), + [anon_sym_write] = ACTIONS(3373), + [anon_sym_from_json] = ACTIONS(3373), + [anon_sym_to_json] = ACTIONS(3373), + [anon_sym_to_string] = ACTIONS(3373), + [anon_sym_to_float] = ACTIONS(3373), + [anon_sym_bash] = ACTIONS(3373), + [anon_sym_fish] = ACTIONS(3373), + [anon_sym_raw] = ACTIONS(3373), + [anon_sym_sh] = ACTIONS(3373), + [anon_sym_zsh] = ACTIONS(3373), + [anon_sym_random] = ACTIONS(3373), + [anon_sym_random_boolean] = ACTIONS(3373), + [anon_sym_random_float] = ACTIONS(3373), + [anon_sym_random_integer] = ACTIONS(3373), + [anon_sym_columns] = ACTIONS(3373), + [anon_sym_rows] = ACTIONS(3373), + [anon_sym_reverse] = ACTIONS(3373), + }, + [689] = { + [ts_builtin_sym_end] = ACTIONS(3359), + [sym_identifier] = ACTIONS(3361), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3359), + [anon_sym_RBRACE] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3359), + [anon_sym_RPAREN] = ACTIONS(3359), + [anon_sym_COMMA] = ACTIONS(3359), + [sym_integer] = ACTIONS(3361), + [sym_float] = ACTIONS(3359), + [sym_string] = ACTIONS(3359), + [anon_sym_true] = ACTIONS(3361), + [anon_sym_false] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3359), + [anon_sym_RBRACK] = ACTIONS(3359), + [anon_sym_EQ] = ACTIONS(3361), + [anon_sym_COLON] = ACTIONS(3359), + [anon_sym_DOT_DOT] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_STAR] = ACTIONS(3359), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_PERCENT] = ACTIONS(3359), + [anon_sym_EQ_EQ] = ACTIONS(3359), + [anon_sym_BANG_EQ] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [anon_sym_GT] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_GT_EQ] = ACTIONS(3359), + [anon_sym_LT_EQ] = ACTIONS(3359), + [anon_sym_PLUS_EQ] = ACTIONS(3359), + [anon_sym_DASH_EQ] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_EQ_GT] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_asyncfor] = ACTIONS(3359), + [anon_sym_transform] = ACTIONS(3361), + [anon_sym_filter] = ACTIONS(3361), + [anon_sym_find] = ACTIONS(3361), + [anon_sym_remove] = ACTIONS(3361), + [anon_sym_reduce] = ACTIONS(3361), + [anon_sym_select] = ACTIONS(3361), + [anon_sym_insert] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_PIPE] = ACTIONS(3361), + [anon_sym_table] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_assert_equal] = ACTIONS(3361), + [anon_sym_download] = ACTIONS(3361), + [anon_sym_help] = ACTIONS(3361), + [anon_sym_length] = ACTIONS(3361), + [anon_sym_output] = ACTIONS(3361), + [anon_sym_output_error] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_append] = ACTIONS(3361), + [anon_sym_metadata] = ACTIONS(3361), + [anon_sym_move] = ACTIONS(3361), + [anon_sym_read] = ACTIONS(3361), + [anon_sym_workdir] = ACTIONS(3361), + [anon_sym_write] = ACTIONS(3361), + [anon_sym_from_json] = ACTIONS(3361), + [anon_sym_to_json] = ACTIONS(3361), + [anon_sym_to_string] = ACTIONS(3361), + [anon_sym_to_float] = ACTIONS(3361), + [anon_sym_bash] = ACTIONS(3361), + [anon_sym_fish] = ACTIONS(3361), + [anon_sym_raw] = ACTIONS(3361), + [anon_sym_sh] = ACTIONS(3361), + [anon_sym_zsh] = ACTIONS(3361), + [anon_sym_random] = ACTIONS(3361), + [anon_sym_random_boolean] = ACTIONS(3361), + [anon_sym_random_float] = ACTIONS(3361), + [anon_sym_random_integer] = ACTIONS(3361), + [anon_sym_columns] = ACTIONS(3361), + [anon_sym_rows] = ACTIONS(3361), + [anon_sym_reverse] = ACTIONS(3361), + }, + [690] = { + [ts_builtin_sym_end] = ACTIONS(3355), + [sym_identifier] = ACTIONS(3357), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_RBRACE] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_RPAREN] = ACTIONS(3355), + [anon_sym_COMMA] = ACTIONS(3355), + [sym_integer] = ACTIONS(3357), + [sym_float] = ACTIONS(3355), + [sym_string] = ACTIONS(3355), + [anon_sym_true] = ACTIONS(3357), + [anon_sym_false] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_RBRACK] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(3357), + [anon_sym_COLON] = ACTIONS(3355), + [anon_sym_DOT_DOT] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3357), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3355), + [anon_sym_SLASH] = ACTIONS(3355), + [anon_sym_PERCENT] = ACTIONS(3355), + [anon_sym_EQ_EQ] = ACTIONS(3355), + [anon_sym_BANG_EQ] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_GT] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_GT_EQ] = ACTIONS(3355), + [anon_sym_LT_EQ] = ACTIONS(3355), + [anon_sym_PLUS_EQ] = ACTIONS(3355), + [anon_sym_DASH_EQ] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3357), + [anon_sym_match] = ACTIONS(3357), + [anon_sym_EQ_GT] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3357), + [anon_sym_asyncfor] = ACTIONS(3355), + [anon_sym_transform] = ACTIONS(3357), + [anon_sym_filter] = ACTIONS(3357), + [anon_sym_find] = ACTIONS(3357), + [anon_sym_remove] = ACTIONS(3357), + [anon_sym_reduce] = ACTIONS(3357), + [anon_sym_select] = ACTIONS(3357), + [anon_sym_insert] = ACTIONS(3357), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(3357), + [anon_sym_table] = ACTIONS(3357), + [anon_sym_assert] = ACTIONS(3357), + [anon_sym_assert_equal] = ACTIONS(3357), + [anon_sym_download] = ACTIONS(3357), + [anon_sym_help] = ACTIONS(3357), + [anon_sym_length] = ACTIONS(3357), + [anon_sym_output] = ACTIONS(3357), + [anon_sym_output_error] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3357), + [anon_sym_append] = ACTIONS(3357), + [anon_sym_metadata] = ACTIONS(3357), + [anon_sym_move] = ACTIONS(3357), + [anon_sym_read] = ACTIONS(3357), + [anon_sym_workdir] = ACTIONS(3357), + [anon_sym_write] = ACTIONS(3357), + [anon_sym_from_json] = ACTIONS(3357), + [anon_sym_to_json] = ACTIONS(3357), + [anon_sym_to_string] = ACTIONS(3357), + [anon_sym_to_float] = ACTIONS(3357), + [anon_sym_bash] = ACTIONS(3357), + [anon_sym_fish] = ACTIONS(3357), + [anon_sym_raw] = ACTIONS(3357), + [anon_sym_sh] = ACTIONS(3357), + [anon_sym_zsh] = ACTIONS(3357), + [anon_sym_random] = ACTIONS(3357), + [anon_sym_random_boolean] = ACTIONS(3357), + [anon_sym_random_float] = ACTIONS(3357), + [anon_sym_random_integer] = ACTIONS(3357), + [anon_sym_columns] = ACTIONS(3357), + [anon_sym_rows] = ACTIONS(3357), + [anon_sym_reverse] = ACTIONS(3357), + }, + [691] = { + [ts_builtin_sym_end] = ACTIONS(3351), + [sym_identifier] = ACTIONS(3353), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_RBRACE] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_RPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3351), + [sym_integer] = ACTIONS(3353), + [sym_float] = ACTIONS(3351), + [sym_string] = ACTIONS(3351), + [anon_sym_true] = ACTIONS(3353), + [anon_sym_false] = ACTIONS(3353), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_RBRACK] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_DOT_DOT] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3353), + [anon_sym_DASH] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_SLASH] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_EQ_EQ] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_GT] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_GT_EQ] = ACTIONS(3351), + [anon_sym_LT_EQ] = ACTIONS(3351), + [anon_sym_PLUS_EQ] = ACTIONS(3351), + [anon_sym_DASH_EQ] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3353), + [anon_sym_match] = ACTIONS(3353), + [anon_sym_EQ_GT] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3353), + [anon_sym_asyncfor] = ACTIONS(3351), + [anon_sym_transform] = ACTIONS(3353), + [anon_sym_filter] = ACTIONS(3353), + [anon_sym_find] = ACTIONS(3353), + [anon_sym_remove] = ACTIONS(3353), + [anon_sym_reduce] = ACTIONS(3353), + [anon_sym_select] = ACTIONS(3353), + [anon_sym_insert] = ACTIONS(3353), + [anon_sym_async] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(3353), + [anon_sym_table] = ACTIONS(3353), + [anon_sym_assert] = ACTIONS(3353), + [anon_sym_assert_equal] = ACTIONS(3353), + [anon_sym_download] = ACTIONS(3353), + [anon_sym_help] = ACTIONS(3353), + [anon_sym_length] = ACTIONS(3353), + [anon_sym_output] = ACTIONS(3353), + [anon_sym_output_error] = ACTIONS(3353), + [anon_sym_type] = ACTIONS(3353), + [anon_sym_append] = ACTIONS(3353), + [anon_sym_metadata] = ACTIONS(3353), + [anon_sym_move] = ACTIONS(3353), + [anon_sym_read] = ACTIONS(3353), + [anon_sym_workdir] = ACTIONS(3353), + [anon_sym_write] = ACTIONS(3353), + [anon_sym_from_json] = ACTIONS(3353), + [anon_sym_to_json] = ACTIONS(3353), + [anon_sym_to_string] = ACTIONS(3353), + [anon_sym_to_float] = ACTIONS(3353), + [anon_sym_bash] = ACTIONS(3353), + [anon_sym_fish] = ACTIONS(3353), + [anon_sym_raw] = ACTIONS(3353), + [anon_sym_sh] = ACTIONS(3353), + [anon_sym_zsh] = ACTIONS(3353), + [anon_sym_random] = ACTIONS(3353), + [anon_sym_random_boolean] = ACTIONS(3353), + [anon_sym_random_float] = ACTIONS(3353), + [anon_sym_random_integer] = ACTIONS(3353), + [anon_sym_columns] = ACTIONS(3353), + [anon_sym_rows] = ACTIONS(3353), + [anon_sym_reverse] = ACTIONS(3353), + }, + [692] = { + [sym_expression] = STATE(966), + [sym__expression_kind] = STATE(986), + [aux_sym__expression_list] = STATE(697), + [sym_value] = STATE(986), + [sym_boolean] = STATE(981), + [sym_list] = STATE(981), + [sym_map] = STATE(981), + [sym_index] = STATE(986), + [sym_math] = STATE(986), + [sym_logic] = STATE(986), + [sym_identifier_list] = STATE(2055), + [sym_table] = STATE(981), + [sym_function] = STATE(981), + [sym_function_call] = STATE(986), + [sym__context_defined_function] = STATE(990), + [sym_built_in_function] = STATE(990), + [sym__built_in_function_name] = STATE(692), + [sym_identifier] = ACTIONS(3436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_COMMA] = ACTIONS(2473), + [sym_integer] = ACTIONS(3442), + [sym_float] = ACTIONS(3444), + [sym_string] = ACTIONS(3444), + [anon_sym_true] = ACTIONS(3446), + [anon_sym_false] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_EQ] = ACTIONS(2475), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_PLUS_EQ] = ACTIONS(2473), + [anon_sym_DASH_EQ] = ACTIONS(2473), + [anon_sym_EQ_GT] = ACTIONS(3523), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3525), + [anon_sym_assert] = ACTIONS(3527), + [anon_sym_assert_equal] = ACTIONS(3527), + [anon_sym_download] = ACTIONS(3527), + [anon_sym_help] = ACTIONS(3527), + [anon_sym_length] = ACTIONS(3527), + [anon_sym_output] = ACTIONS(3527), + [anon_sym_output_error] = ACTIONS(3527), + [anon_sym_type] = ACTIONS(3527), + [anon_sym_append] = ACTIONS(3527), + [anon_sym_metadata] = ACTIONS(3527), + [anon_sym_move] = ACTIONS(3527), + [anon_sym_read] = ACTIONS(3527), + [anon_sym_workdir] = ACTIONS(3527), + [anon_sym_write] = ACTIONS(3527), + [anon_sym_from_json] = ACTIONS(3527), + [anon_sym_to_json] = ACTIONS(3527), + [anon_sym_to_string] = ACTIONS(3527), + [anon_sym_to_float] = ACTIONS(3527), + [anon_sym_bash] = ACTIONS(3527), + [anon_sym_fish] = ACTIONS(3527), + [anon_sym_raw] = ACTIONS(3527), + [anon_sym_sh] = ACTIONS(3527), + [anon_sym_zsh] = ACTIONS(3527), + [anon_sym_random] = ACTIONS(3527), + [anon_sym_random_boolean] = ACTIONS(3527), + [anon_sym_random_float] = ACTIONS(3527), + [anon_sym_random_integer] = ACTIONS(3527), + [anon_sym_columns] = ACTIONS(3527), + [anon_sym_rows] = ACTIONS(3527), + [anon_sym_reverse] = ACTIONS(3527), + }, + [693] = { + [sym_math_operator] = STATE(1455), + [sym_logic_operator] = STATE(1453), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3248), + [sym_string] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3529), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_asyncfor] = ACTIONS(3248), + [anon_sym_transform] = ACTIONS(3250), + [anon_sym_filter] = ACTIONS(3250), + [anon_sym_find] = ACTIONS(3250), + [anon_sym_remove] = ACTIONS(3250), + [anon_sym_reduce] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_insert] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_table] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_assert_equal] = ACTIONS(3250), + [anon_sym_download] = ACTIONS(3250), + [anon_sym_help] = ACTIONS(3250), + [anon_sym_length] = ACTIONS(3250), + [anon_sym_output] = ACTIONS(3250), + [anon_sym_output_error] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_append] = ACTIONS(3250), + [anon_sym_metadata] = ACTIONS(3250), + [anon_sym_move] = ACTIONS(3250), + [anon_sym_read] = ACTIONS(3250), + [anon_sym_workdir] = ACTIONS(3250), + [anon_sym_write] = ACTIONS(3250), + [anon_sym_from_json] = ACTIONS(3250), + [anon_sym_to_json] = ACTIONS(3250), + [anon_sym_to_string] = ACTIONS(3250), + [anon_sym_to_float] = ACTIONS(3250), + [anon_sym_bash] = ACTIONS(3250), + [anon_sym_fish] = ACTIONS(3250), + [anon_sym_raw] = ACTIONS(3250), + [anon_sym_sh] = ACTIONS(3250), + [anon_sym_zsh] = ACTIONS(3250), + [anon_sym_random] = ACTIONS(3250), + [anon_sym_random_boolean] = ACTIONS(3250), + [anon_sym_random_float] = ACTIONS(3250), + [anon_sym_random_integer] = ACTIONS(3250), + [anon_sym_columns] = ACTIONS(3250), + [anon_sym_rows] = ACTIONS(3250), + [anon_sym_reverse] = ACTIONS(3250), + }, + [694] = { + [sym_math_operator] = STATE(1455), + [sym_logic_operator] = STATE(1453), + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3254), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3252), + [sym_integer] = ACTIONS(3254), + [sym_float] = ACTIONS(3252), + [sym_string] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_EQ] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_DOT_DOT] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_PLUS_EQ] = ACTIONS(3252), + [anon_sym_DASH_EQ] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_match] = ACTIONS(3254), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_asyncfor] = ACTIONS(3252), + [anon_sym_transform] = ACTIONS(3254), + [anon_sym_filter] = ACTIONS(3254), + [anon_sym_find] = ACTIONS(3254), + [anon_sym_remove] = ACTIONS(3254), + [anon_sym_reduce] = ACTIONS(3254), + [anon_sym_select] = ACTIONS(3254), + [anon_sym_insert] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_table] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_assert_equal] = ACTIONS(3254), + [anon_sym_download] = ACTIONS(3254), + [anon_sym_help] = ACTIONS(3254), + [anon_sym_length] = ACTIONS(3254), + [anon_sym_output] = ACTIONS(3254), + [anon_sym_output_error] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_append] = ACTIONS(3254), + [anon_sym_metadata] = ACTIONS(3254), + [anon_sym_move] = ACTIONS(3254), + [anon_sym_read] = ACTIONS(3254), + [anon_sym_workdir] = ACTIONS(3254), + [anon_sym_write] = ACTIONS(3254), + [anon_sym_from_json] = ACTIONS(3254), + [anon_sym_to_json] = ACTIONS(3254), + [anon_sym_to_string] = ACTIONS(3254), + [anon_sym_to_float] = ACTIONS(3254), + [anon_sym_bash] = ACTIONS(3254), + [anon_sym_fish] = ACTIONS(3254), + [anon_sym_raw] = ACTIONS(3254), + [anon_sym_sh] = ACTIONS(3254), + [anon_sym_zsh] = ACTIONS(3254), + [anon_sym_random] = ACTIONS(3254), + [anon_sym_random_boolean] = ACTIONS(3254), + [anon_sym_random_float] = ACTIONS(3254), + [anon_sym_random_integer] = ACTIONS(3254), + [anon_sym_columns] = ACTIONS(3254), + [anon_sym_rows] = ACTIONS(3254), + [anon_sym_reverse] = ACTIONS(3254), + }, + [695] = { + [sym_expression] = STATE(966), + [sym__expression_kind] = STATE(986), + [aux_sym__expression_list] = STATE(698), + [sym_value] = STATE(986), + [sym_boolean] = STATE(981), + [sym_list] = STATE(981), + [sym_map] = STATE(981), + [sym_index] = STATE(986), + [sym_math] = STATE(986), + [sym_logic] = STATE(986), + [sym_identifier_list] = STATE(2055), + [sym_table] = STATE(981), + [sym_function] = STATE(981), + [sym_function_call] = STATE(986), + [sym__context_defined_function] = STATE(990), + [sym_built_in_function] = STATE(990), + [sym__built_in_function_name] = STATE(692), + [sym_identifier] = ACTIONS(3436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_COMMA] = ACTIONS(2477), + [sym_integer] = ACTIONS(3442), + [sym_float] = ACTIONS(3444), + [sym_string] = ACTIONS(3444), + [anon_sym_true] = ACTIONS(3446), + [anon_sym_false] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_EQ] = ACTIONS(2479), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_PLUS_EQ] = ACTIONS(2477), + [anon_sym_DASH_EQ] = ACTIONS(2477), + [anon_sym_EQ_GT] = ACTIONS(3523), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3525), + [anon_sym_assert] = ACTIONS(3527), + [anon_sym_assert_equal] = ACTIONS(3527), + [anon_sym_download] = ACTIONS(3527), + [anon_sym_help] = ACTIONS(3527), + [anon_sym_length] = ACTIONS(3527), + [anon_sym_output] = ACTIONS(3527), + [anon_sym_output_error] = ACTIONS(3527), + [anon_sym_type] = ACTIONS(3527), + [anon_sym_append] = ACTIONS(3527), + [anon_sym_metadata] = ACTIONS(3527), + [anon_sym_move] = ACTIONS(3527), + [anon_sym_read] = ACTIONS(3527), + [anon_sym_workdir] = ACTIONS(3527), + [anon_sym_write] = ACTIONS(3527), + [anon_sym_from_json] = ACTIONS(3527), + [anon_sym_to_json] = ACTIONS(3527), + [anon_sym_to_string] = ACTIONS(3527), + [anon_sym_to_float] = ACTIONS(3527), + [anon_sym_bash] = ACTIONS(3527), + [anon_sym_fish] = ACTIONS(3527), + [anon_sym_raw] = ACTIONS(3527), + [anon_sym_sh] = ACTIONS(3527), + [anon_sym_zsh] = ACTIONS(3527), + [anon_sym_random] = ACTIONS(3527), + [anon_sym_random_boolean] = ACTIONS(3527), + [anon_sym_random_float] = ACTIONS(3527), + [anon_sym_random_integer] = ACTIONS(3527), + [anon_sym_columns] = ACTIONS(3527), + [anon_sym_rows] = ACTIONS(3527), + [anon_sym_reverse] = ACTIONS(3527), + }, + [696] = { + [ts_builtin_sym_end] = ACTIONS(3333), + [sym_identifier] = ACTIONS(3335), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_RPAREN] = ACTIONS(3333), + [anon_sym_COMMA] = ACTIONS(3333), + [sym_integer] = ACTIONS(3335), + [sym_float] = ACTIONS(3333), + [sym_string] = ACTIONS(3333), + [anon_sym_true] = ACTIONS(3335), + [anon_sym_false] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_RBRACK] = ACTIONS(3333), + [anon_sym_EQ] = ACTIONS(3335), + [anon_sym_COLON] = ACTIONS(3333), + [anon_sym_DOT_DOT] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(3335), + [anon_sym_STAR] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3333), + [anon_sym_PERCENT] = ACTIONS(3333), + [anon_sym_EQ_EQ] = ACTIONS(3333), + [anon_sym_BANG_EQ] = ACTIONS(3333), + [anon_sym_AMP_AMP] = ACTIONS(3333), + [anon_sym_PIPE_PIPE] = ACTIONS(3333), + [anon_sym_GT] = ACTIONS(3335), + [anon_sym_LT] = ACTIONS(3335), + [anon_sym_GT_EQ] = ACTIONS(3333), + [anon_sym_LT_EQ] = ACTIONS(3333), + [anon_sym_PLUS_EQ] = ACTIONS(3333), + [anon_sym_DASH_EQ] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_match] = ACTIONS(3335), + [anon_sym_EQ_GT] = ACTIONS(3333), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_asyncfor] = ACTIONS(3333), + [anon_sym_transform] = ACTIONS(3335), + [anon_sym_filter] = ACTIONS(3335), + [anon_sym_find] = ACTIONS(3335), + [anon_sym_remove] = ACTIONS(3335), + [anon_sym_reduce] = ACTIONS(3335), + [anon_sym_select] = ACTIONS(3335), + [anon_sym_insert] = ACTIONS(3335), + [anon_sym_async] = ACTIONS(3335), + [anon_sym_PIPE] = ACTIONS(3335), + [anon_sym_table] = ACTIONS(3335), + [anon_sym_assert] = ACTIONS(3335), + [anon_sym_assert_equal] = ACTIONS(3335), + [anon_sym_download] = ACTIONS(3335), + [anon_sym_help] = ACTIONS(3335), + [anon_sym_length] = ACTIONS(3335), + [anon_sym_output] = ACTIONS(3335), + [anon_sym_output_error] = ACTIONS(3335), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_append] = ACTIONS(3335), + [anon_sym_metadata] = ACTIONS(3335), + [anon_sym_move] = ACTIONS(3335), + [anon_sym_read] = ACTIONS(3335), + [anon_sym_workdir] = ACTIONS(3335), + [anon_sym_write] = ACTIONS(3335), + [anon_sym_from_json] = ACTIONS(3335), + [anon_sym_to_json] = ACTIONS(3335), + [anon_sym_to_string] = ACTIONS(3335), + [anon_sym_to_float] = ACTIONS(3335), + [anon_sym_bash] = ACTIONS(3335), + [anon_sym_fish] = ACTIONS(3335), + [anon_sym_raw] = ACTIONS(3335), + [anon_sym_sh] = ACTIONS(3335), + [anon_sym_zsh] = ACTIONS(3335), + [anon_sym_random] = ACTIONS(3335), + [anon_sym_random_boolean] = ACTIONS(3335), + [anon_sym_random_float] = ACTIONS(3335), + [anon_sym_random_integer] = ACTIONS(3335), + [anon_sym_columns] = ACTIONS(3335), + [anon_sym_rows] = ACTIONS(3335), + [anon_sym_reverse] = ACTIONS(3335), + }, + [697] = { + [sym_expression] = STATE(966), + [sym__expression_kind] = STATE(986), + [aux_sym__expression_list] = STATE(698), + [sym_value] = STATE(986), + [sym_boolean] = STATE(981), + [sym_list] = STATE(981), + [sym_map] = STATE(981), + [sym_index] = STATE(986), + [sym_math] = STATE(986), + [sym_logic] = STATE(986), + [sym_identifier_list] = STATE(2055), + [sym_table] = STATE(981), + [sym_function] = STATE(981), + [sym_function_call] = STATE(986), + [sym__context_defined_function] = STATE(990), + [sym_built_in_function] = STATE(990), + [sym__built_in_function_name] = STATE(692), + [sym_identifier] = ACTIONS(3436), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_COMMA] = ACTIONS(2443), + [sym_integer] = ACTIONS(3442), + [sym_float] = ACTIONS(3444), + [sym_string] = ACTIONS(3444), + [anon_sym_true] = ACTIONS(3446), + [anon_sym_false] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_EQ] = ACTIONS(2447), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_PLUS_EQ] = ACTIONS(2443), + [anon_sym_DASH_EQ] = ACTIONS(2443), + [anon_sym_EQ_GT] = ACTIONS(3523), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3525), + [anon_sym_assert] = ACTIONS(3527), + [anon_sym_assert_equal] = ACTIONS(3527), + [anon_sym_download] = ACTIONS(3527), + [anon_sym_help] = ACTIONS(3527), + [anon_sym_length] = ACTIONS(3527), + [anon_sym_output] = ACTIONS(3527), + [anon_sym_output_error] = ACTIONS(3527), + [anon_sym_type] = ACTIONS(3527), + [anon_sym_append] = ACTIONS(3527), + [anon_sym_metadata] = ACTIONS(3527), + [anon_sym_move] = ACTIONS(3527), + [anon_sym_read] = ACTIONS(3527), + [anon_sym_workdir] = ACTIONS(3527), + [anon_sym_write] = ACTIONS(3527), + [anon_sym_from_json] = ACTIONS(3527), + [anon_sym_to_json] = ACTIONS(3527), + [anon_sym_to_string] = ACTIONS(3527), + [anon_sym_to_float] = ACTIONS(3527), + [anon_sym_bash] = ACTIONS(3527), + [anon_sym_fish] = ACTIONS(3527), + [anon_sym_raw] = ACTIONS(3527), + [anon_sym_sh] = ACTIONS(3527), + [anon_sym_zsh] = ACTIONS(3527), + [anon_sym_random] = ACTIONS(3527), + [anon_sym_random_boolean] = ACTIONS(3527), + [anon_sym_random_float] = ACTIONS(3527), + [anon_sym_random_integer] = ACTIONS(3527), + [anon_sym_columns] = ACTIONS(3527), + [anon_sym_rows] = ACTIONS(3527), + [anon_sym_reverse] = ACTIONS(3527), + }, + [698] = { + [sym_expression] = STATE(966), + [sym__expression_kind] = STATE(986), + [aux_sym__expression_list] = STATE(698), + [sym_value] = STATE(986), + [sym_boolean] = STATE(981), + [sym_list] = STATE(981), + [sym_map] = STATE(981), + [sym_index] = STATE(986), + [sym_math] = STATE(986), + [sym_logic] = STATE(986), + [sym_identifier_list] = STATE(2055), + [sym_table] = STATE(981), + [sym_function] = STATE(981), + [sym_function_call] = STATE(986), + [sym__context_defined_function] = STATE(990), + [sym_built_in_function] = STATE(990), + [sym__built_in_function_name] = STATE(692), + [sym_identifier] = ACTIONS(3473), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3476), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_COMMA] = ACTIONS(2518), + [sym_integer] = ACTIONS(3482), + [sym_float] = ACTIONS(3485), + [sym_string] = ACTIONS(3485), + [anon_sym_true] = ACTIONS(3488), + [anon_sym_false] = ACTIONS(3488), + [anon_sym_LBRACK] = ACTIONS(3491), + [anon_sym_EQ] = ACTIONS(2541), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_PLUS_EQ] = ACTIONS(2518), + [anon_sym_DASH_EQ] = ACTIONS(2518), + [anon_sym_EQ_GT] = ACTIONS(3531), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(3534), + [anon_sym_assert] = ACTIONS(3537), + [anon_sym_assert_equal] = ACTIONS(3537), + [anon_sym_download] = ACTIONS(3537), + [anon_sym_help] = ACTIONS(3537), + [anon_sym_length] = ACTIONS(3537), + [anon_sym_output] = ACTIONS(3537), + [anon_sym_output_error] = ACTIONS(3537), + [anon_sym_type] = ACTIONS(3537), + [anon_sym_append] = ACTIONS(3537), + [anon_sym_metadata] = ACTIONS(3537), + [anon_sym_move] = ACTIONS(3537), + [anon_sym_read] = ACTIONS(3537), + [anon_sym_workdir] = ACTIONS(3537), + [anon_sym_write] = ACTIONS(3537), + [anon_sym_from_json] = ACTIONS(3537), + [anon_sym_to_json] = ACTIONS(3537), + [anon_sym_to_string] = ACTIONS(3537), + [anon_sym_to_float] = ACTIONS(3537), + [anon_sym_bash] = ACTIONS(3537), + [anon_sym_fish] = ACTIONS(3537), + [anon_sym_raw] = ACTIONS(3537), + [anon_sym_sh] = ACTIONS(3537), + [anon_sym_zsh] = ACTIONS(3537), + [anon_sym_random] = ACTIONS(3537), + [anon_sym_random_boolean] = ACTIONS(3537), + [anon_sym_random_float] = ACTIONS(3537), + [anon_sym_random_integer] = ACTIONS(3537), + [anon_sym_columns] = ACTIONS(3537), + [anon_sym_rows] = ACTIONS(3537), + [anon_sym_reverse] = ACTIONS(3537), + }, + [699] = { + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_RBRACK] = ACTIONS(3275), + [anon_sym_EQ] = ACTIONS(3277), + [anon_sym_COLON] = ACTIONS(3275), + [anon_sym_DOT_DOT] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_STAR] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_PERCENT] = ACTIONS(3275), + [anon_sym_EQ_EQ] = ACTIONS(3275), + [anon_sym_BANG_EQ] = ACTIONS(3275), + [anon_sym_AMP_AMP] = ACTIONS(3275), + [anon_sym_PIPE_PIPE] = ACTIONS(3275), + [anon_sym_GT] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_GT_EQ] = ACTIONS(3275), + [anon_sym_LT_EQ] = ACTIONS(3275), + [anon_sym_PLUS_EQ] = ACTIONS(3275), + [anon_sym_DASH_EQ] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [700] = { + [sym_math_operator] = STATE(1322), + [sym_logic_operator] = STATE(1321), + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3283), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_RPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3281), + [sym_integer] = ACTIONS(3283), + [sym_float] = ACTIONS(3281), + [sym_string] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_RBRACK] = ACTIONS(3281), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_elseif] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_EQ_GT] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_asyncfor] = ACTIONS(3281), + [anon_sym_transform] = ACTIONS(3283), + [anon_sym_filter] = ACTIONS(3283), + [anon_sym_find] = ACTIONS(3283), + [anon_sym_remove] = ACTIONS(3283), + [anon_sym_reduce] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_insert] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_table] = ACTIONS(3283), + [anon_sym_assert] = ACTIONS(3283), + [anon_sym_assert_equal] = ACTIONS(3283), + [anon_sym_download] = ACTIONS(3283), + [anon_sym_help] = ACTIONS(3283), + [anon_sym_length] = ACTIONS(3283), + [anon_sym_output] = ACTIONS(3283), + [anon_sym_output_error] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_append] = ACTIONS(3283), + [anon_sym_metadata] = ACTIONS(3283), + [anon_sym_move] = ACTIONS(3283), + [anon_sym_read] = ACTIONS(3283), + [anon_sym_workdir] = ACTIONS(3283), + [anon_sym_write] = ACTIONS(3283), + [anon_sym_from_json] = ACTIONS(3283), + [anon_sym_to_json] = ACTIONS(3283), + [anon_sym_to_string] = ACTIONS(3283), + [anon_sym_to_float] = ACTIONS(3283), + [anon_sym_bash] = ACTIONS(3283), + [anon_sym_fish] = ACTIONS(3283), + [anon_sym_raw] = ACTIONS(3283), + [anon_sym_sh] = ACTIONS(3283), + [anon_sym_zsh] = ACTIONS(3283), + [anon_sym_random] = ACTIONS(3283), + [anon_sym_random_boolean] = ACTIONS(3283), + [anon_sym_random_float] = ACTIONS(3283), + [anon_sym_random_integer] = ACTIONS(3283), + [anon_sym_columns] = ACTIONS(3283), + [anon_sym_rows] = ACTIONS(3283), + [anon_sym_reverse] = ACTIONS(3283), + }, + [701] = { + [sym_math_operator] = STATE(1455), + [sym_logic_operator] = STATE(1453), + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_EQ] = ACTIONS(3277), + [anon_sym_COLON] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3275), + [anon_sym_DASH_EQ] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [702] = { + [sym_math_operator] = STATE(1362), + [sym_logic_operator] = STATE(1363), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3235), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3540), + [sym_integer] = ACTIONS(3235), + [sym_float] = ACTIONS(3233), + [sym_string] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(243), + [anon_sym_DOT_DOT] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_elseif] = ACTIONS(3233), + [anon_sym_else] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_asyncfor] = ACTIONS(3233), + [anon_sym_transform] = ACTIONS(3235), + [anon_sym_filter] = ACTIONS(3235), + [anon_sym_find] = ACTIONS(3235), + [anon_sym_remove] = ACTIONS(3235), + [anon_sym_reduce] = ACTIONS(3235), + [anon_sym_select] = ACTIONS(3235), + [anon_sym_insert] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_table] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_assert_equal] = ACTIONS(3235), + [anon_sym_download] = ACTIONS(3235), + [anon_sym_help] = ACTIONS(3235), + [anon_sym_length] = ACTIONS(3235), + [anon_sym_output] = ACTIONS(3235), + [anon_sym_output_error] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_append] = ACTIONS(3235), + [anon_sym_metadata] = ACTIONS(3235), + [anon_sym_move] = ACTIONS(3235), + [anon_sym_read] = ACTIONS(3235), + [anon_sym_workdir] = ACTIONS(3235), + [anon_sym_write] = ACTIONS(3235), + [anon_sym_from_json] = ACTIONS(3235), + [anon_sym_to_json] = ACTIONS(3235), + [anon_sym_to_string] = ACTIONS(3235), + [anon_sym_to_float] = ACTIONS(3235), + [anon_sym_bash] = ACTIONS(3235), + [anon_sym_fish] = ACTIONS(3235), + [anon_sym_raw] = ACTIONS(3235), + [anon_sym_sh] = ACTIONS(3235), + [anon_sym_zsh] = ACTIONS(3235), + [anon_sym_random] = ACTIONS(3235), + [anon_sym_random_boolean] = ACTIONS(3235), + [anon_sym_random_float] = ACTIONS(3235), + [anon_sym_random_integer] = ACTIONS(3235), + [anon_sym_columns] = ACTIONS(3235), + [anon_sym_rows] = ACTIONS(3235), + [anon_sym_reverse] = ACTIONS(3235), + }, + [703] = { + [ts_builtin_sym_end] = ACTIONS(3389), + [sym_identifier] = ACTIONS(3391), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3389), + [anon_sym_RPAREN] = ACTIONS(3389), + [anon_sym_COMMA] = ACTIONS(3389), + [sym_integer] = ACTIONS(3391), + [sym_float] = ACTIONS(3389), + [sym_string] = ACTIONS(3389), + [anon_sym_true] = ACTIONS(3391), + [anon_sym_false] = ACTIONS(3391), + [anon_sym_LBRACK] = ACTIONS(3389), + [anon_sym_RBRACK] = ACTIONS(3389), + [anon_sym_EQ] = ACTIONS(3391), + [anon_sym_COLON] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_PLUS] = ACTIONS(3391), + [anon_sym_DASH] = ACTIONS(3391), + [anon_sym_STAR] = ACTIONS(3389), + [anon_sym_SLASH] = ACTIONS(3389), + [anon_sym_PERCENT] = ACTIONS(3389), + [anon_sym_EQ_EQ] = ACTIONS(3389), + [anon_sym_BANG_EQ] = ACTIONS(3389), + [anon_sym_AMP_AMP] = ACTIONS(3389), + [anon_sym_PIPE_PIPE] = ACTIONS(3389), + [anon_sym_GT] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3391), + [anon_sym_GT_EQ] = ACTIONS(3389), + [anon_sym_LT_EQ] = ACTIONS(3389), + [anon_sym_PLUS_EQ] = ACTIONS(3389), + [anon_sym_DASH_EQ] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_match] = ACTIONS(3391), + [anon_sym_EQ_GT] = ACTIONS(3389), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_asyncfor] = ACTIONS(3389), + [anon_sym_transform] = ACTIONS(3391), + [anon_sym_filter] = ACTIONS(3391), + [anon_sym_find] = ACTIONS(3391), + [anon_sym_remove] = ACTIONS(3391), + [anon_sym_reduce] = ACTIONS(3391), + [anon_sym_select] = ACTIONS(3391), + [anon_sym_insert] = ACTIONS(3391), + [anon_sym_async] = ACTIONS(3391), + [anon_sym_PIPE] = ACTIONS(3391), + [anon_sym_table] = ACTIONS(3391), + [anon_sym_assert] = ACTIONS(3391), + [anon_sym_assert_equal] = ACTIONS(3391), + [anon_sym_download] = ACTIONS(3391), + [anon_sym_help] = ACTIONS(3391), + [anon_sym_length] = ACTIONS(3391), + [anon_sym_output] = ACTIONS(3391), + [anon_sym_output_error] = ACTIONS(3391), + [anon_sym_type] = ACTIONS(3391), + [anon_sym_append] = ACTIONS(3391), + [anon_sym_metadata] = ACTIONS(3391), + [anon_sym_move] = ACTIONS(3391), + [anon_sym_read] = ACTIONS(3391), + [anon_sym_workdir] = ACTIONS(3391), + [anon_sym_write] = ACTIONS(3391), + [anon_sym_from_json] = ACTIONS(3391), + [anon_sym_to_json] = ACTIONS(3391), + [anon_sym_to_string] = ACTIONS(3391), + [anon_sym_to_float] = ACTIONS(3391), + [anon_sym_bash] = ACTIONS(3391), + [anon_sym_fish] = ACTIONS(3391), + [anon_sym_raw] = ACTIONS(3391), + [anon_sym_sh] = ACTIONS(3391), + [anon_sym_zsh] = ACTIONS(3391), + [anon_sym_random] = ACTIONS(3391), + [anon_sym_random_boolean] = ACTIONS(3391), + [anon_sym_random_float] = ACTIONS(3391), + [anon_sym_random_integer] = ACTIONS(3391), + [anon_sym_columns] = ACTIONS(3391), + [anon_sym_rows] = ACTIONS(3391), + [anon_sym_reverse] = ACTIONS(3391), + }, + [704] = { + [ts_builtin_sym_end] = ACTIONS(3321), + [sym_identifier] = ACTIONS(3323), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_RPAREN] = ACTIONS(3321), + [anon_sym_COMMA] = ACTIONS(3321), + [sym_integer] = ACTIONS(3323), + [sym_float] = ACTIONS(3321), + [sym_string] = ACTIONS(3321), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_RBRACK] = ACTIONS(3321), + [anon_sym_EQ] = ACTIONS(3323), + [anon_sym_COLON] = ACTIONS(3321), + [anon_sym_DOT_DOT] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3321), + [anon_sym_PERCENT] = ACTIONS(3321), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3323), + [anon_sym_LT] = ACTIONS(3323), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3321), + [anon_sym_PLUS_EQ] = ACTIONS(3321), + [anon_sym_DASH_EQ] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_match] = ACTIONS(3323), + [anon_sym_EQ_GT] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_asyncfor] = ACTIONS(3321), + [anon_sym_transform] = ACTIONS(3323), + [anon_sym_filter] = ACTIONS(3323), + [anon_sym_find] = ACTIONS(3323), + [anon_sym_remove] = ACTIONS(3323), + [anon_sym_reduce] = ACTIONS(3323), + [anon_sym_select] = ACTIONS(3323), + [anon_sym_insert] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_PIPE] = ACTIONS(3323), + [anon_sym_table] = ACTIONS(3323), + [anon_sym_assert] = ACTIONS(3323), + [anon_sym_assert_equal] = ACTIONS(3323), + [anon_sym_download] = ACTIONS(3323), + [anon_sym_help] = ACTIONS(3323), + [anon_sym_length] = ACTIONS(3323), + [anon_sym_output] = ACTIONS(3323), + [anon_sym_output_error] = ACTIONS(3323), + [anon_sym_type] = ACTIONS(3323), + [anon_sym_append] = ACTIONS(3323), + [anon_sym_metadata] = ACTIONS(3323), + [anon_sym_move] = ACTIONS(3323), + [anon_sym_read] = ACTIONS(3323), + [anon_sym_workdir] = ACTIONS(3323), + [anon_sym_write] = ACTIONS(3323), + [anon_sym_from_json] = ACTIONS(3323), + [anon_sym_to_json] = ACTIONS(3323), + [anon_sym_to_string] = ACTIONS(3323), + [anon_sym_to_float] = ACTIONS(3323), + [anon_sym_bash] = ACTIONS(3323), + [anon_sym_fish] = ACTIONS(3323), + [anon_sym_raw] = ACTIONS(3323), + [anon_sym_sh] = ACTIONS(3323), + [anon_sym_zsh] = ACTIONS(3323), + [anon_sym_random] = ACTIONS(3323), + [anon_sym_random_boolean] = ACTIONS(3323), + [anon_sym_random_float] = ACTIONS(3323), + [anon_sym_random_integer] = ACTIONS(3323), + [anon_sym_columns] = ACTIONS(3323), + [anon_sym_rows] = ACTIONS(3323), + [anon_sym_reverse] = ACTIONS(3323), + }, + [705] = { + [ts_builtin_sym_end] = ACTIONS(3363), + [sym_identifier] = ACTIONS(3365), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3363), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_RPAREN] = ACTIONS(3363), + [anon_sym_COMMA] = ACTIONS(3363), + [sym_integer] = ACTIONS(3365), + [sym_float] = ACTIONS(3363), + [sym_string] = ACTIONS(3363), + [anon_sym_true] = ACTIONS(3365), + [anon_sym_false] = ACTIONS(3365), + [anon_sym_LBRACK] = ACTIONS(3363), + [anon_sym_RBRACK] = ACTIONS(3363), + [anon_sym_EQ] = ACTIONS(3365), + [anon_sym_COLON] = ACTIONS(3363), + [anon_sym_DOT_DOT] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3365), + [anon_sym_DASH] = ACTIONS(3365), + [anon_sym_STAR] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_PERCENT] = ACTIONS(3363), + [anon_sym_EQ_EQ] = ACTIONS(3363), + [anon_sym_BANG_EQ] = ACTIONS(3363), + [anon_sym_AMP_AMP] = ACTIONS(3363), + [anon_sym_PIPE_PIPE] = ACTIONS(3363), + [anon_sym_GT] = ACTIONS(3365), + [anon_sym_LT] = ACTIONS(3365), + [anon_sym_GT_EQ] = ACTIONS(3363), + [anon_sym_LT_EQ] = ACTIONS(3363), + [anon_sym_PLUS_EQ] = ACTIONS(3363), + [anon_sym_DASH_EQ] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3365), + [anon_sym_match] = ACTIONS(3365), + [anon_sym_EQ_GT] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3365), + [anon_sym_for] = ACTIONS(3365), + [anon_sym_asyncfor] = ACTIONS(3363), + [anon_sym_transform] = ACTIONS(3365), + [anon_sym_filter] = ACTIONS(3365), + [anon_sym_find] = ACTIONS(3365), + [anon_sym_remove] = ACTIONS(3365), + [anon_sym_reduce] = ACTIONS(3365), + [anon_sym_select] = ACTIONS(3365), + [anon_sym_insert] = ACTIONS(3365), + [anon_sym_async] = ACTIONS(3365), + [anon_sym_PIPE] = ACTIONS(3365), + [anon_sym_table] = ACTIONS(3365), + [anon_sym_assert] = ACTIONS(3365), + [anon_sym_assert_equal] = ACTIONS(3365), + [anon_sym_download] = ACTIONS(3365), + [anon_sym_help] = ACTIONS(3365), + [anon_sym_length] = ACTIONS(3365), + [anon_sym_output] = ACTIONS(3365), + [anon_sym_output_error] = ACTIONS(3365), + [anon_sym_type] = ACTIONS(3365), + [anon_sym_append] = ACTIONS(3365), + [anon_sym_metadata] = ACTIONS(3365), + [anon_sym_move] = ACTIONS(3365), + [anon_sym_read] = ACTIONS(3365), + [anon_sym_workdir] = ACTIONS(3365), + [anon_sym_write] = ACTIONS(3365), + [anon_sym_from_json] = ACTIONS(3365), + [anon_sym_to_json] = ACTIONS(3365), + [anon_sym_to_string] = ACTIONS(3365), + [anon_sym_to_float] = ACTIONS(3365), + [anon_sym_bash] = ACTIONS(3365), + [anon_sym_fish] = ACTIONS(3365), + [anon_sym_raw] = ACTIONS(3365), + [anon_sym_sh] = ACTIONS(3365), + [anon_sym_zsh] = ACTIONS(3365), + [anon_sym_random] = ACTIONS(3365), + [anon_sym_random_boolean] = ACTIONS(3365), + [anon_sym_random_float] = ACTIONS(3365), + [anon_sym_random_integer] = ACTIONS(3365), + [anon_sym_columns] = ACTIONS(3365), + [anon_sym_rows] = ACTIONS(3365), + [anon_sym_reverse] = ACTIONS(3365), + }, + [706] = { + [ts_builtin_sym_end] = ACTIONS(3401), + [sym_identifier] = ACTIONS(3403), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_RBRACE] = ACTIONS(3401), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_RPAREN] = ACTIONS(3401), + [anon_sym_COMMA] = ACTIONS(3401), + [sym_integer] = ACTIONS(3403), + [sym_float] = ACTIONS(3401), + [sym_string] = ACTIONS(3401), + [anon_sym_true] = ACTIONS(3403), + [anon_sym_false] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_RBRACK] = ACTIONS(3401), + [anon_sym_EQ] = ACTIONS(3403), + [anon_sym_COLON] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3403), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_STAR] = ACTIONS(3401), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_PERCENT] = ACTIONS(3401), + [anon_sym_EQ_EQ] = ACTIONS(3401), + [anon_sym_BANG_EQ] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_PIPE_PIPE] = ACTIONS(3401), + [anon_sym_GT] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_GT_EQ] = ACTIONS(3401), + [anon_sym_LT_EQ] = ACTIONS(3401), + [anon_sym_PLUS_EQ] = ACTIONS(3401), + [anon_sym_DASH_EQ] = ACTIONS(3401), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_match] = ACTIONS(3403), + [anon_sym_EQ_GT] = ACTIONS(3401), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_asyncfor] = ACTIONS(3401), + [anon_sym_transform] = ACTIONS(3403), + [anon_sym_filter] = ACTIONS(3403), + [anon_sym_find] = ACTIONS(3403), + [anon_sym_remove] = ACTIONS(3403), + [anon_sym_reduce] = ACTIONS(3403), + [anon_sym_select] = ACTIONS(3403), + [anon_sym_insert] = ACTIONS(3403), + [anon_sym_async] = ACTIONS(3403), + [anon_sym_PIPE] = ACTIONS(3403), + [anon_sym_table] = ACTIONS(3403), + [anon_sym_assert] = ACTIONS(3403), + [anon_sym_assert_equal] = ACTIONS(3403), + [anon_sym_download] = ACTIONS(3403), + [anon_sym_help] = ACTIONS(3403), + [anon_sym_length] = ACTIONS(3403), + [anon_sym_output] = ACTIONS(3403), + [anon_sym_output_error] = ACTIONS(3403), + [anon_sym_type] = ACTIONS(3403), + [anon_sym_append] = ACTIONS(3403), + [anon_sym_metadata] = ACTIONS(3403), + [anon_sym_move] = ACTIONS(3403), + [anon_sym_read] = ACTIONS(3403), + [anon_sym_workdir] = ACTIONS(3403), + [anon_sym_write] = ACTIONS(3403), + [anon_sym_from_json] = ACTIONS(3403), + [anon_sym_to_json] = ACTIONS(3403), + [anon_sym_to_string] = ACTIONS(3403), + [anon_sym_to_float] = ACTIONS(3403), + [anon_sym_bash] = ACTIONS(3403), + [anon_sym_fish] = ACTIONS(3403), + [anon_sym_raw] = ACTIONS(3403), + [anon_sym_sh] = ACTIONS(3403), + [anon_sym_zsh] = ACTIONS(3403), + [anon_sym_random] = ACTIONS(3403), + [anon_sym_random_boolean] = ACTIONS(3403), + [anon_sym_random_float] = ACTIONS(3403), + [anon_sym_random_integer] = ACTIONS(3403), + [anon_sym_columns] = ACTIONS(3403), + [anon_sym_rows] = ACTIONS(3403), + [anon_sym_reverse] = ACTIONS(3403), + }, + [707] = { + [sym_expression] = STATE(968), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(707), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1762), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(726), + [sym_identifier] = ACTIONS(3542), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3545), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(3548), + [anon_sym_RPAREN] = ACTIONS(2518), + [anon_sym_COMMA] = ACTIONS(2518), + [sym_integer] = ACTIONS(3551), + [sym_float] = ACTIONS(3554), + [sym_string] = ACTIONS(3554), + [anon_sym_true] = ACTIONS(3557), + [anon_sym_false] = ACTIONS(3557), + [anon_sym_LBRACK] = ACTIONS(3560), + [anon_sym_RBRACK] = ACTIONS(2518), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_EQ_GT] = ACTIONS(3563), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(3566), + [anon_sym_assert] = ACTIONS(3569), + [anon_sym_assert_equal] = ACTIONS(3569), + [anon_sym_download] = ACTIONS(3569), + [anon_sym_help] = ACTIONS(3569), + [anon_sym_length] = ACTIONS(3569), + [anon_sym_output] = ACTIONS(3569), + [anon_sym_output_error] = ACTIONS(3569), + [anon_sym_type] = ACTIONS(3569), + [anon_sym_append] = ACTIONS(3569), + [anon_sym_metadata] = ACTIONS(3569), + [anon_sym_move] = ACTIONS(3569), + [anon_sym_read] = ACTIONS(3569), + [anon_sym_workdir] = ACTIONS(3569), + [anon_sym_write] = ACTIONS(3569), + [anon_sym_from_json] = ACTIONS(3569), + [anon_sym_to_json] = ACTIONS(3569), + [anon_sym_to_string] = ACTIONS(3569), + [anon_sym_to_float] = ACTIONS(3569), + [anon_sym_bash] = ACTIONS(3569), + [anon_sym_fish] = ACTIONS(3569), + [anon_sym_raw] = ACTIONS(3569), + [anon_sym_sh] = ACTIONS(3569), + [anon_sym_zsh] = ACTIONS(3569), + [anon_sym_random] = ACTIONS(3569), + [anon_sym_random_boolean] = ACTIONS(3569), + [anon_sym_random_float] = ACTIONS(3569), + [anon_sym_random_integer] = ACTIONS(3569), + [anon_sym_columns] = ACTIONS(3569), + [anon_sym_rows] = ACTIONS(3569), + [anon_sym_reverse] = ACTIONS(3569), + }, + [708] = { + [sym_else_if] = STATE(778), + [sym_else] = STATE(857), + [aux_sym_if_else_repeat1] = STATE(778), + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [sym_integer] = ACTIONS(3231), + [sym_float] = ACTIONS(3229), + [sym_string] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_COLON] = ACTIONS(3229), + [anon_sym_DOT_DOT] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_elseif] = ACTIONS(3572), + [anon_sym_else] = ACTIONS(3574), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_asyncfor] = ACTIONS(3229), + [anon_sym_transform] = ACTIONS(3231), + [anon_sym_filter] = ACTIONS(3231), + [anon_sym_find] = ACTIONS(3231), + [anon_sym_remove] = ACTIONS(3231), + [anon_sym_reduce] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_insert] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_table] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_assert_equal] = ACTIONS(3231), + [anon_sym_download] = ACTIONS(3231), + [anon_sym_help] = ACTIONS(3231), + [anon_sym_length] = ACTIONS(3231), + [anon_sym_output] = ACTIONS(3231), + [anon_sym_output_error] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_append] = ACTIONS(3231), + [anon_sym_metadata] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_read] = ACTIONS(3231), + [anon_sym_workdir] = ACTIONS(3231), + [anon_sym_write] = ACTIONS(3231), + [anon_sym_from_json] = ACTIONS(3231), + [anon_sym_to_json] = ACTIONS(3231), + [anon_sym_to_string] = ACTIONS(3231), + [anon_sym_to_float] = ACTIONS(3231), + [anon_sym_bash] = ACTIONS(3231), + [anon_sym_fish] = ACTIONS(3231), + [anon_sym_raw] = ACTIONS(3231), + [anon_sym_sh] = ACTIONS(3231), + [anon_sym_zsh] = ACTIONS(3231), + [anon_sym_random] = ACTIONS(3231), + [anon_sym_random_boolean] = ACTIONS(3231), + [anon_sym_random_float] = ACTIONS(3231), + [anon_sym_random_integer] = ACTIONS(3231), + [anon_sym_columns] = ACTIONS(3231), + [anon_sym_rows] = ACTIONS(3231), + [anon_sym_reverse] = ACTIONS(3231), + }, + [709] = { + [sym_expression] = STATE(968), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(707), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1762), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(726), + [sym_identifier] = ACTIONS(3576), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2443), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_RBRACK] = ACTIONS(2443), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_GT] = ACTIONS(3578), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3580), + [anon_sym_assert] = ACTIONS(3582), + [anon_sym_assert_equal] = ACTIONS(3582), + [anon_sym_download] = ACTIONS(3582), + [anon_sym_help] = ACTIONS(3582), + [anon_sym_length] = ACTIONS(3582), + [anon_sym_output] = ACTIONS(3582), + [anon_sym_output_error] = ACTIONS(3582), + [anon_sym_type] = ACTIONS(3582), + [anon_sym_append] = ACTIONS(3582), + [anon_sym_metadata] = ACTIONS(3582), + [anon_sym_move] = ACTIONS(3582), + [anon_sym_read] = ACTIONS(3582), + [anon_sym_workdir] = ACTIONS(3582), + [anon_sym_write] = ACTIONS(3582), + [anon_sym_from_json] = ACTIONS(3582), + [anon_sym_to_json] = ACTIONS(3582), + [anon_sym_to_string] = ACTIONS(3582), + [anon_sym_to_float] = ACTIONS(3582), + [anon_sym_bash] = ACTIONS(3582), + [anon_sym_fish] = ACTIONS(3582), + [anon_sym_raw] = ACTIONS(3582), + [anon_sym_sh] = ACTIONS(3582), + [anon_sym_zsh] = ACTIONS(3582), + [anon_sym_random] = ACTIONS(3582), + [anon_sym_random_boolean] = ACTIONS(3582), + [anon_sym_random_float] = ACTIONS(3582), + [anon_sym_random_integer] = ACTIONS(3582), + [anon_sym_columns] = ACTIONS(3582), + [anon_sym_rows] = ACTIONS(3582), + [anon_sym_reverse] = ACTIONS(3582), + }, + [710] = { + [sym_else_if] = STATE(708), + [sym_else] = STATE(878), + [aux_sym_if_else_repeat1] = STATE(708), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_RPAREN] = ACTIONS(3219), + [sym_integer] = ACTIONS(3221), + [sym_float] = ACTIONS(3219), + [sym_string] = ACTIONS(3219), + [anon_sym_true] = ACTIONS(3221), + [anon_sym_false] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_elseif] = ACTIONS(3572), + [anon_sym_else] = ACTIONS(3574), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_EQ_GT] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_asyncfor] = ACTIONS(3219), + [anon_sym_transform] = ACTIONS(3221), + [anon_sym_filter] = ACTIONS(3221), + [anon_sym_find] = ACTIONS(3221), + [anon_sym_remove] = ACTIONS(3221), + [anon_sym_reduce] = ACTIONS(3221), + [anon_sym_select] = ACTIONS(3221), + [anon_sym_insert] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_table] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_assert_equal] = ACTIONS(3221), + [anon_sym_download] = ACTIONS(3221), + [anon_sym_help] = ACTIONS(3221), + [anon_sym_length] = ACTIONS(3221), + [anon_sym_output] = ACTIONS(3221), + [anon_sym_output_error] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_append] = ACTIONS(3221), + [anon_sym_metadata] = ACTIONS(3221), + [anon_sym_move] = ACTIONS(3221), + [anon_sym_read] = ACTIONS(3221), + [anon_sym_workdir] = ACTIONS(3221), + [anon_sym_write] = ACTIONS(3221), + [anon_sym_from_json] = ACTIONS(3221), + [anon_sym_to_json] = ACTIONS(3221), + [anon_sym_to_string] = ACTIONS(3221), + [anon_sym_to_float] = ACTIONS(3221), + [anon_sym_bash] = ACTIONS(3221), + [anon_sym_fish] = ACTIONS(3221), + [anon_sym_raw] = ACTIONS(3221), + [anon_sym_sh] = ACTIONS(3221), + [anon_sym_zsh] = ACTIONS(3221), + [anon_sym_random] = ACTIONS(3221), + [anon_sym_random_boolean] = ACTIONS(3221), + [anon_sym_random_float] = ACTIONS(3221), + [anon_sym_random_integer] = ACTIONS(3221), + [anon_sym_columns] = ACTIONS(3221), + [anon_sym_rows] = ACTIONS(3221), + [anon_sym_reverse] = ACTIONS(3221), + }, + [711] = { + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [anon_sym_COMMA] = ACTIONS(3229), + [sym_integer] = ACTIONS(3231), + [sym_float] = ACTIONS(3229), + [sym_string] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_RBRACK] = ACTIONS(3229), + [anon_sym_EQ] = ACTIONS(3231), + [anon_sym_COLON] = ACTIONS(3229), + [anon_sym_DOT_DOT] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_PLUS_EQ] = ACTIONS(3229), + [anon_sym_DASH_EQ] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_asyncfor] = ACTIONS(3229), + [anon_sym_transform] = ACTIONS(3231), + [anon_sym_filter] = ACTIONS(3231), + [anon_sym_find] = ACTIONS(3231), + [anon_sym_remove] = ACTIONS(3231), + [anon_sym_reduce] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_insert] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_table] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_assert_equal] = ACTIONS(3231), + [anon_sym_download] = ACTIONS(3231), + [anon_sym_help] = ACTIONS(3231), + [anon_sym_length] = ACTIONS(3231), + [anon_sym_output] = ACTIONS(3231), + [anon_sym_output_error] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_append] = ACTIONS(3231), + [anon_sym_metadata] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_read] = ACTIONS(3231), + [anon_sym_workdir] = ACTIONS(3231), + [anon_sym_write] = ACTIONS(3231), + [anon_sym_from_json] = ACTIONS(3231), + [anon_sym_to_json] = ACTIONS(3231), + [anon_sym_to_string] = ACTIONS(3231), + [anon_sym_to_float] = ACTIONS(3231), + [anon_sym_bash] = ACTIONS(3231), + [anon_sym_fish] = ACTIONS(3231), + [anon_sym_raw] = ACTIONS(3231), + [anon_sym_sh] = ACTIONS(3231), + [anon_sym_zsh] = ACTIONS(3231), + [anon_sym_random] = ACTIONS(3231), + [anon_sym_random_boolean] = ACTIONS(3231), + [anon_sym_random_float] = ACTIONS(3231), + [anon_sym_random_integer] = ACTIONS(3231), + [anon_sym_columns] = ACTIONS(3231), + [anon_sym_rows] = ACTIONS(3231), + [anon_sym_reverse] = ACTIONS(3231), + }, + [712] = { + [ts_builtin_sym_end] = ACTIONS(3405), + [sym_identifier] = ACTIONS(3407), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_RBRACE] = ACTIONS(3405), + [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_LPAREN] = ACTIONS(3405), + [anon_sym_RPAREN] = ACTIONS(3405), + [anon_sym_COMMA] = ACTIONS(3405), + [sym_integer] = ACTIONS(3407), + [sym_float] = ACTIONS(3405), + [sym_string] = ACTIONS(3405), + [anon_sym_true] = ACTIONS(3407), + [anon_sym_false] = ACTIONS(3407), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_RBRACK] = ACTIONS(3405), + [anon_sym_EQ] = ACTIONS(3407), + [anon_sym_COLON] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(3405), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(3405), + [anon_sym_SLASH] = ACTIONS(3405), + [anon_sym_PERCENT] = ACTIONS(3405), + [anon_sym_EQ_EQ] = ACTIONS(3405), + [anon_sym_BANG_EQ] = ACTIONS(3405), + [anon_sym_AMP_AMP] = ACTIONS(3405), + [anon_sym_PIPE_PIPE] = ACTIONS(3405), + [anon_sym_GT] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3407), + [anon_sym_GT_EQ] = ACTIONS(3405), + [anon_sym_LT_EQ] = ACTIONS(3405), + [anon_sym_PLUS_EQ] = ACTIONS(3405), + [anon_sym_DASH_EQ] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3407), + [anon_sym_match] = ACTIONS(3407), + [anon_sym_EQ_GT] = ACTIONS(3405), + [anon_sym_while] = ACTIONS(3407), + [anon_sym_for] = ACTIONS(3407), + [anon_sym_asyncfor] = ACTIONS(3405), + [anon_sym_transform] = ACTIONS(3407), + [anon_sym_filter] = ACTIONS(3407), + [anon_sym_find] = ACTIONS(3407), + [anon_sym_remove] = ACTIONS(3407), + [anon_sym_reduce] = ACTIONS(3407), + [anon_sym_select] = ACTIONS(3407), + [anon_sym_insert] = ACTIONS(3407), + [anon_sym_async] = ACTIONS(3407), + [anon_sym_PIPE] = ACTIONS(3407), + [anon_sym_table] = ACTIONS(3407), + [anon_sym_assert] = ACTIONS(3407), + [anon_sym_assert_equal] = ACTIONS(3407), + [anon_sym_download] = ACTIONS(3407), + [anon_sym_help] = ACTIONS(3407), + [anon_sym_length] = ACTIONS(3407), + [anon_sym_output] = ACTIONS(3407), + [anon_sym_output_error] = ACTIONS(3407), + [anon_sym_type] = ACTIONS(3407), + [anon_sym_append] = ACTIONS(3407), + [anon_sym_metadata] = ACTIONS(3407), + [anon_sym_move] = ACTIONS(3407), + [anon_sym_read] = ACTIONS(3407), + [anon_sym_workdir] = ACTIONS(3407), + [anon_sym_write] = ACTIONS(3407), + [anon_sym_from_json] = ACTIONS(3407), + [anon_sym_to_json] = ACTIONS(3407), + [anon_sym_to_string] = ACTIONS(3407), + [anon_sym_to_float] = ACTIONS(3407), + [anon_sym_bash] = ACTIONS(3407), + [anon_sym_fish] = ACTIONS(3407), + [anon_sym_raw] = ACTIONS(3407), + [anon_sym_sh] = ACTIONS(3407), + [anon_sym_zsh] = ACTIONS(3407), + [anon_sym_random] = ACTIONS(3407), + [anon_sym_random_boolean] = ACTIONS(3407), + [anon_sym_random_float] = ACTIONS(3407), + [anon_sym_random_integer] = ACTIONS(3407), + [anon_sym_columns] = ACTIONS(3407), + [anon_sym_rows] = ACTIONS(3407), + [anon_sym_reverse] = ACTIONS(3407), + }, + [713] = { + [ts_builtin_sym_end] = ACTIONS(3409), + [sym_identifier] = ACTIONS(3411), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_RBRACE] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), + [anon_sym_RPAREN] = ACTIONS(3409), + [anon_sym_COMMA] = ACTIONS(3409), + [sym_integer] = ACTIONS(3411), + [sym_float] = ACTIONS(3409), + [sym_string] = ACTIONS(3409), + [anon_sym_true] = ACTIONS(3411), + [anon_sym_false] = ACTIONS(3411), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_RBRACK] = ACTIONS(3409), + [anon_sym_EQ] = ACTIONS(3411), + [anon_sym_COLON] = ACTIONS(3409), + [anon_sym_DOT_DOT] = ACTIONS(3409), + [anon_sym_PLUS] = ACTIONS(3411), + [anon_sym_DASH] = ACTIONS(3411), + [anon_sym_STAR] = ACTIONS(3409), + [anon_sym_SLASH] = ACTIONS(3409), + [anon_sym_PERCENT] = ACTIONS(3409), + [anon_sym_EQ_EQ] = ACTIONS(3409), + [anon_sym_BANG_EQ] = ACTIONS(3409), + [anon_sym_AMP_AMP] = ACTIONS(3409), + [anon_sym_PIPE_PIPE] = ACTIONS(3409), + [anon_sym_GT] = ACTIONS(3411), + [anon_sym_LT] = ACTIONS(3411), + [anon_sym_GT_EQ] = ACTIONS(3409), + [anon_sym_LT_EQ] = ACTIONS(3409), + [anon_sym_PLUS_EQ] = ACTIONS(3409), + [anon_sym_DASH_EQ] = ACTIONS(3409), + [anon_sym_if] = ACTIONS(3411), + [anon_sym_match] = ACTIONS(3411), + [anon_sym_EQ_GT] = ACTIONS(3409), + [anon_sym_while] = ACTIONS(3411), + [anon_sym_for] = ACTIONS(3411), + [anon_sym_asyncfor] = ACTIONS(3409), + [anon_sym_transform] = ACTIONS(3411), + [anon_sym_filter] = ACTIONS(3411), + [anon_sym_find] = ACTIONS(3411), + [anon_sym_remove] = ACTIONS(3411), + [anon_sym_reduce] = ACTIONS(3411), + [anon_sym_select] = ACTIONS(3411), + [anon_sym_insert] = ACTIONS(3411), + [anon_sym_async] = ACTIONS(3411), + [anon_sym_PIPE] = ACTIONS(3411), + [anon_sym_table] = ACTIONS(3411), + [anon_sym_assert] = ACTIONS(3411), + [anon_sym_assert_equal] = ACTIONS(3411), + [anon_sym_download] = ACTIONS(3411), + [anon_sym_help] = ACTIONS(3411), + [anon_sym_length] = ACTIONS(3411), + [anon_sym_output] = ACTIONS(3411), + [anon_sym_output_error] = ACTIONS(3411), + [anon_sym_type] = ACTIONS(3411), + [anon_sym_append] = ACTIONS(3411), + [anon_sym_metadata] = ACTIONS(3411), + [anon_sym_move] = ACTIONS(3411), + [anon_sym_read] = ACTIONS(3411), + [anon_sym_workdir] = ACTIONS(3411), + [anon_sym_write] = ACTIONS(3411), + [anon_sym_from_json] = ACTIONS(3411), + [anon_sym_to_json] = ACTIONS(3411), + [anon_sym_to_string] = ACTIONS(3411), + [anon_sym_to_float] = ACTIONS(3411), + [anon_sym_bash] = ACTIONS(3411), + [anon_sym_fish] = ACTIONS(3411), + [anon_sym_raw] = ACTIONS(3411), + [anon_sym_sh] = ACTIONS(3411), + [anon_sym_zsh] = ACTIONS(3411), + [anon_sym_random] = ACTIONS(3411), + [anon_sym_random_boolean] = ACTIONS(3411), + [anon_sym_random_float] = ACTIONS(3411), + [anon_sym_random_integer] = ACTIONS(3411), + [anon_sym_columns] = ACTIONS(3411), + [anon_sym_rows] = ACTIONS(3411), + [anon_sym_reverse] = ACTIONS(3411), + }, + [714] = { + [sym_math_operator] = STATE(1322), + [sym_logic_operator] = STATE(1321), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_RPAREN] = ACTIONS(3244), + [anon_sym_COMMA] = ACTIONS(3244), + [sym_integer] = ACTIONS(3246), + [sym_float] = ACTIONS(3244), + [sym_string] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_RBRACK] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_elseif] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_asyncfor] = ACTIONS(3244), + [anon_sym_transform] = ACTIONS(3246), + [anon_sym_filter] = ACTIONS(3246), + [anon_sym_find] = ACTIONS(3246), + [anon_sym_remove] = ACTIONS(3246), + [anon_sym_reduce] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_insert] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_table] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_assert_equal] = ACTIONS(3246), + [anon_sym_download] = ACTIONS(3246), + [anon_sym_help] = ACTIONS(3246), + [anon_sym_length] = ACTIONS(3246), + [anon_sym_output] = ACTIONS(3246), + [anon_sym_output_error] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_append] = ACTIONS(3246), + [anon_sym_metadata] = ACTIONS(3246), + [anon_sym_move] = ACTIONS(3246), + [anon_sym_read] = ACTIONS(3246), + [anon_sym_workdir] = ACTIONS(3246), + [anon_sym_write] = ACTIONS(3246), + [anon_sym_from_json] = ACTIONS(3246), + [anon_sym_to_json] = ACTIONS(3246), + [anon_sym_to_string] = ACTIONS(3246), + [anon_sym_to_float] = ACTIONS(3246), + [anon_sym_bash] = ACTIONS(3246), + [anon_sym_fish] = ACTIONS(3246), + [anon_sym_raw] = ACTIONS(3246), + [anon_sym_sh] = ACTIONS(3246), + [anon_sym_zsh] = ACTIONS(3246), + [anon_sym_random] = ACTIONS(3246), + [anon_sym_random_boolean] = ACTIONS(3246), + [anon_sym_random_float] = ACTIONS(3246), + [anon_sym_random_integer] = ACTIONS(3246), + [anon_sym_columns] = ACTIONS(3246), + [anon_sym_rows] = ACTIONS(3246), + [anon_sym_reverse] = ACTIONS(3246), + }, + [715] = { + [sym_math_operator] = STATE(1322), + [sym_logic_operator] = STATE(1321), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3242), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [sym_integer] = ACTIONS(3242), + [sym_float] = ACTIONS(3240), + [sym_string] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_elseif] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_asyncfor] = ACTIONS(3240), + [anon_sym_transform] = ACTIONS(3242), + [anon_sym_filter] = ACTIONS(3242), + [anon_sym_find] = ACTIONS(3242), + [anon_sym_remove] = ACTIONS(3242), + [anon_sym_reduce] = ACTIONS(3242), + [anon_sym_select] = ACTIONS(3242), + [anon_sym_insert] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_table] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_assert_equal] = ACTIONS(3242), + [anon_sym_download] = ACTIONS(3242), + [anon_sym_help] = ACTIONS(3242), + [anon_sym_length] = ACTIONS(3242), + [anon_sym_output] = ACTIONS(3242), + [anon_sym_output_error] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_append] = ACTIONS(3242), + [anon_sym_metadata] = ACTIONS(3242), + [anon_sym_move] = ACTIONS(3242), + [anon_sym_read] = ACTIONS(3242), + [anon_sym_workdir] = ACTIONS(3242), + [anon_sym_write] = ACTIONS(3242), + [anon_sym_from_json] = ACTIONS(3242), + [anon_sym_to_json] = ACTIONS(3242), + [anon_sym_to_string] = ACTIONS(3242), + [anon_sym_to_float] = ACTIONS(3242), + [anon_sym_bash] = ACTIONS(3242), + [anon_sym_fish] = ACTIONS(3242), + [anon_sym_raw] = ACTIONS(3242), + [anon_sym_sh] = ACTIONS(3242), + [anon_sym_zsh] = ACTIONS(3242), + [anon_sym_random] = ACTIONS(3242), + [anon_sym_random_boolean] = ACTIONS(3242), + [anon_sym_random_float] = ACTIONS(3242), + [anon_sym_random_integer] = ACTIONS(3242), + [anon_sym_columns] = ACTIONS(3242), + [anon_sym_rows] = ACTIONS(3242), + [anon_sym_reverse] = ACTIONS(3242), + }, + [716] = { + [sym_expression] = STATE(968), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(707), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1762), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(726), + [sym_identifier] = ACTIONS(3576), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_RPAREN] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(2477), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_RBRACK] = ACTIONS(2477), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_EQ_GT] = ACTIONS(3578), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3580), + [anon_sym_assert] = ACTIONS(3582), + [anon_sym_assert_equal] = ACTIONS(3582), + [anon_sym_download] = ACTIONS(3582), + [anon_sym_help] = ACTIONS(3582), + [anon_sym_length] = ACTIONS(3582), + [anon_sym_output] = ACTIONS(3582), + [anon_sym_output_error] = ACTIONS(3582), + [anon_sym_type] = ACTIONS(3582), + [anon_sym_append] = ACTIONS(3582), + [anon_sym_metadata] = ACTIONS(3582), + [anon_sym_move] = ACTIONS(3582), + [anon_sym_read] = ACTIONS(3582), + [anon_sym_workdir] = ACTIONS(3582), + [anon_sym_write] = ACTIONS(3582), + [anon_sym_from_json] = ACTIONS(3582), + [anon_sym_to_json] = ACTIONS(3582), + [anon_sym_to_string] = ACTIONS(3582), + [anon_sym_to_float] = ACTIONS(3582), + [anon_sym_bash] = ACTIONS(3582), + [anon_sym_fish] = ACTIONS(3582), + [anon_sym_raw] = ACTIONS(3582), + [anon_sym_sh] = ACTIONS(3582), + [anon_sym_zsh] = ACTIONS(3582), + [anon_sym_random] = ACTIONS(3582), + [anon_sym_random_boolean] = ACTIONS(3582), + [anon_sym_random_float] = ACTIONS(3582), + [anon_sym_random_integer] = ACTIONS(3582), + [anon_sym_columns] = ACTIONS(3582), + [anon_sym_rows] = ACTIONS(3582), + [anon_sym_reverse] = ACTIONS(3582), + }, + [717] = { + [ts_builtin_sym_end] = ACTIONS(3375), + [sym_identifier] = ACTIONS(3377), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_RPAREN] = ACTIONS(3375), + [anon_sym_COMMA] = ACTIONS(3375), + [sym_integer] = ACTIONS(3377), + [sym_float] = ACTIONS(3375), + [sym_string] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_RBRACK] = ACTIONS(3375), + [anon_sym_EQ] = ACTIONS(3377), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_DOT_DOT] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3377), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_STAR] = ACTIONS(3375), + [anon_sym_SLASH] = ACTIONS(3375), + [anon_sym_PERCENT] = ACTIONS(3375), + [anon_sym_EQ_EQ] = ACTIONS(3375), + [anon_sym_BANG_EQ] = ACTIONS(3375), + [anon_sym_AMP_AMP] = ACTIONS(3375), + [anon_sym_PIPE_PIPE] = ACTIONS(3375), + [anon_sym_GT] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_GT_EQ] = ACTIONS(3375), + [anon_sym_LT_EQ] = ACTIONS(3375), + [anon_sym_PLUS_EQ] = ACTIONS(3375), + [anon_sym_DASH_EQ] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3377), + [anon_sym_match] = ACTIONS(3377), + [anon_sym_EQ_GT] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3377), + [anon_sym_for] = ACTIONS(3377), + [anon_sym_asyncfor] = ACTIONS(3375), + [anon_sym_transform] = ACTIONS(3377), + [anon_sym_filter] = ACTIONS(3377), + [anon_sym_find] = ACTIONS(3377), + [anon_sym_remove] = ACTIONS(3377), + [anon_sym_reduce] = ACTIONS(3377), + [anon_sym_select] = ACTIONS(3377), + [anon_sym_insert] = ACTIONS(3377), + [anon_sym_async] = ACTIONS(3377), + [anon_sym_PIPE] = ACTIONS(3377), + [anon_sym_table] = ACTIONS(3377), + [anon_sym_assert] = ACTIONS(3377), + [anon_sym_assert_equal] = ACTIONS(3377), + [anon_sym_download] = ACTIONS(3377), + [anon_sym_help] = ACTIONS(3377), + [anon_sym_length] = ACTIONS(3377), + [anon_sym_output] = ACTIONS(3377), + [anon_sym_output_error] = ACTIONS(3377), + [anon_sym_type] = ACTIONS(3377), + [anon_sym_append] = ACTIONS(3377), + [anon_sym_metadata] = ACTIONS(3377), + [anon_sym_move] = ACTIONS(3377), + [anon_sym_read] = ACTIONS(3377), + [anon_sym_workdir] = ACTIONS(3377), + [anon_sym_write] = ACTIONS(3377), + [anon_sym_from_json] = ACTIONS(3377), + [anon_sym_to_json] = ACTIONS(3377), + [anon_sym_to_string] = ACTIONS(3377), + [anon_sym_to_float] = ACTIONS(3377), + [anon_sym_bash] = ACTIONS(3377), + [anon_sym_fish] = ACTIONS(3377), + [anon_sym_raw] = ACTIONS(3377), + [anon_sym_sh] = ACTIONS(3377), + [anon_sym_zsh] = ACTIONS(3377), + [anon_sym_random] = ACTIONS(3377), + [anon_sym_random_boolean] = ACTIONS(3377), + [anon_sym_random_float] = ACTIONS(3377), + [anon_sym_random_integer] = ACTIONS(3377), + [anon_sym_columns] = ACTIONS(3377), + [anon_sym_rows] = ACTIONS(3377), + [anon_sym_reverse] = ACTIONS(3377), + }, + [718] = { + [sym_math_operator] = STATE(1261), + [sym_logic_operator] = STATE(1219), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3235), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3519), + [sym_integer] = ACTIONS(3235), + [sym_float] = ACTIONS(3233), + [sym_string] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_EQ] = ACTIONS(3235), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3233), + [anon_sym_DASH_EQ] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_asyncfor] = ACTIONS(3233), + [anon_sym_transform] = ACTIONS(3235), + [anon_sym_filter] = ACTIONS(3235), + [anon_sym_find] = ACTIONS(3235), + [anon_sym_remove] = ACTIONS(3235), + [anon_sym_reduce] = ACTIONS(3235), + [anon_sym_select] = ACTIONS(3235), + [anon_sym_insert] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_table] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_assert_equal] = ACTIONS(3235), + [anon_sym_download] = ACTIONS(3235), + [anon_sym_help] = ACTIONS(3235), + [anon_sym_length] = ACTIONS(3235), + [anon_sym_output] = ACTIONS(3235), + [anon_sym_output_error] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_append] = ACTIONS(3235), + [anon_sym_metadata] = ACTIONS(3235), + [anon_sym_move] = ACTIONS(3235), + [anon_sym_read] = ACTIONS(3235), + [anon_sym_workdir] = ACTIONS(3235), + [anon_sym_write] = ACTIONS(3235), + [anon_sym_from_json] = ACTIONS(3235), + [anon_sym_to_json] = ACTIONS(3235), + [anon_sym_to_string] = ACTIONS(3235), + [anon_sym_to_float] = ACTIONS(3235), + [anon_sym_bash] = ACTIONS(3235), + [anon_sym_fish] = ACTIONS(3235), + [anon_sym_raw] = ACTIONS(3235), + [anon_sym_sh] = ACTIONS(3235), + [anon_sym_zsh] = ACTIONS(3235), + [anon_sym_random] = ACTIONS(3235), + [anon_sym_random_boolean] = ACTIONS(3235), + [anon_sym_random_float] = ACTIONS(3235), + [anon_sym_random_integer] = ACTIONS(3235), + [anon_sym_columns] = ACTIONS(3235), + [anon_sym_rows] = ACTIONS(3235), + [anon_sym_reverse] = ACTIONS(3235), + }, + [719] = { + [ts_builtin_sym_end] = ACTIONS(3307), + [sym_identifier] = ACTIONS(3309), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3307), + [anon_sym_RBRACE] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_RPAREN] = ACTIONS(3307), + [anon_sym_COMMA] = ACTIONS(3307), + [sym_integer] = ACTIONS(3309), + [sym_float] = ACTIONS(3307), + [sym_string] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(3309), + [anon_sym_false] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3307), + [anon_sym_RBRACK] = ACTIONS(3307), + [anon_sym_EQ] = ACTIONS(3309), + [anon_sym_COLON] = ACTIONS(3307), + [anon_sym_DOT_DOT] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3307), + [anon_sym_SLASH] = ACTIONS(3307), + [anon_sym_PERCENT] = ACTIONS(3307), + [anon_sym_EQ_EQ] = ACTIONS(3307), + [anon_sym_BANG_EQ] = ACTIONS(3307), + [anon_sym_AMP_AMP] = ACTIONS(3307), + [anon_sym_PIPE_PIPE] = ACTIONS(3307), + [anon_sym_GT] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_GT_EQ] = ACTIONS(3307), + [anon_sym_LT_EQ] = ACTIONS(3307), + [anon_sym_PLUS_EQ] = ACTIONS(3307), + [anon_sym_DASH_EQ] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_match] = ACTIONS(3309), + [anon_sym_EQ_GT] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_asyncfor] = ACTIONS(3307), + [anon_sym_transform] = ACTIONS(3309), + [anon_sym_filter] = ACTIONS(3309), + [anon_sym_find] = ACTIONS(3309), + [anon_sym_remove] = ACTIONS(3309), + [anon_sym_reduce] = ACTIONS(3309), + [anon_sym_select] = ACTIONS(3309), + [anon_sym_insert] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_table] = ACTIONS(3309), + [anon_sym_assert] = ACTIONS(3309), + [anon_sym_assert_equal] = ACTIONS(3309), + [anon_sym_download] = ACTIONS(3309), + [anon_sym_help] = ACTIONS(3309), + [anon_sym_length] = ACTIONS(3309), + [anon_sym_output] = ACTIONS(3309), + [anon_sym_output_error] = ACTIONS(3309), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_append] = ACTIONS(3309), + [anon_sym_metadata] = ACTIONS(3309), + [anon_sym_move] = ACTIONS(3309), + [anon_sym_read] = ACTIONS(3309), + [anon_sym_workdir] = ACTIONS(3309), + [anon_sym_write] = ACTIONS(3309), + [anon_sym_from_json] = ACTIONS(3309), + [anon_sym_to_json] = ACTIONS(3309), + [anon_sym_to_string] = ACTIONS(3309), + [anon_sym_to_float] = ACTIONS(3309), + [anon_sym_bash] = ACTIONS(3309), + [anon_sym_fish] = ACTIONS(3309), + [anon_sym_raw] = ACTIONS(3309), + [anon_sym_sh] = ACTIONS(3309), + [anon_sym_zsh] = ACTIONS(3309), + [anon_sym_random] = ACTIONS(3309), + [anon_sym_random_boolean] = ACTIONS(3309), + [anon_sym_random_float] = ACTIONS(3309), + [anon_sym_random_integer] = ACTIONS(3309), + [anon_sym_columns] = ACTIONS(3309), + [anon_sym_rows] = ACTIONS(3309), + [anon_sym_reverse] = ACTIONS(3309), + }, + [720] = { + [sym_math_operator] = STATE(1455), + [sym_logic_operator] = STATE(1453), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_RPAREN] = ACTIONS(3244), + [sym_integer] = ACTIONS(3246), + [sym_float] = ACTIONS(3244), + [sym_string] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3246), + [anon_sym_COLON] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3244), + [anon_sym_DASH_EQ] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_asyncfor] = ACTIONS(3244), + [anon_sym_transform] = ACTIONS(3246), + [anon_sym_filter] = ACTIONS(3246), + [anon_sym_find] = ACTIONS(3246), + [anon_sym_remove] = ACTIONS(3246), + [anon_sym_reduce] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_insert] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_table] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_assert_equal] = ACTIONS(3246), + [anon_sym_download] = ACTIONS(3246), + [anon_sym_help] = ACTIONS(3246), + [anon_sym_length] = ACTIONS(3246), + [anon_sym_output] = ACTIONS(3246), + [anon_sym_output_error] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_append] = ACTIONS(3246), + [anon_sym_metadata] = ACTIONS(3246), + [anon_sym_move] = ACTIONS(3246), + [anon_sym_read] = ACTIONS(3246), + [anon_sym_workdir] = ACTIONS(3246), + [anon_sym_write] = ACTIONS(3246), + [anon_sym_from_json] = ACTIONS(3246), + [anon_sym_to_json] = ACTIONS(3246), + [anon_sym_to_string] = ACTIONS(3246), + [anon_sym_to_float] = ACTIONS(3246), + [anon_sym_bash] = ACTIONS(3246), + [anon_sym_fish] = ACTIONS(3246), + [anon_sym_raw] = ACTIONS(3246), + [anon_sym_sh] = ACTIONS(3246), + [anon_sym_zsh] = ACTIONS(3246), + [anon_sym_random] = ACTIONS(3246), + [anon_sym_random_boolean] = ACTIONS(3246), + [anon_sym_random_float] = ACTIONS(3246), + [anon_sym_random_integer] = ACTIONS(3246), + [anon_sym_columns] = ACTIONS(3246), + [anon_sym_rows] = ACTIONS(3246), + [anon_sym_reverse] = ACTIONS(3246), + }, + [721] = { + [sym_math_operator] = STATE(1455), + [sym_logic_operator] = STATE(1453), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3248), + [sym_string] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_asyncfor] = ACTIONS(3248), + [anon_sym_transform] = ACTIONS(3250), + [anon_sym_filter] = ACTIONS(3250), + [anon_sym_find] = ACTIONS(3250), + [anon_sym_remove] = ACTIONS(3250), + [anon_sym_reduce] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_insert] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_table] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_assert_equal] = ACTIONS(3250), + [anon_sym_download] = ACTIONS(3250), + [anon_sym_help] = ACTIONS(3250), + [anon_sym_length] = ACTIONS(3250), + [anon_sym_output] = ACTIONS(3250), + [anon_sym_output_error] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_append] = ACTIONS(3250), + [anon_sym_metadata] = ACTIONS(3250), + [anon_sym_move] = ACTIONS(3250), + [anon_sym_read] = ACTIONS(3250), + [anon_sym_workdir] = ACTIONS(3250), + [anon_sym_write] = ACTIONS(3250), + [anon_sym_from_json] = ACTIONS(3250), + [anon_sym_to_json] = ACTIONS(3250), + [anon_sym_to_string] = ACTIONS(3250), + [anon_sym_to_float] = ACTIONS(3250), + [anon_sym_bash] = ACTIONS(3250), + [anon_sym_fish] = ACTIONS(3250), + [anon_sym_raw] = ACTIONS(3250), + [anon_sym_sh] = ACTIONS(3250), + [anon_sym_zsh] = ACTIONS(3250), + [anon_sym_random] = ACTIONS(3250), + [anon_sym_random_boolean] = ACTIONS(3250), + [anon_sym_random_float] = ACTIONS(3250), + [anon_sym_random_integer] = ACTIONS(3250), + [anon_sym_columns] = ACTIONS(3250), + [anon_sym_rows] = ACTIONS(3250), + [anon_sym_reverse] = ACTIONS(3250), + }, + [722] = { + [sym_math_operator] = STATE(1455), + [sym_logic_operator] = STATE(1453), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3242), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [sym_integer] = ACTIONS(3242), + [sym_float] = ACTIONS(3240), + [sym_string] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_EQ] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_asyncfor] = ACTIONS(3240), + [anon_sym_transform] = ACTIONS(3242), + [anon_sym_filter] = ACTIONS(3242), + [anon_sym_find] = ACTIONS(3242), + [anon_sym_remove] = ACTIONS(3242), + [anon_sym_reduce] = ACTIONS(3242), + [anon_sym_select] = ACTIONS(3242), + [anon_sym_insert] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_table] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_assert_equal] = ACTIONS(3242), + [anon_sym_download] = ACTIONS(3242), + [anon_sym_help] = ACTIONS(3242), + [anon_sym_length] = ACTIONS(3242), + [anon_sym_output] = ACTIONS(3242), + [anon_sym_output_error] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_append] = ACTIONS(3242), + [anon_sym_metadata] = ACTIONS(3242), + [anon_sym_move] = ACTIONS(3242), + [anon_sym_read] = ACTIONS(3242), + [anon_sym_workdir] = ACTIONS(3242), + [anon_sym_write] = ACTIONS(3242), + [anon_sym_from_json] = ACTIONS(3242), + [anon_sym_to_json] = ACTIONS(3242), + [anon_sym_to_string] = ACTIONS(3242), + [anon_sym_to_float] = ACTIONS(3242), + [anon_sym_bash] = ACTIONS(3242), + [anon_sym_fish] = ACTIONS(3242), + [anon_sym_raw] = ACTIONS(3242), + [anon_sym_sh] = ACTIONS(3242), + [anon_sym_zsh] = ACTIONS(3242), + [anon_sym_random] = ACTIONS(3242), + [anon_sym_random_boolean] = ACTIONS(3242), + [anon_sym_random_float] = ACTIONS(3242), + [anon_sym_random_integer] = ACTIONS(3242), + [anon_sym_columns] = ACTIONS(3242), + [anon_sym_rows] = ACTIONS(3242), + [anon_sym_reverse] = ACTIONS(3242), + }, + [723] = { + [ts_builtin_sym_end] = ACTIONS(3317), + [sym_identifier] = ACTIONS(3319), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_RPAREN] = ACTIONS(3317), + [anon_sym_COMMA] = ACTIONS(3317), + [sym_integer] = ACTIONS(3319), + [sym_float] = ACTIONS(3317), + [sym_string] = ACTIONS(3317), + [anon_sym_true] = ACTIONS(3319), + [anon_sym_false] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_RBRACK] = ACTIONS(3317), + [anon_sym_EQ] = ACTIONS(3319), + [anon_sym_COLON] = ACTIONS(3317), + [anon_sym_DOT_DOT] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_PERCENT] = ACTIONS(3317), + [anon_sym_EQ_EQ] = ACTIONS(3317), + [anon_sym_BANG_EQ] = ACTIONS(3317), + [anon_sym_AMP_AMP] = ACTIONS(3317), + [anon_sym_PIPE_PIPE] = ACTIONS(3317), + [anon_sym_GT] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3317), + [anon_sym_LT_EQ] = ACTIONS(3317), + [anon_sym_PLUS_EQ] = ACTIONS(3317), + [anon_sym_DASH_EQ] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_match] = ACTIONS(3319), + [anon_sym_EQ_GT] = ACTIONS(3317), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_asyncfor] = ACTIONS(3317), + [anon_sym_transform] = ACTIONS(3319), + [anon_sym_filter] = ACTIONS(3319), + [anon_sym_find] = ACTIONS(3319), + [anon_sym_remove] = ACTIONS(3319), + [anon_sym_reduce] = ACTIONS(3319), + [anon_sym_select] = ACTIONS(3319), + [anon_sym_insert] = ACTIONS(3319), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_PIPE] = ACTIONS(3319), + [anon_sym_table] = ACTIONS(3319), + [anon_sym_assert] = ACTIONS(3319), + [anon_sym_assert_equal] = ACTIONS(3319), + [anon_sym_download] = ACTIONS(3319), + [anon_sym_help] = ACTIONS(3319), + [anon_sym_length] = ACTIONS(3319), + [anon_sym_output] = ACTIONS(3319), + [anon_sym_output_error] = ACTIONS(3319), + [anon_sym_type] = ACTIONS(3319), + [anon_sym_append] = ACTIONS(3319), + [anon_sym_metadata] = ACTIONS(3319), + [anon_sym_move] = ACTIONS(3319), + [anon_sym_read] = ACTIONS(3319), + [anon_sym_workdir] = ACTIONS(3319), + [anon_sym_write] = ACTIONS(3319), + [anon_sym_from_json] = ACTIONS(3319), + [anon_sym_to_json] = ACTIONS(3319), + [anon_sym_to_string] = ACTIONS(3319), + [anon_sym_to_float] = ACTIONS(3319), + [anon_sym_bash] = ACTIONS(3319), + [anon_sym_fish] = ACTIONS(3319), + [anon_sym_raw] = ACTIONS(3319), + [anon_sym_sh] = ACTIONS(3319), + [anon_sym_zsh] = ACTIONS(3319), + [anon_sym_random] = ACTIONS(3319), + [anon_sym_random_boolean] = ACTIONS(3319), + [anon_sym_random_float] = ACTIONS(3319), + [anon_sym_random_integer] = ACTIONS(3319), + [anon_sym_columns] = ACTIONS(3319), + [anon_sym_rows] = ACTIONS(3319), + [anon_sym_reverse] = ACTIONS(3319), + }, + [724] = { + [sym_else_if] = STATE(746), + [sym_else] = STATE(792), + [aux_sym_if_else_repeat1] = STATE(746), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_RPAREN] = ACTIONS(3219), + [sym_integer] = ACTIONS(3221), + [sym_float] = ACTIONS(3219), + [sym_string] = ACTIONS(3219), + [anon_sym_true] = ACTIONS(3221), + [anon_sym_false] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_elseif] = ACTIONS(3572), + [anon_sym_else] = ACTIONS(3584), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_EQ_GT] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_asyncfor] = ACTIONS(3219), + [anon_sym_transform] = ACTIONS(3221), + [anon_sym_filter] = ACTIONS(3221), + [anon_sym_find] = ACTIONS(3221), + [anon_sym_remove] = ACTIONS(3221), + [anon_sym_reduce] = ACTIONS(3221), + [anon_sym_select] = ACTIONS(3221), + [anon_sym_insert] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_table] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_assert_equal] = ACTIONS(3221), + [anon_sym_download] = ACTIONS(3221), + [anon_sym_help] = ACTIONS(3221), + [anon_sym_length] = ACTIONS(3221), + [anon_sym_output] = ACTIONS(3221), + [anon_sym_output_error] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_append] = ACTIONS(3221), + [anon_sym_metadata] = ACTIONS(3221), + [anon_sym_move] = ACTIONS(3221), + [anon_sym_read] = ACTIONS(3221), + [anon_sym_workdir] = ACTIONS(3221), + [anon_sym_write] = ACTIONS(3221), + [anon_sym_from_json] = ACTIONS(3221), + [anon_sym_to_json] = ACTIONS(3221), + [anon_sym_to_string] = ACTIONS(3221), + [anon_sym_to_float] = ACTIONS(3221), + [anon_sym_bash] = ACTIONS(3221), + [anon_sym_fish] = ACTIONS(3221), + [anon_sym_raw] = ACTIONS(3221), + [anon_sym_sh] = ACTIONS(3221), + [anon_sym_zsh] = ACTIONS(3221), + [anon_sym_random] = ACTIONS(3221), + [anon_sym_random_boolean] = ACTIONS(3221), + [anon_sym_random_float] = ACTIONS(3221), + [anon_sym_random_integer] = ACTIONS(3221), + [anon_sym_columns] = ACTIONS(3221), + [anon_sym_rows] = ACTIONS(3221), + [anon_sym_reverse] = ACTIONS(3221), + }, + [725] = { + [ts_builtin_sym_end] = ACTIONS(3325), + [sym_identifier] = ACTIONS(3327), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_RPAREN] = ACTIONS(3325), + [anon_sym_COMMA] = ACTIONS(3325), + [sym_integer] = ACTIONS(3327), + [sym_float] = ACTIONS(3325), + [sym_string] = ACTIONS(3325), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_RBRACK] = ACTIONS(3325), + [anon_sym_EQ] = ACTIONS(3327), + [anon_sym_COLON] = ACTIONS(3325), + [anon_sym_DOT_DOT] = ACTIONS(3325), + [anon_sym_PLUS] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_STAR] = ACTIONS(3325), + [anon_sym_SLASH] = ACTIONS(3325), + [anon_sym_PERCENT] = ACTIONS(3325), + [anon_sym_EQ_EQ] = ACTIONS(3325), + [anon_sym_BANG_EQ] = ACTIONS(3325), + [anon_sym_AMP_AMP] = ACTIONS(3325), + [anon_sym_PIPE_PIPE] = ACTIONS(3325), + [anon_sym_GT] = ACTIONS(3327), + [anon_sym_LT] = ACTIONS(3327), + [anon_sym_GT_EQ] = ACTIONS(3325), + [anon_sym_LT_EQ] = ACTIONS(3325), + [anon_sym_PLUS_EQ] = ACTIONS(3325), + [anon_sym_DASH_EQ] = ACTIONS(3325), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_match] = ACTIONS(3327), + [anon_sym_EQ_GT] = ACTIONS(3325), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_asyncfor] = ACTIONS(3325), + [anon_sym_transform] = ACTIONS(3327), + [anon_sym_filter] = ACTIONS(3327), + [anon_sym_find] = ACTIONS(3327), + [anon_sym_remove] = ACTIONS(3327), + [anon_sym_reduce] = ACTIONS(3327), + [anon_sym_select] = ACTIONS(3327), + [anon_sym_insert] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_PIPE] = ACTIONS(3327), + [anon_sym_table] = ACTIONS(3327), + [anon_sym_assert] = ACTIONS(3327), + [anon_sym_assert_equal] = ACTIONS(3327), + [anon_sym_download] = ACTIONS(3327), + [anon_sym_help] = ACTIONS(3327), + [anon_sym_length] = ACTIONS(3327), + [anon_sym_output] = ACTIONS(3327), + [anon_sym_output_error] = ACTIONS(3327), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_append] = ACTIONS(3327), + [anon_sym_metadata] = ACTIONS(3327), + [anon_sym_move] = ACTIONS(3327), + [anon_sym_read] = ACTIONS(3327), + [anon_sym_workdir] = ACTIONS(3327), + [anon_sym_write] = ACTIONS(3327), + [anon_sym_from_json] = ACTIONS(3327), + [anon_sym_to_json] = ACTIONS(3327), + [anon_sym_to_string] = ACTIONS(3327), + [anon_sym_to_float] = ACTIONS(3327), + [anon_sym_bash] = ACTIONS(3327), + [anon_sym_fish] = ACTIONS(3327), + [anon_sym_raw] = ACTIONS(3327), + [anon_sym_sh] = ACTIONS(3327), + [anon_sym_zsh] = ACTIONS(3327), + [anon_sym_random] = ACTIONS(3327), + [anon_sym_random_boolean] = ACTIONS(3327), + [anon_sym_random_float] = ACTIONS(3327), + [anon_sym_random_integer] = ACTIONS(3327), + [anon_sym_columns] = ACTIONS(3327), + [anon_sym_rows] = ACTIONS(3327), + [anon_sym_reverse] = ACTIONS(3327), + }, + [726] = { + [sym_expression] = STATE(968), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(709), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1762), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(726), + [sym_identifier] = ACTIONS(3576), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_RPAREN] = ACTIONS(2473), + [anon_sym_COMMA] = ACTIONS(2473), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_RBRACK] = ACTIONS(2473), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_DOT_DOT] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_EQ_GT] = ACTIONS(3578), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3580), + [anon_sym_assert] = ACTIONS(3582), + [anon_sym_assert_equal] = ACTIONS(3582), + [anon_sym_download] = ACTIONS(3582), + [anon_sym_help] = ACTIONS(3582), + [anon_sym_length] = ACTIONS(3582), + [anon_sym_output] = ACTIONS(3582), + [anon_sym_output_error] = ACTIONS(3582), + [anon_sym_type] = ACTIONS(3582), + [anon_sym_append] = ACTIONS(3582), + [anon_sym_metadata] = ACTIONS(3582), + [anon_sym_move] = ACTIONS(3582), + [anon_sym_read] = ACTIONS(3582), + [anon_sym_workdir] = ACTIONS(3582), + [anon_sym_write] = ACTIONS(3582), + [anon_sym_from_json] = ACTIONS(3582), + [anon_sym_to_json] = ACTIONS(3582), + [anon_sym_to_string] = ACTIONS(3582), + [anon_sym_to_float] = ACTIONS(3582), + [anon_sym_bash] = ACTIONS(3582), + [anon_sym_fish] = ACTIONS(3582), + [anon_sym_raw] = ACTIONS(3582), + [anon_sym_sh] = ACTIONS(3582), + [anon_sym_zsh] = ACTIONS(3582), + [anon_sym_random] = ACTIONS(3582), + [anon_sym_random_boolean] = ACTIONS(3582), + [anon_sym_random_float] = ACTIONS(3582), + [anon_sym_random_integer] = ACTIONS(3582), + [anon_sym_columns] = ACTIONS(3582), + [anon_sym_rows] = ACTIONS(3582), + [anon_sym_reverse] = ACTIONS(3582), + }, + [727] = { + [ts_builtin_sym_end] = ACTIONS(3329), + [sym_identifier] = ACTIONS(3331), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_RBRACE] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_RPAREN] = ACTIONS(3329), + [anon_sym_COMMA] = ACTIONS(3329), + [sym_integer] = ACTIONS(3331), + [sym_float] = ACTIONS(3329), + [sym_string] = ACTIONS(3329), + [anon_sym_true] = ACTIONS(3331), + [anon_sym_false] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_RBRACK] = ACTIONS(3329), + [anon_sym_EQ] = ACTIONS(3331), + [anon_sym_COLON] = ACTIONS(3329), + [anon_sym_DOT_DOT] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3329), + [anon_sym_SLASH] = ACTIONS(3329), + [anon_sym_PERCENT] = ACTIONS(3329), + [anon_sym_EQ_EQ] = ACTIONS(3329), + [anon_sym_BANG_EQ] = ACTIONS(3329), + [anon_sym_AMP_AMP] = ACTIONS(3329), + [anon_sym_PIPE_PIPE] = ACTIONS(3329), + [anon_sym_GT] = ACTIONS(3331), + [anon_sym_LT] = ACTIONS(3331), + [anon_sym_GT_EQ] = ACTIONS(3329), + [anon_sym_LT_EQ] = ACTIONS(3329), + [anon_sym_PLUS_EQ] = ACTIONS(3329), + [anon_sym_DASH_EQ] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_match] = ACTIONS(3331), + [anon_sym_EQ_GT] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_asyncfor] = ACTIONS(3329), + [anon_sym_transform] = ACTIONS(3331), + [anon_sym_filter] = ACTIONS(3331), + [anon_sym_find] = ACTIONS(3331), + [anon_sym_remove] = ACTIONS(3331), + [anon_sym_reduce] = ACTIONS(3331), + [anon_sym_select] = ACTIONS(3331), + [anon_sym_insert] = ACTIONS(3331), + [anon_sym_async] = ACTIONS(3331), + [anon_sym_PIPE] = ACTIONS(3331), + [anon_sym_table] = ACTIONS(3331), + [anon_sym_assert] = ACTIONS(3331), + [anon_sym_assert_equal] = ACTIONS(3331), + [anon_sym_download] = ACTIONS(3331), + [anon_sym_help] = ACTIONS(3331), + [anon_sym_length] = ACTIONS(3331), + [anon_sym_output] = ACTIONS(3331), + [anon_sym_output_error] = ACTIONS(3331), + [anon_sym_type] = ACTIONS(3331), + [anon_sym_append] = ACTIONS(3331), + [anon_sym_metadata] = ACTIONS(3331), + [anon_sym_move] = ACTIONS(3331), + [anon_sym_read] = ACTIONS(3331), + [anon_sym_workdir] = ACTIONS(3331), + [anon_sym_write] = ACTIONS(3331), + [anon_sym_from_json] = ACTIONS(3331), + [anon_sym_to_json] = ACTIONS(3331), + [anon_sym_to_string] = ACTIONS(3331), + [anon_sym_to_float] = ACTIONS(3331), + [anon_sym_bash] = ACTIONS(3331), + [anon_sym_fish] = ACTIONS(3331), + [anon_sym_raw] = ACTIONS(3331), + [anon_sym_sh] = ACTIONS(3331), + [anon_sym_zsh] = ACTIONS(3331), + [anon_sym_random] = ACTIONS(3331), + [anon_sym_random_boolean] = ACTIONS(3331), + [anon_sym_random_float] = ACTIONS(3331), + [anon_sym_random_integer] = ACTIONS(3331), + [anon_sym_columns] = ACTIONS(3331), + [anon_sym_rows] = ACTIONS(3331), + [anon_sym_reverse] = ACTIONS(3331), + }, + [728] = { + [ts_builtin_sym_end] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3339), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_RPAREN] = ACTIONS(3337), + [anon_sym_COMMA] = ACTIONS(3337), + [sym_integer] = ACTIONS(3339), + [sym_float] = ACTIONS(3337), + [sym_string] = ACTIONS(3337), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_RBRACK] = ACTIONS(3337), + [anon_sym_EQ] = ACTIONS(3339), + [anon_sym_COLON] = ACTIONS(3337), + [anon_sym_DOT_DOT] = ACTIONS(3337), + [anon_sym_PLUS] = ACTIONS(3339), + [anon_sym_DASH] = ACTIONS(3339), + [anon_sym_STAR] = ACTIONS(3337), + [anon_sym_SLASH] = ACTIONS(3337), + [anon_sym_PERCENT] = ACTIONS(3337), + [anon_sym_EQ_EQ] = ACTIONS(3337), + [anon_sym_BANG_EQ] = ACTIONS(3337), + [anon_sym_AMP_AMP] = ACTIONS(3337), + [anon_sym_PIPE_PIPE] = ACTIONS(3337), + [anon_sym_GT] = ACTIONS(3339), + [anon_sym_LT] = ACTIONS(3339), + [anon_sym_GT_EQ] = ACTIONS(3337), + [anon_sym_LT_EQ] = ACTIONS(3337), + [anon_sym_PLUS_EQ] = ACTIONS(3337), + [anon_sym_DASH_EQ] = ACTIONS(3337), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_match] = ACTIONS(3339), + [anon_sym_EQ_GT] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_asyncfor] = ACTIONS(3337), + [anon_sym_transform] = ACTIONS(3339), + [anon_sym_filter] = ACTIONS(3339), + [anon_sym_find] = ACTIONS(3339), + [anon_sym_remove] = ACTIONS(3339), + [anon_sym_reduce] = ACTIONS(3339), + [anon_sym_select] = ACTIONS(3339), + [anon_sym_insert] = ACTIONS(3339), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_PIPE] = ACTIONS(3339), + [anon_sym_table] = ACTIONS(3339), + [anon_sym_assert] = ACTIONS(3339), + [anon_sym_assert_equal] = ACTIONS(3339), + [anon_sym_download] = ACTIONS(3339), + [anon_sym_help] = ACTIONS(3339), + [anon_sym_length] = ACTIONS(3339), + [anon_sym_output] = ACTIONS(3339), + [anon_sym_output_error] = ACTIONS(3339), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_append] = ACTIONS(3339), + [anon_sym_metadata] = ACTIONS(3339), + [anon_sym_move] = ACTIONS(3339), + [anon_sym_read] = ACTIONS(3339), + [anon_sym_workdir] = ACTIONS(3339), + [anon_sym_write] = ACTIONS(3339), + [anon_sym_from_json] = ACTIONS(3339), + [anon_sym_to_json] = ACTIONS(3339), + [anon_sym_to_string] = ACTIONS(3339), + [anon_sym_to_float] = ACTIONS(3339), + [anon_sym_bash] = ACTIONS(3339), + [anon_sym_fish] = ACTIONS(3339), + [anon_sym_raw] = ACTIONS(3339), + [anon_sym_sh] = ACTIONS(3339), + [anon_sym_zsh] = ACTIONS(3339), + [anon_sym_random] = ACTIONS(3339), + [anon_sym_random_boolean] = ACTIONS(3339), + [anon_sym_random_float] = ACTIONS(3339), + [anon_sym_random_integer] = ACTIONS(3339), + [anon_sym_columns] = ACTIONS(3339), + [anon_sym_rows] = ACTIONS(3339), + [anon_sym_reverse] = ACTIONS(3339), + }, + [729] = { + [ts_builtin_sym_end] = ACTIONS(3341), + [sym_identifier] = ACTIONS(3343), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_RPAREN] = ACTIONS(3341), + [anon_sym_COMMA] = ACTIONS(3341), + [sym_integer] = ACTIONS(3343), + [sym_float] = ACTIONS(3341), + [sym_string] = ACTIONS(3341), + [anon_sym_true] = ACTIONS(3343), + [anon_sym_false] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_RBRACK] = ACTIONS(3341), + [anon_sym_EQ] = ACTIONS(3343), + [anon_sym_COLON] = ACTIONS(3341), + [anon_sym_DOT_DOT] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3343), + [anon_sym_STAR] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3341), + [anon_sym_PERCENT] = ACTIONS(3341), + [anon_sym_EQ_EQ] = ACTIONS(3341), + [anon_sym_BANG_EQ] = ACTIONS(3341), + [anon_sym_AMP_AMP] = ACTIONS(3341), + [anon_sym_PIPE_PIPE] = ACTIONS(3341), + [anon_sym_GT] = ACTIONS(3343), + [anon_sym_LT] = ACTIONS(3343), + [anon_sym_GT_EQ] = ACTIONS(3341), + [anon_sym_LT_EQ] = ACTIONS(3341), + [anon_sym_PLUS_EQ] = ACTIONS(3341), + [anon_sym_DASH_EQ] = ACTIONS(3341), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_match] = ACTIONS(3343), + [anon_sym_EQ_GT] = ACTIONS(3341), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_asyncfor] = ACTIONS(3341), + [anon_sym_transform] = ACTIONS(3343), + [anon_sym_filter] = ACTIONS(3343), + [anon_sym_find] = ACTIONS(3343), + [anon_sym_remove] = ACTIONS(3343), + [anon_sym_reduce] = ACTIONS(3343), + [anon_sym_select] = ACTIONS(3343), + [anon_sym_insert] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_PIPE] = ACTIONS(3343), + [anon_sym_table] = ACTIONS(3343), + [anon_sym_assert] = ACTIONS(3343), + [anon_sym_assert_equal] = ACTIONS(3343), + [anon_sym_download] = ACTIONS(3343), + [anon_sym_help] = ACTIONS(3343), + [anon_sym_length] = ACTIONS(3343), + [anon_sym_output] = ACTIONS(3343), + [anon_sym_output_error] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3343), + [anon_sym_append] = ACTIONS(3343), + [anon_sym_metadata] = ACTIONS(3343), + [anon_sym_move] = ACTIONS(3343), + [anon_sym_read] = ACTIONS(3343), + [anon_sym_workdir] = ACTIONS(3343), + [anon_sym_write] = ACTIONS(3343), + [anon_sym_from_json] = ACTIONS(3343), + [anon_sym_to_json] = ACTIONS(3343), + [anon_sym_to_string] = ACTIONS(3343), + [anon_sym_to_float] = ACTIONS(3343), + [anon_sym_bash] = ACTIONS(3343), + [anon_sym_fish] = ACTIONS(3343), + [anon_sym_raw] = ACTIONS(3343), + [anon_sym_sh] = ACTIONS(3343), + [anon_sym_zsh] = ACTIONS(3343), + [anon_sym_random] = ACTIONS(3343), + [anon_sym_random_boolean] = ACTIONS(3343), + [anon_sym_random_float] = ACTIONS(3343), + [anon_sym_random_integer] = ACTIONS(3343), + [anon_sym_columns] = ACTIONS(3343), + [anon_sym_rows] = ACTIONS(3343), + [anon_sym_reverse] = ACTIONS(3343), + }, + [730] = { + [sym_math_operator] = STATE(1455), + [sym_logic_operator] = STATE(1453), + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3283), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_RPAREN] = ACTIONS(3281), + [sym_integer] = ACTIONS(3283), + [sym_float] = ACTIONS(3281), + [sym_string] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3281), + [anon_sym_DASH_EQ] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_EQ_GT] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_asyncfor] = ACTIONS(3281), + [anon_sym_transform] = ACTIONS(3283), + [anon_sym_filter] = ACTIONS(3283), + [anon_sym_find] = ACTIONS(3283), + [anon_sym_remove] = ACTIONS(3283), + [anon_sym_reduce] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_insert] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_table] = ACTIONS(3283), + [anon_sym_assert] = ACTIONS(3283), + [anon_sym_assert_equal] = ACTIONS(3283), + [anon_sym_download] = ACTIONS(3283), + [anon_sym_help] = ACTIONS(3283), + [anon_sym_length] = ACTIONS(3283), + [anon_sym_output] = ACTIONS(3283), + [anon_sym_output_error] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_append] = ACTIONS(3283), + [anon_sym_metadata] = ACTIONS(3283), + [anon_sym_move] = ACTIONS(3283), + [anon_sym_read] = ACTIONS(3283), + [anon_sym_workdir] = ACTIONS(3283), + [anon_sym_write] = ACTIONS(3283), + [anon_sym_from_json] = ACTIONS(3283), + [anon_sym_to_json] = ACTIONS(3283), + [anon_sym_to_string] = ACTIONS(3283), + [anon_sym_to_float] = ACTIONS(3283), + [anon_sym_bash] = ACTIONS(3283), + [anon_sym_fish] = ACTIONS(3283), + [anon_sym_raw] = ACTIONS(3283), + [anon_sym_sh] = ACTIONS(3283), + [anon_sym_zsh] = ACTIONS(3283), + [anon_sym_random] = ACTIONS(3283), + [anon_sym_random_boolean] = ACTIONS(3283), + [anon_sym_random_float] = ACTIONS(3283), + [anon_sym_random_integer] = ACTIONS(3283), + [anon_sym_columns] = ACTIONS(3283), + [anon_sym_rows] = ACTIONS(3283), + [anon_sym_reverse] = ACTIONS(3283), + }, + [731] = { + [ts_builtin_sym_end] = ACTIONS(3296), + [sym_identifier] = ACTIONS(3298), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3296), + [sym_integer] = ACTIONS(3298), + [sym_float] = ACTIONS(3296), + [sym_string] = ACTIONS(3296), + [anon_sym_true] = ACTIONS(3298), + [anon_sym_false] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3296), + [anon_sym_LT_EQ] = ACTIONS(3296), + [anon_sym_PLUS_EQ] = ACTIONS(3296), + [anon_sym_DASH_EQ] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_match] = ACTIONS(3298), + [anon_sym_EQ_GT] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_asyncfor] = ACTIONS(3296), + [anon_sym_transform] = ACTIONS(3298), + [anon_sym_filter] = ACTIONS(3298), + [anon_sym_find] = ACTIONS(3298), + [anon_sym_remove] = ACTIONS(3298), + [anon_sym_reduce] = ACTIONS(3298), + [anon_sym_select] = ACTIONS(3298), + [anon_sym_insert] = ACTIONS(3298), + [anon_sym_async] = ACTIONS(3298), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_table] = ACTIONS(3298), + [anon_sym_assert] = ACTIONS(3298), + [anon_sym_assert_equal] = ACTIONS(3298), + [anon_sym_download] = ACTIONS(3298), + [anon_sym_help] = ACTIONS(3298), + [anon_sym_length] = ACTIONS(3298), + [anon_sym_output] = ACTIONS(3298), + [anon_sym_output_error] = ACTIONS(3298), + [anon_sym_type] = ACTIONS(3298), + [anon_sym_append] = ACTIONS(3298), + [anon_sym_metadata] = ACTIONS(3298), + [anon_sym_move] = ACTIONS(3298), + [anon_sym_read] = ACTIONS(3298), + [anon_sym_workdir] = ACTIONS(3298), + [anon_sym_write] = ACTIONS(3298), + [anon_sym_from_json] = ACTIONS(3298), + [anon_sym_to_json] = ACTIONS(3298), + [anon_sym_to_string] = ACTIONS(3298), + [anon_sym_to_float] = ACTIONS(3298), + [anon_sym_bash] = ACTIONS(3298), + [anon_sym_fish] = ACTIONS(3298), + [anon_sym_raw] = ACTIONS(3298), + [anon_sym_sh] = ACTIONS(3298), + [anon_sym_zsh] = ACTIONS(3298), + [anon_sym_random] = ACTIONS(3298), + [anon_sym_random_boolean] = ACTIONS(3298), + [anon_sym_random_float] = ACTIONS(3298), + [anon_sym_random_integer] = ACTIONS(3298), + [anon_sym_columns] = ACTIONS(3298), + [anon_sym_rows] = ACTIONS(3298), + [anon_sym_reverse] = ACTIONS(3298), + }, + [732] = { + [sym_math_operator] = STATE(1322), + [sym_logic_operator] = STATE(1321), + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3521), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_RBRACK] = ACTIONS(3275), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_elseif] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [733] = { + [ts_builtin_sym_end] = ACTIONS(3367), + [sym_identifier] = ACTIONS(3369), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_RPAREN] = ACTIONS(3367), + [anon_sym_COMMA] = ACTIONS(3367), + [sym_integer] = ACTIONS(3369), + [sym_float] = ACTIONS(3367), + [sym_string] = ACTIONS(3367), + [anon_sym_true] = ACTIONS(3369), + [anon_sym_false] = ACTIONS(3369), + [anon_sym_LBRACK] = ACTIONS(3367), + [anon_sym_RBRACK] = ACTIONS(3367), + [anon_sym_EQ] = ACTIONS(3369), + [anon_sym_COLON] = ACTIONS(3367), + [anon_sym_DOT_DOT] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(3367), + [anon_sym_PERCENT] = ACTIONS(3367), + [anon_sym_EQ_EQ] = ACTIONS(3367), + [anon_sym_BANG_EQ] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_PIPE_PIPE] = ACTIONS(3367), + [anon_sym_GT] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3369), + [anon_sym_GT_EQ] = ACTIONS(3367), + [anon_sym_LT_EQ] = ACTIONS(3367), + [anon_sym_PLUS_EQ] = ACTIONS(3367), + [anon_sym_DASH_EQ] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3369), + [anon_sym_match] = ACTIONS(3369), + [anon_sym_EQ_GT] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3369), + [anon_sym_for] = ACTIONS(3369), + [anon_sym_asyncfor] = ACTIONS(3367), + [anon_sym_transform] = ACTIONS(3369), + [anon_sym_filter] = ACTIONS(3369), + [anon_sym_find] = ACTIONS(3369), + [anon_sym_remove] = ACTIONS(3369), + [anon_sym_reduce] = ACTIONS(3369), + [anon_sym_select] = ACTIONS(3369), + [anon_sym_insert] = ACTIONS(3369), + [anon_sym_async] = ACTIONS(3369), + [anon_sym_PIPE] = ACTIONS(3369), + [anon_sym_table] = ACTIONS(3369), + [anon_sym_assert] = ACTIONS(3369), + [anon_sym_assert_equal] = ACTIONS(3369), + [anon_sym_download] = ACTIONS(3369), + [anon_sym_help] = ACTIONS(3369), + [anon_sym_length] = ACTIONS(3369), + [anon_sym_output] = ACTIONS(3369), + [anon_sym_output_error] = ACTIONS(3369), + [anon_sym_type] = ACTIONS(3369), + [anon_sym_append] = ACTIONS(3369), + [anon_sym_metadata] = ACTIONS(3369), + [anon_sym_move] = ACTIONS(3369), + [anon_sym_read] = ACTIONS(3369), + [anon_sym_workdir] = ACTIONS(3369), + [anon_sym_write] = ACTIONS(3369), + [anon_sym_from_json] = ACTIONS(3369), + [anon_sym_to_json] = ACTIONS(3369), + [anon_sym_to_string] = ACTIONS(3369), + [anon_sym_to_float] = ACTIONS(3369), + [anon_sym_bash] = ACTIONS(3369), + [anon_sym_fish] = ACTIONS(3369), + [anon_sym_raw] = ACTIONS(3369), + [anon_sym_sh] = ACTIONS(3369), + [anon_sym_zsh] = ACTIONS(3369), + [anon_sym_random] = ACTIONS(3369), + [anon_sym_random_boolean] = ACTIONS(3369), + [anon_sym_random_float] = ACTIONS(3369), + [anon_sym_random_integer] = ACTIONS(3369), + [anon_sym_columns] = ACTIONS(3369), + [anon_sym_rows] = ACTIONS(3369), + [anon_sym_reverse] = ACTIONS(3369), + }, + [734] = { + [ts_builtin_sym_end] = ACTIONS(3379), + [sym_identifier] = ACTIONS(3381), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3379), + [anon_sym_RBRACE] = ACTIONS(3379), + [anon_sym_SEMI] = ACTIONS(3379), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3379), + [anon_sym_COMMA] = ACTIONS(3379), + [sym_integer] = ACTIONS(3381), + [sym_float] = ACTIONS(3379), + [sym_string] = ACTIONS(3379), + [anon_sym_true] = ACTIONS(3381), + [anon_sym_false] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3379), + [anon_sym_RBRACK] = ACTIONS(3379), + [anon_sym_EQ] = ACTIONS(3381), + [anon_sym_COLON] = ACTIONS(3379), + [anon_sym_DOT_DOT] = ACTIONS(3379), + [anon_sym_PLUS] = ACTIONS(3381), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_SLASH] = ACTIONS(3379), + [anon_sym_PERCENT] = ACTIONS(3379), + [anon_sym_EQ_EQ] = ACTIONS(3379), + [anon_sym_BANG_EQ] = ACTIONS(3379), + [anon_sym_AMP_AMP] = ACTIONS(3379), + [anon_sym_PIPE_PIPE] = ACTIONS(3379), + [anon_sym_GT] = ACTIONS(3381), + [anon_sym_LT] = ACTIONS(3381), + [anon_sym_GT_EQ] = ACTIONS(3379), + [anon_sym_LT_EQ] = ACTIONS(3379), + [anon_sym_PLUS_EQ] = ACTIONS(3379), + [anon_sym_DASH_EQ] = ACTIONS(3379), + [anon_sym_if] = ACTIONS(3381), + [anon_sym_match] = ACTIONS(3381), + [anon_sym_EQ_GT] = ACTIONS(3379), + [anon_sym_while] = ACTIONS(3381), + [anon_sym_for] = ACTIONS(3381), + [anon_sym_asyncfor] = ACTIONS(3379), + [anon_sym_transform] = ACTIONS(3381), + [anon_sym_filter] = ACTIONS(3381), + [anon_sym_find] = ACTIONS(3381), + [anon_sym_remove] = ACTIONS(3381), + [anon_sym_reduce] = ACTIONS(3381), + [anon_sym_select] = ACTIONS(3381), + [anon_sym_insert] = ACTIONS(3381), + [anon_sym_async] = ACTIONS(3381), + [anon_sym_PIPE] = ACTIONS(3381), + [anon_sym_table] = ACTIONS(3381), + [anon_sym_assert] = ACTIONS(3381), + [anon_sym_assert_equal] = ACTIONS(3381), + [anon_sym_download] = ACTIONS(3381), + [anon_sym_help] = ACTIONS(3381), + [anon_sym_length] = ACTIONS(3381), + [anon_sym_output] = ACTIONS(3381), + [anon_sym_output_error] = ACTIONS(3381), + [anon_sym_type] = ACTIONS(3381), + [anon_sym_append] = ACTIONS(3381), + [anon_sym_metadata] = ACTIONS(3381), + [anon_sym_move] = ACTIONS(3381), + [anon_sym_read] = ACTIONS(3381), + [anon_sym_workdir] = ACTIONS(3381), + [anon_sym_write] = ACTIONS(3381), + [anon_sym_from_json] = ACTIONS(3381), + [anon_sym_to_json] = ACTIONS(3381), + [anon_sym_to_string] = ACTIONS(3381), + [anon_sym_to_float] = ACTIONS(3381), + [anon_sym_bash] = ACTIONS(3381), + [anon_sym_fish] = ACTIONS(3381), + [anon_sym_raw] = ACTIONS(3381), + [anon_sym_sh] = ACTIONS(3381), + [anon_sym_zsh] = ACTIONS(3381), + [anon_sym_random] = ACTIONS(3381), + [anon_sym_random_boolean] = ACTIONS(3381), + [anon_sym_random_float] = ACTIONS(3381), + [anon_sym_random_integer] = ACTIONS(3381), + [anon_sym_columns] = ACTIONS(3381), + [anon_sym_rows] = ACTIONS(3381), + [anon_sym_reverse] = ACTIONS(3381), + }, + [735] = { + [ts_builtin_sym_end] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3395), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_RBRACE] = ACTIONS(3393), + [anon_sym_SEMI] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_RPAREN] = ACTIONS(3393), + [anon_sym_COMMA] = ACTIONS(3393), + [sym_integer] = ACTIONS(3395), + [sym_float] = ACTIONS(3393), + [sym_string] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_RBRACK] = ACTIONS(3393), + [anon_sym_EQ] = ACTIONS(3395), + [anon_sym_COLON] = ACTIONS(3393), + [anon_sym_DOT_DOT] = ACTIONS(3393), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_STAR] = ACTIONS(3393), + [anon_sym_SLASH] = ACTIONS(3393), + [anon_sym_PERCENT] = ACTIONS(3393), + [anon_sym_EQ_EQ] = ACTIONS(3393), + [anon_sym_BANG_EQ] = ACTIONS(3393), + [anon_sym_AMP_AMP] = ACTIONS(3393), + [anon_sym_PIPE_PIPE] = ACTIONS(3393), + [anon_sym_GT] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_GT_EQ] = ACTIONS(3393), + [anon_sym_LT_EQ] = ACTIONS(3393), + [anon_sym_PLUS_EQ] = ACTIONS(3393), + [anon_sym_DASH_EQ] = ACTIONS(3393), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_match] = ACTIONS(3395), + [anon_sym_EQ_GT] = ACTIONS(3393), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_asyncfor] = ACTIONS(3393), + [anon_sym_transform] = ACTIONS(3395), + [anon_sym_filter] = ACTIONS(3395), + [anon_sym_find] = ACTIONS(3395), + [anon_sym_remove] = ACTIONS(3395), + [anon_sym_reduce] = ACTIONS(3395), + [anon_sym_select] = ACTIONS(3395), + [anon_sym_insert] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_PIPE] = ACTIONS(3395), + [anon_sym_table] = ACTIONS(3395), + [anon_sym_assert] = ACTIONS(3395), + [anon_sym_assert_equal] = ACTIONS(3395), + [anon_sym_download] = ACTIONS(3395), + [anon_sym_help] = ACTIONS(3395), + [anon_sym_length] = ACTIONS(3395), + [anon_sym_output] = ACTIONS(3395), + [anon_sym_output_error] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_append] = ACTIONS(3395), + [anon_sym_metadata] = ACTIONS(3395), + [anon_sym_move] = ACTIONS(3395), + [anon_sym_read] = ACTIONS(3395), + [anon_sym_workdir] = ACTIONS(3395), + [anon_sym_write] = ACTIONS(3395), + [anon_sym_from_json] = ACTIONS(3395), + [anon_sym_to_json] = ACTIONS(3395), + [anon_sym_to_string] = ACTIONS(3395), + [anon_sym_to_float] = ACTIONS(3395), + [anon_sym_bash] = ACTIONS(3395), + [anon_sym_fish] = ACTIONS(3395), + [anon_sym_raw] = ACTIONS(3395), + [anon_sym_sh] = ACTIONS(3395), + [anon_sym_zsh] = ACTIONS(3395), + [anon_sym_random] = ACTIONS(3395), + [anon_sym_random_boolean] = ACTIONS(3395), + [anon_sym_random_float] = ACTIONS(3395), + [anon_sym_random_integer] = ACTIONS(3395), + [anon_sym_columns] = ACTIONS(3395), + [anon_sym_rows] = ACTIONS(3395), + [anon_sym_reverse] = ACTIONS(3395), + }, + [736] = { + [sym_math_operator] = STATE(1455), + [sym_logic_operator] = STATE(1453), + [ts_builtin_sym_end] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3264), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [sym_integer] = ACTIONS(3264), + [sym_float] = ACTIONS(3262), + [sym_string] = ACTIONS(3262), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_DOT_DOT] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_PLUS_EQ] = ACTIONS(3262), + [anon_sym_DASH_EQ] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_match] = ACTIONS(3264), + [anon_sym_EQ_GT] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_asyncfor] = ACTIONS(3262), + [anon_sym_transform] = ACTIONS(3264), + [anon_sym_filter] = ACTIONS(3264), + [anon_sym_find] = ACTIONS(3264), + [anon_sym_remove] = ACTIONS(3264), + [anon_sym_reduce] = ACTIONS(3264), + [anon_sym_select] = ACTIONS(3264), + [anon_sym_insert] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_table] = ACTIONS(3264), + [anon_sym_assert] = ACTIONS(3264), + [anon_sym_assert_equal] = ACTIONS(3264), + [anon_sym_download] = ACTIONS(3264), + [anon_sym_help] = ACTIONS(3264), + [anon_sym_length] = ACTIONS(3264), + [anon_sym_output] = ACTIONS(3264), + [anon_sym_output_error] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_append] = ACTIONS(3264), + [anon_sym_metadata] = ACTIONS(3264), + [anon_sym_move] = ACTIONS(3264), + [anon_sym_read] = ACTIONS(3264), + [anon_sym_workdir] = ACTIONS(3264), + [anon_sym_write] = ACTIONS(3264), + [anon_sym_from_json] = ACTIONS(3264), + [anon_sym_to_json] = ACTIONS(3264), + [anon_sym_to_string] = ACTIONS(3264), + [anon_sym_to_float] = ACTIONS(3264), + [anon_sym_bash] = ACTIONS(3264), + [anon_sym_fish] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3264), + [anon_sym_sh] = ACTIONS(3264), + [anon_sym_zsh] = ACTIONS(3264), + [anon_sym_random] = ACTIONS(3264), + [anon_sym_random_boolean] = ACTIONS(3264), + [anon_sym_random_float] = ACTIONS(3264), + [anon_sym_random_integer] = ACTIONS(3264), + [anon_sym_columns] = ACTIONS(3264), + [anon_sym_rows] = ACTIONS(3264), + [anon_sym_reverse] = ACTIONS(3264), + }, + [737] = { + [ts_builtin_sym_end] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3417), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3415), + [anon_sym_RBRACE] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_LPAREN] = ACTIONS(3415), + [anon_sym_RPAREN] = ACTIONS(3415), + [anon_sym_COMMA] = ACTIONS(3415), + [sym_integer] = ACTIONS(3417), + [sym_float] = ACTIONS(3415), + [sym_string] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_RBRACK] = ACTIONS(3415), + [anon_sym_EQ] = ACTIONS(3417), + [anon_sym_COLON] = ACTIONS(3415), + [anon_sym_DOT_DOT] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_STAR] = ACTIONS(3415), + [anon_sym_SLASH] = ACTIONS(3415), + [anon_sym_PERCENT] = ACTIONS(3415), + [anon_sym_EQ_EQ] = ACTIONS(3415), + [anon_sym_BANG_EQ] = ACTIONS(3415), + [anon_sym_AMP_AMP] = ACTIONS(3415), + [anon_sym_PIPE_PIPE] = ACTIONS(3415), + [anon_sym_GT] = ACTIONS(3417), + [anon_sym_LT] = ACTIONS(3417), + [anon_sym_GT_EQ] = ACTIONS(3415), + [anon_sym_LT_EQ] = ACTIONS(3415), + [anon_sym_PLUS_EQ] = ACTIONS(3415), + [anon_sym_DASH_EQ] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_match] = ACTIONS(3417), + [anon_sym_EQ_GT] = ACTIONS(3415), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_asyncfor] = ACTIONS(3415), + [anon_sym_transform] = ACTIONS(3417), + [anon_sym_filter] = ACTIONS(3417), + [anon_sym_find] = ACTIONS(3417), + [anon_sym_remove] = ACTIONS(3417), + [anon_sym_reduce] = ACTIONS(3417), + [anon_sym_select] = ACTIONS(3417), + [anon_sym_insert] = ACTIONS(3417), + [anon_sym_async] = ACTIONS(3417), + [anon_sym_PIPE] = ACTIONS(3417), + [anon_sym_table] = ACTIONS(3417), + [anon_sym_assert] = ACTIONS(3417), + [anon_sym_assert_equal] = ACTIONS(3417), + [anon_sym_download] = ACTIONS(3417), + [anon_sym_help] = ACTIONS(3417), + [anon_sym_length] = ACTIONS(3417), + [anon_sym_output] = ACTIONS(3417), + [anon_sym_output_error] = ACTIONS(3417), + [anon_sym_type] = ACTIONS(3417), + [anon_sym_append] = ACTIONS(3417), + [anon_sym_metadata] = ACTIONS(3417), + [anon_sym_move] = ACTIONS(3417), + [anon_sym_read] = ACTIONS(3417), + [anon_sym_workdir] = ACTIONS(3417), + [anon_sym_write] = ACTIONS(3417), + [anon_sym_from_json] = ACTIONS(3417), + [anon_sym_to_json] = ACTIONS(3417), + [anon_sym_to_string] = ACTIONS(3417), + [anon_sym_to_float] = ACTIONS(3417), + [anon_sym_bash] = ACTIONS(3417), + [anon_sym_fish] = ACTIONS(3417), + [anon_sym_raw] = ACTIONS(3417), + [anon_sym_sh] = ACTIONS(3417), + [anon_sym_zsh] = ACTIONS(3417), + [anon_sym_random] = ACTIONS(3417), + [anon_sym_random_boolean] = ACTIONS(3417), + [anon_sym_random_float] = ACTIONS(3417), + [anon_sym_random_integer] = ACTIONS(3417), + [anon_sym_columns] = ACTIONS(3417), + [anon_sym_rows] = ACTIONS(3417), + [anon_sym_reverse] = ACTIONS(3417), + }, + [738] = { + [ts_builtin_sym_end] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3421), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_RBRACE] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_RPAREN] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3419), + [sym_integer] = ACTIONS(3421), + [sym_float] = ACTIONS(3419), + [sym_string] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_RBRACK] = ACTIONS(3419), + [anon_sym_EQ] = ACTIONS(3421), + [anon_sym_COLON] = ACTIONS(3419), + [anon_sym_DOT_DOT] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(3421), + [anon_sym_STAR] = ACTIONS(3419), + [anon_sym_SLASH] = ACTIONS(3419), + [anon_sym_PERCENT] = ACTIONS(3419), + [anon_sym_EQ_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3419), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_LT_EQ] = ACTIONS(3419), + [anon_sym_PLUS_EQ] = ACTIONS(3419), + [anon_sym_DASH_EQ] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3421), + [anon_sym_match] = ACTIONS(3421), + [anon_sym_EQ_GT] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3421), + [anon_sym_for] = ACTIONS(3421), + [anon_sym_asyncfor] = ACTIONS(3419), + [anon_sym_transform] = ACTIONS(3421), + [anon_sym_filter] = ACTIONS(3421), + [anon_sym_find] = ACTIONS(3421), + [anon_sym_remove] = ACTIONS(3421), + [anon_sym_reduce] = ACTIONS(3421), + [anon_sym_select] = ACTIONS(3421), + [anon_sym_insert] = ACTIONS(3421), + [anon_sym_async] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(3421), + [anon_sym_table] = ACTIONS(3421), + [anon_sym_assert] = ACTIONS(3421), + [anon_sym_assert_equal] = ACTIONS(3421), + [anon_sym_download] = ACTIONS(3421), + [anon_sym_help] = ACTIONS(3421), + [anon_sym_length] = ACTIONS(3421), + [anon_sym_output] = ACTIONS(3421), + [anon_sym_output_error] = ACTIONS(3421), + [anon_sym_type] = ACTIONS(3421), + [anon_sym_append] = ACTIONS(3421), + [anon_sym_metadata] = ACTIONS(3421), + [anon_sym_move] = ACTIONS(3421), + [anon_sym_read] = ACTIONS(3421), + [anon_sym_workdir] = ACTIONS(3421), + [anon_sym_write] = ACTIONS(3421), + [anon_sym_from_json] = ACTIONS(3421), + [anon_sym_to_json] = ACTIONS(3421), + [anon_sym_to_string] = ACTIONS(3421), + [anon_sym_to_float] = ACTIONS(3421), + [anon_sym_bash] = ACTIONS(3421), + [anon_sym_fish] = ACTIONS(3421), + [anon_sym_raw] = ACTIONS(3421), + [anon_sym_sh] = ACTIONS(3421), + [anon_sym_zsh] = ACTIONS(3421), + [anon_sym_random] = ACTIONS(3421), + [anon_sym_random_boolean] = ACTIONS(3421), + [anon_sym_random_float] = ACTIONS(3421), + [anon_sym_random_integer] = ACTIONS(3421), + [anon_sym_columns] = ACTIONS(3421), + [anon_sym_rows] = ACTIONS(3421), + [anon_sym_reverse] = ACTIONS(3421), + }, + [739] = { + [sym_assignment_operator] = STATE(539), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_RBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), + }, + [740] = { + [sym_math_operator] = STATE(1322), + [sym_logic_operator] = STATE(1321), + [ts_builtin_sym_end] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3264), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [sym_integer] = ACTIONS(3264), + [sym_float] = ACTIONS(3262), + [sym_string] = ACTIONS(3262), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_RBRACK] = ACTIONS(3262), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_elseif] = ACTIONS(3262), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_match] = ACTIONS(3264), + [anon_sym_EQ_GT] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_asyncfor] = ACTIONS(3262), + [anon_sym_transform] = ACTIONS(3264), + [anon_sym_filter] = ACTIONS(3264), + [anon_sym_find] = ACTIONS(3264), + [anon_sym_remove] = ACTIONS(3264), + [anon_sym_reduce] = ACTIONS(3264), + [anon_sym_select] = ACTIONS(3264), + [anon_sym_insert] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_table] = ACTIONS(3264), + [anon_sym_assert] = ACTIONS(3264), + [anon_sym_assert_equal] = ACTIONS(3264), + [anon_sym_download] = ACTIONS(3264), + [anon_sym_help] = ACTIONS(3264), + [anon_sym_length] = ACTIONS(3264), + [anon_sym_output] = ACTIONS(3264), + [anon_sym_output_error] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_append] = ACTIONS(3264), + [anon_sym_metadata] = ACTIONS(3264), + [anon_sym_move] = ACTIONS(3264), + [anon_sym_read] = ACTIONS(3264), + [anon_sym_workdir] = ACTIONS(3264), + [anon_sym_write] = ACTIONS(3264), + [anon_sym_from_json] = ACTIONS(3264), + [anon_sym_to_json] = ACTIONS(3264), + [anon_sym_to_string] = ACTIONS(3264), + [anon_sym_to_float] = ACTIONS(3264), + [anon_sym_bash] = ACTIONS(3264), + [anon_sym_fish] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3264), + [anon_sym_sh] = ACTIONS(3264), + [anon_sym_zsh] = ACTIONS(3264), + [anon_sym_random] = ACTIONS(3264), + [anon_sym_random_boolean] = ACTIONS(3264), + [anon_sym_random_float] = ACTIONS(3264), + [anon_sym_random_integer] = ACTIONS(3264), + [anon_sym_columns] = ACTIONS(3264), + [anon_sym_rows] = ACTIONS(3264), + [anon_sym_reverse] = ACTIONS(3264), + }, + [741] = { + [sym_else_if] = STATE(741), + [aux_sym_if_else_repeat1] = STATE(741), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_RPAREN] = ACTIONS(3268), + [anon_sym_COMMA] = ACTIONS(3268), + [sym_integer] = ACTIONS(3270), + [sym_float] = ACTIONS(3268), + [sym_string] = ACTIONS(3268), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_RBRACK] = ACTIONS(3268), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_PIPE_PIPE] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT_EQ] = ACTIONS(3268), + [anon_sym_LT_EQ] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_elseif] = ACTIONS(3586), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_match] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_asyncfor] = ACTIONS(3268), + [anon_sym_transform] = ACTIONS(3270), + [anon_sym_filter] = ACTIONS(3270), + [anon_sym_find] = ACTIONS(3270), + [anon_sym_remove] = ACTIONS(3270), + [anon_sym_reduce] = ACTIONS(3270), + [anon_sym_select] = ACTIONS(3270), + [anon_sym_insert] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3270), + [anon_sym_table] = ACTIONS(3270), + [anon_sym_assert] = ACTIONS(3270), + [anon_sym_assert_equal] = ACTIONS(3270), + [anon_sym_download] = ACTIONS(3270), + [anon_sym_help] = ACTIONS(3270), + [anon_sym_length] = ACTIONS(3270), + [anon_sym_output] = ACTIONS(3270), + [anon_sym_output_error] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_append] = ACTIONS(3270), + [anon_sym_metadata] = ACTIONS(3270), + [anon_sym_move] = ACTIONS(3270), + [anon_sym_read] = ACTIONS(3270), + [anon_sym_workdir] = ACTIONS(3270), + [anon_sym_write] = ACTIONS(3270), + [anon_sym_from_json] = ACTIONS(3270), + [anon_sym_to_json] = ACTIONS(3270), + [anon_sym_to_string] = ACTIONS(3270), + [anon_sym_to_float] = ACTIONS(3270), + [anon_sym_bash] = ACTIONS(3270), + [anon_sym_fish] = ACTIONS(3270), + [anon_sym_raw] = ACTIONS(3270), + [anon_sym_sh] = ACTIONS(3270), + [anon_sym_zsh] = ACTIONS(3270), + [anon_sym_random] = ACTIONS(3270), + [anon_sym_random_boolean] = ACTIONS(3270), + [anon_sym_random_float] = ACTIONS(3270), + [anon_sym_random_integer] = ACTIONS(3270), + [anon_sym_columns] = ACTIONS(3270), + [anon_sym_rows] = ACTIONS(3270), + [anon_sym_reverse] = ACTIONS(3270), + }, + [742] = { + [ts_builtin_sym_end] = ACTIONS(3432), + [sym_identifier] = ACTIONS(3434), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3432), + [anon_sym_RBRACE] = ACTIONS(3432), + [anon_sym_SEMI] = ACTIONS(3432), + [anon_sym_LPAREN] = ACTIONS(3432), + [anon_sym_RPAREN] = ACTIONS(3432), + [anon_sym_COMMA] = ACTIONS(3432), + [sym_integer] = ACTIONS(3434), + [sym_float] = ACTIONS(3432), + [sym_string] = ACTIONS(3432), + [anon_sym_true] = ACTIONS(3434), + [anon_sym_false] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3432), + [anon_sym_RBRACK] = ACTIONS(3432), + [anon_sym_EQ] = ACTIONS(3434), + [anon_sym_COLON] = ACTIONS(3432), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_STAR] = ACTIONS(3432), + [anon_sym_SLASH] = ACTIONS(3432), + [anon_sym_PERCENT] = ACTIONS(3432), + [anon_sym_EQ_EQ] = ACTIONS(3432), + [anon_sym_BANG_EQ] = ACTIONS(3432), + [anon_sym_AMP_AMP] = ACTIONS(3432), + [anon_sym_PIPE_PIPE] = ACTIONS(3432), + [anon_sym_GT] = ACTIONS(3434), + [anon_sym_LT] = ACTIONS(3434), + [anon_sym_GT_EQ] = ACTIONS(3432), + [anon_sym_LT_EQ] = ACTIONS(3432), + [anon_sym_PLUS_EQ] = ACTIONS(3432), + [anon_sym_DASH_EQ] = ACTIONS(3432), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_match] = ACTIONS(3434), + [anon_sym_EQ_GT] = ACTIONS(3432), + [anon_sym_while] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_asyncfor] = ACTIONS(3432), + [anon_sym_transform] = ACTIONS(3434), + [anon_sym_filter] = ACTIONS(3434), + [anon_sym_find] = ACTIONS(3434), + [anon_sym_remove] = ACTIONS(3434), + [anon_sym_reduce] = ACTIONS(3434), + [anon_sym_select] = ACTIONS(3434), + [anon_sym_insert] = ACTIONS(3434), + [anon_sym_async] = ACTIONS(3434), + [anon_sym_PIPE] = ACTIONS(3434), + [anon_sym_table] = ACTIONS(3434), + [anon_sym_assert] = ACTIONS(3434), + [anon_sym_assert_equal] = ACTIONS(3434), + [anon_sym_download] = ACTIONS(3434), + [anon_sym_help] = ACTIONS(3434), + [anon_sym_length] = ACTIONS(3434), + [anon_sym_output] = ACTIONS(3434), + [anon_sym_output_error] = ACTIONS(3434), + [anon_sym_type] = ACTIONS(3434), + [anon_sym_append] = ACTIONS(3434), + [anon_sym_metadata] = ACTIONS(3434), + [anon_sym_move] = ACTIONS(3434), + [anon_sym_read] = ACTIONS(3434), + [anon_sym_workdir] = ACTIONS(3434), + [anon_sym_write] = ACTIONS(3434), + [anon_sym_from_json] = ACTIONS(3434), + [anon_sym_to_json] = ACTIONS(3434), + [anon_sym_to_string] = ACTIONS(3434), + [anon_sym_to_float] = ACTIONS(3434), + [anon_sym_bash] = ACTIONS(3434), + [anon_sym_fish] = ACTIONS(3434), + [anon_sym_raw] = ACTIONS(3434), + [anon_sym_sh] = ACTIONS(3434), + [anon_sym_zsh] = ACTIONS(3434), + [anon_sym_random] = ACTIONS(3434), + [anon_sym_random_boolean] = ACTIONS(3434), + [anon_sym_random_float] = ACTIONS(3434), + [anon_sym_random_integer] = ACTIONS(3434), + [anon_sym_columns] = ACTIONS(3434), + [anon_sym_rows] = ACTIONS(3434), + [anon_sym_reverse] = ACTIONS(3434), + }, + [743] = { + [sym_math_operator] = STATE(1322), + [sym_logic_operator] = STATE(1321), + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3254), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3252), + [anon_sym_COMMA] = ACTIONS(3252), + [sym_integer] = ACTIONS(3254), + [sym_float] = ACTIONS(3252), + [sym_string] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_RBRACK] = ACTIONS(3252), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_elseif] = ACTIONS(3252), + [anon_sym_else] = ACTIONS(3254), + [anon_sym_match] = ACTIONS(3254), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_asyncfor] = ACTIONS(3252), + [anon_sym_transform] = ACTIONS(3254), + [anon_sym_filter] = ACTIONS(3254), + [anon_sym_find] = ACTIONS(3254), + [anon_sym_remove] = ACTIONS(3254), + [anon_sym_reduce] = ACTIONS(3254), + [anon_sym_select] = ACTIONS(3254), + [anon_sym_insert] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_table] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_assert_equal] = ACTIONS(3254), + [anon_sym_download] = ACTIONS(3254), + [anon_sym_help] = ACTIONS(3254), + [anon_sym_length] = ACTIONS(3254), + [anon_sym_output] = ACTIONS(3254), + [anon_sym_output_error] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_append] = ACTIONS(3254), + [anon_sym_metadata] = ACTIONS(3254), + [anon_sym_move] = ACTIONS(3254), + [anon_sym_read] = ACTIONS(3254), + [anon_sym_workdir] = ACTIONS(3254), + [anon_sym_write] = ACTIONS(3254), + [anon_sym_from_json] = ACTIONS(3254), + [anon_sym_to_json] = ACTIONS(3254), + [anon_sym_to_string] = ACTIONS(3254), + [anon_sym_to_float] = ACTIONS(3254), + [anon_sym_bash] = ACTIONS(3254), + [anon_sym_fish] = ACTIONS(3254), + [anon_sym_raw] = ACTIONS(3254), + [anon_sym_sh] = ACTIONS(3254), + [anon_sym_zsh] = ACTIONS(3254), + [anon_sym_random] = ACTIONS(3254), + [anon_sym_random_boolean] = ACTIONS(3254), + [anon_sym_random_float] = ACTIONS(3254), + [anon_sym_random_integer] = ACTIONS(3254), + [anon_sym_columns] = ACTIONS(3254), + [anon_sym_rows] = ACTIONS(3254), + [anon_sym_reverse] = ACTIONS(3254), + }, + [744] = { + [sym_math_operator] = STATE(1322), + [sym_logic_operator] = STATE(1321), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3235), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3470), + [sym_integer] = ACTIONS(3235), + [sym_float] = ACTIONS(3233), + [sym_string] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_RBRACK] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_elseif] = ACTIONS(3233), + [anon_sym_else] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_asyncfor] = ACTIONS(3233), + [anon_sym_transform] = ACTIONS(3235), + [anon_sym_filter] = ACTIONS(3235), + [anon_sym_find] = ACTIONS(3235), + [anon_sym_remove] = ACTIONS(3235), + [anon_sym_reduce] = ACTIONS(3235), + [anon_sym_select] = ACTIONS(3235), + [anon_sym_insert] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_table] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_assert_equal] = ACTIONS(3235), + [anon_sym_download] = ACTIONS(3235), + [anon_sym_help] = ACTIONS(3235), + [anon_sym_length] = ACTIONS(3235), + [anon_sym_output] = ACTIONS(3235), + [anon_sym_output_error] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_append] = ACTIONS(3235), + [anon_sym_metadata] = ACTIONS(3235), + [anon_sym_move] = ACTIONS(3235), + [anon_sym_read] = ACTIONS(3235), + [anon_sym_workdir] = ACTIONS(3235), + [anon_sym_write] = ACTIONS(3235), + [anon_sym_from_json] = ACTIONS(3235), + [anon_sym_to_json] = ACTIONS(3235), + [anon_sym_to_string] = ACTIONS(3235), + [anon_sym_to_float] = ACTIONS(3235), + [anon_sym_bash] = ACTIONS(3235), + [anon_sym_fish] = ACTIONS(3235), + [anon_sym_raw] = ACTIONS(3235), + [anon_sym_sh] = ACTIONS(3235), + [anon_sym_zsh] = ACTIONS(3235), + [anon_sym_random] = ACTIONS(3235), + [anon_sym_random_boolean] = ACTIONS(3235), + [anon_sym_random_float] = ACTIONS(3235), + [anon_sym_random_integer] = ACTIONS(3235), + [anon_sym_columns] = ACTIONS(3235), + [anon_sym_rows] = ACTIONS(3235), + [anon_sym_reverse] = ACTIONS(3235), + }, + [745] = { + [sym_expression] = STATE(966), + [sym__expression_kind] = STATE(986), + [aux_sym__expression_list] = STATE(695), + [sym_value] = STATE(986), + [sym_boolean] = STATE(981), + [sym_list] = STATE(981), + [sym_map] = STATE(981), + [sym_index] = STATE(986), + [sym_math] = STATE(986), + [sym_logic] = STATE(986), + [sym_identifier_list] = STATE(2055), + [sym_table] = STATE(981), + [sym_function] = STATE(981), + [sym_function_call] = STATE(986), + [sym__context_defined_function] = STATE(990), + [sym_built_in_function] = STATE(990), + [sym__built_in_function_name] = STATE(692), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_COMMA] = ACTIONS(2435), + [sym_integer] = ACTIONS(3442), + [sym_float] = ACTIONS(3444), + [sym_string] = ACTIONS(3444), + [anon_sym_true] = ACTIONS(3446), + [anon_sym_false] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_EQ] = ACTIONS(2437), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2435), + [anon_sym_DASH_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3523), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3525), + [anon_sym_assert] = ACTIONS(3527), + [anon_sym_assert_equal] = ACTIONS(3527), + [anon_sym_download] = ACTIONS(3527), + [anon_sym_help] = ACTIONS(3527), + [anon_sym_length] = ACTIONS(3527), + [anon_sym_output] = ACTIONS(3527), + [anon_sym_output_error] = ACTIONS(3527), + [anon_sym_type] = ACTIONS(3527), + [anon_sym_append] = ACTIONS(3527), + [anon_sym_metadata] = ACTIONS(3527), + [anon_sym_move] = ACTIONS(3527), + [anon_sym_read] = ACTIONS(3527), + [anon_sym_workdir] = ACTIONS(3527), + [anon_sym_write] = ACTIONS(3527), + [anon_sym_from_json] = ACTIONS(3527), + [anon_sym_to_json] = ACTIONS(3527), + [anon_sym_to_string] = ACTIONS(3527), + [anon_sym_to_float] = ACTIONS(3527), + [anon_sym_bash] = ACTIONS(3527), + [anon_sym_fish] = ACTIONS(3527), + [anon_sym_raw] = ACTIONS(3527), + [anon_sym_sh] = ACTIONS(3527), + [anon_sym_zsh] = ACTIONS(3527), + [anon_sym_random] = ACTIONS(3527), + [anon_sym_random_boolean] = ACTIONS(3527), + [anon_sym_random_float] = ACTIONS(3527), + [anon_sym_random_integer] = ACTIONS(3527), + [anon_sym_columns] = ACTIONS(3527), + [anon_sym_rows] = ACTIONS(3527), + [anon_sym_reverse] = ACTIONS(3527), + }, + [746] = { + [sym_else_if] = STATE(778), + [sym_else] = STATE(802), + [aux_sym_if_else_repeat1] = STATE(778), + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [sym_integer] = ACTIONS(3231), + [sym_float] = ACTIONS(3229), + [sym_string] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_COLON] = ACTIONS(3229), + [anon_sym_DOT_DOT] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_elseif] = ACTIONS(3572), + [anon_sym_else] = ACTIONS(3584), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_asyncfor] = ACTIONS(3229), + [anon_sym_transform] = ACTIONS(3231), + [anon_sym_filter] = ACTIONS(3231), + [anon_sym_find] = ACTIONS(3231), + [anon_sym_remove] = ACTIONS(3231), + [anon_sym_reduce] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_insert] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_table] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_assert_equal] = ACTIONS(3231), + [anon_sym_download] = ACTIONS(3231), + [anon_sym_help] = ACTIONS(3231), + [anon_sym_length] = ACTIONS(3231), + [anon_sym_output] = ACTIONS(3231), + [anon_sym_output_error] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_append] = ACTIONS(3231), + [anon_sym_metadata] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_read] = ACTIONS(3231), + [anon_sym_workdir] = ACTIONS(3231), + [anon_sym_write] = ACTIONS(3231), + [anon_sym_from_json] = ACTIONS(3231), + [anon_sym_to_json] = ACTIONS(3231), + [anon_sym_to_string] = ACTIONS(3231), + [anon_sym_to_float] = ACTIONS(3231), + [anon_sym_bash] = ACTIONS(3231), + [anon_sym_fish] = ACTIONS(3231), + [anon_sym_raw] = ACTIONS(3231), + [anon_sym_sh] = ACTIONS(3231), + [anon_sym_zsh] = ACTIONS(3231), + [anon_sym_random] = ACTIONS(3231), + [anon_sym_random_boolean] = ACTIONS(3231), + [anon_sym_random_float] = ACTIONS(3231), + [anon_sym_random_integer] = ACTIONS(3231), + [anon_sym_columns] = ACTIONS(3231), + [anon_sym_rows] = ACTIONS(3231), + [anon_sym_reverse] = ACTIONS(3231), + }, + [747] = { + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2541), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_RPAREN] = ACTIONS(2518), + [anon_sym_COMMA] = ACTIONS(2518), + [sym_integer] = ACTIONS(2541), + [sym_float] = ACTIONS(2518), + [sym_string] = ACTIONS(2518), + [anon_sym_true] = ACTIONS(2541), + [anon_sym_false] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym_RBRACK] = ACTIONS(2518), + [anon_sym_EQ] = ACTIONS(2541), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_PLUS_EQ] = ACTIONS(2518), + [anon_sym_DASH_EQ] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2518), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_asyncfor] = ACTIONS(2518), + [anon_sym_transform] = ACTIONS(2541), + [anon_sym_filter] = ACTIONS(2541), + [anon_sym_find] = ACTIONS(2541), + [anon_sym_remove] = ACTIONS(2541), + [anon_sym_reduce] = ACTIONS(2541), + [anon_sym_select] = ACTIONS(2541), + [anon_sym_insert] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_table] = ACTIONS(2541), + [anon_sym_assert] = ACTIONS(2541), + [anon_sym_assert_equal] = ACTIONS(2541), + [anon_sym_download] = ACTIONS(2541), + [anon_sym_help] = ACTIONS(2541), + [anon_sym_length] = ACTIONS(2541), + [anon_sym_output] = ACTIONS(2541), + [anon_sym_output_error] = ACTIONS(2541), + [anon_sym_type] = ACTIONS(2541), + [anon_sym_append] = ACTIONS(2541), + [anon_sym_metadata] = ACTIONS(2541), + [anon_sym_move] = ACTIONS(2541), + [anon_sym_read] = ACTIONS(2541), + [anon_sym_workdir] = ACTIONS(2541), + [anon_sym_write] = ACTIONS(2541), + [anon_sym_from_json] = ACTIONS(2541), + [anon_sym_to_json] = ACTIONS(2541), + [anon_sym_to_string] = ACTIONS(2541), + [anon_sym_to_float] = ACTIONS(2541), + [anon_sym_bash] = ACTIONS(2541), + [anon_sym_fish] = ACTIONS(2541), + [anon_sym_raw] = ACTIONS(2541), + [anon_sym_sh] = ACTIONS(2541), + [anon_sym_zsh] = ACTIONS(2541), + [anon_sym_random] = ACTIONS(2541), + [anon_sym_random_boolean] = ACTIONS(2541), + [anon_sym_random_float] = ACTIONS(2541), + [anon_sym_random_integer] = ACTIONS(2541), + [anon_sym_columns] = ACTIONS(2541), + [anon_sym_rows] = ACTIONS(2541), + [anon_sym_reverse] = ACTIONS(2541), + }, + [748] = { + [sym_assignment_operator] = STATE(553), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_elseif] = ACTIONS(2435), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), + }, + [749] = { + [sym_math_operator] = STATE(1305), + [sym_logic_operator] = STATE(1306), + [ts_builtin_sym_end] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3264), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [sym_integer] = ACTIONS(3264), + [sym_float] = ACTIONS(3262), + [sym_string] = ACTIONS(3262), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_RBRACK] = ACTIONS(3262), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_DOT_DOT] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_match] = ACTIONS(3264), + [anon_sym_EQ_GT] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_asyncfor] = ACTIONS(3262), + [anon_sym_transform] = ACTIONS(3264), + [anon_sym_filter] = ACTIONS(3264), + [anon_sym_find] = ACTIONS(3264), + [anon_sym_remove] = ACTIONS(3264), + [anon_sym_reduce] = ACTIONS(3264), + [anon_sym_select] = ACTIONS(3264), + [anon_sym_insert] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_table] = ACTIONS(3264), + [anon_sym_assert] = ACTIONS(3264), + [anon_sym_assert_equal] = ACTIONS(3264), + [anon_sym_download] = ACTIONS(3264), + [anon_sym_help] = ACTIONS(3264), + [anon_sym_length] = ACTIONS(3264), + [anon_sym_output] = ACTIONS(3264), + [anon_sym_output_error] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_append] = ACTIONS(3264), + [anon_sym_metadata] = ACTIONS(3264), + [anon_sym_move] = ACTIONS(3264), + [anon_sym_read] = ACTIONS(3264), + [anon_sym_workdir] = ACTIONS(3264), + [anon_sym_write] = ACTIONS(3264), + [anon_sym_from_json] = ACTIONS(3264), + [anon_sym_to_json] = ACTIONS(3264), + [anon_sym_to_string] = ACTIONS(3264), + [anon_sym_to_float] = ACTIONS(3264), + [anon_sym_bash] = ACTIONS(3264), + [anon_sym_fish] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3264), + [anon_sym_sh] = ACTIONS(3264), + [anon_sym_zsh] = ACTIONS(3264), + [anon_sym_random] = ACTIONS(3264), + [anon_sym_random_boolean] = ACTIONS(3264), + [anon_sym_random_float] = ACTIONS(3264), + [anon_sym_random_integer] = ACTIONS(3264), + [anon_sym_columns] = ACTIONS(3264), + [anon_sym_rows] = ACTIONS(3264), + [anon_sym_reverse] = ACTIONS(3264), + }, + [750] = { + [ts_builtin_sym_end] = ACTIONS(3355), + [sym_identifier] = ACTIONS(3357), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_RBRACE] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_RPAREN] = ACTIONS(3355), + [anon_sym_COMMA] = ACTIONS(3355), + [sym_integer] = ACTIONS(3357), + [sym_float] = ACTIONS(3355), + [sym_string] = ACTIONS(3355), + [anon_sym_true] = ACTIONS(3357), + [anon_sym_false] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_RBRACK] = ACTIONS(3355), + [anon_sym_COLON] = ACTIONS(3355), + [anon_sym_DOT_DOT] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3355), + [anon_sym_SLASH] = ACTIONS(3355), + [anon_sym_PERCENT] = ACTIONS(3355), + [anon_sym_EQ_EQ] = ACTIONS(3355), + [anon_sym_BANG_EQ] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_GT] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_GT_EQ] = ACTIONS(3355), + [anon_sym_LT_EQ] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3357), + [anon_sym_elseif] = ACTIONS(3355), + [anon_sym_else] = ACTIONS(3357), + [anon_sym_match] = ACTIONS(3357), + [anon_sym_EQ_GT] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3357), + [anon_sym_asyncfor] = ACTIONS(3355), + [anon_sym_transform] = ACTIONS(3357), + [anon_sym_filter] = ACTIONS(3357), + [anon_sym_find] = ACTIONS(3357), + [anon_sym_remove] = ACTIONS(3357), + [anon_sym_reduce] = ACTIONS(3357), + [anon_sym_select] = ACTIONS(3357), + [anon_sym_insert] = ACTIONS(3357), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(3357), + [anon_sym_table] = ACTIONS(3357), + [anon_sym_assert] = ACTIONS(3357), + [anon_sym_assert_equal] = ACTIONS(3357), + [anon_sym_download] = ACTIONS(3357), + [anon_sym_help] = ACTIONS(3357), + [anon_sym_length] = ACTIONS(3357), + [anon_sym_output] = ACTIONS(3357), + [anon_sym_output_error] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3357), + [anon_sym_append] = ACTIONS(3357), + [anon_sym_metadata] = ACTIONS(3357), + [anon_sym_move] = ACTIONS(3357), + [anon_sym_read] = ACTIONS(3357), + [anon_sym_workdir] = ACTIONS(3357), + [anon_sym_write] = ACTIONS(3357), + [anon_sym_from_json] = ACTIONS(3357), + [anon_sym_to_json] = ACTIONS(3357), + [anon_sym_to_string] = ACTIONS(3357), + [anon_sym_to_float] = ACTIONS(3357), + [anon_sym_bash] = ACTIONS(3357), + [anon_sym_fish] = ACTIONS(3357), + [anon_sym_raw] = ACTIONS(3357), + [anon_sym_sh] = ACTIONS(3357), + [anon_sym_zsh] = ACTIONS(3357), + [anon_sym_random] = ACTIONS(3357), + [anon_sym_random_boolean] = ACTIONS(3357), + [anon_sym_random_float] = ACTIONS(3357), + [anon_sym_random_integer] = ACTIONS(3357), + [anon_sym_columns] = ACTIONS(3357), + [anon_sym_rows] = ACTIONS(3357), + [anon_sym_reverse] = ACTIONS(3357), + }, + [751] = { + [sym_math_operator] = STATE(1305), + [sym_logic_operator] = STATE(1306), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_COMMA] = ACTIONS(3248), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3248), + [sym_string] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3589), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_asyncfor] = ACTIONS(3248), + [anon_sym_transform] = ACTIONS(3250), + [anon_sym_filter] = ACTIONS(3250), + [anon_sym_find] = ACTIONS(3250), + [anon_sym_remove] = ACTIONS(3250), + [anon_sym_reduce] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_insert] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_table] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_assert_equal] = ACTIONS(3250), + [anon_sym_download] = ACTIONS(3250), + [anon_sym_help] = ACTIONS(3250), + [anon_sym_length] = ACTIONS(3250), + [anon_sym_output] = ACTIONS(3250), + [anon_sym_output_error] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_append] = ACTIONS(3250), + [anon_sym_metadata] = ACTIONS(3250), + [anon_sym_move] = ACTIONS(3250), + [anon_sym_read] = ACTIONS(3250), + [anon_sym_workdir] = ACTIONS(3250), + [anon_sym_write] = ACTIONS(3250), + [anon_sym_from_json] = ACTIONS(3250), + [anon_sym_to_json] = ACTIONS(3250), + [anon_sym_to_string] = ACTIONS(3250), + [anon_sym_to_float] = ACTIONS(3250), + [anon_sym_bash] = ACTIONS(3250), + [anon_sym_fish] = ACTIONS(3250), + [anon_sym_raw] = ACTIONS(3250), + [anon_sym_sh] = ACTIONS(3250), + [anon_sym_zsh] = ACTIONS(3250), + [anon_sym_random] = ACTIONS(3250), + [anon_sym_random_boolean] = ACTIONS(3250), + [anon_sym_random_float] = ACTIONS(3250), + [anon_sym_random_integer] = ACTIONS(3250), + [anon_sym_columns] = ACTIONS(3250), + [anon_sym_rows] = ACTIONS(3250), + [anon_sym_reverse] = ACTIONS(3250), + }, + [752] = { + [sym_math_operator] = STATE(1242), + [sym_logic_operator] = STATE(1243), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3248), + [sym_string] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_elseif] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_asyncfor] = ACTIONS(3248), + [anon_sym_transform] = ACTIONS(3250), + [anon_sym_filter] = ACTIONS(3250), + [anon_sym_find] = ACTIONS(3250), + [anon_sym_remove] = ACTIONS(3250), + [anon_sym_reduce] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_insert] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_table] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_assert_equal] = ACTIONS(3250), + [anon_sym_download] = ACTIONS(3250), + [anon_sym_help] = ACTIONS(3250), + [anon_sym_length] = ACTIONS(3250), + [anon_sym_output] = ACTIONS(3250), + [anon_sym_output_error] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_append] = ACTIONS(3250), + [anon_sym_metadata] = ACTIONS(3250), + [anon_sym_move] = ACTIONS(3250), + [anon_sym_read] = ACTIONS(3250), + [anon_sym_workdir] = ACTIONS(3250), + [anon_sym_write] = ACTIONS(3250), + [anon_sym_from_json] = ACTIONS(3250), + [anon_sym_to_json] = ACTIONS(3250), + [anon_sym_to_string] = ACTIONS(3250), + [anon_sym_to_float] = ACTIONS(3250), + [anon_sym_bash] = ACTIONS(3250), + [anon_sym_fish] = ACTIONS(3250), + [anon_sym_raw] = ACTIONS(3250), + [anon_sym_sh] = ACTIONS(3250), + [anon_sym_zsh] = ACTIONS(3250), + [anon_sym_random] = ACTIONS(3250), + [anon_sym_random_boolean] = ACTIONS(3250), + [anon_sym_random_float] = ACTIONS(3250), + [anon_sym_random_integer] = ACTIONS(3250), + [anon_sym_columns] = ACTIONS(3250), + [anon_sym_rows] = ACTIONS(3250), + [anon_sym_reverse] = ACTIONS(3250), + }, + [753] = { + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2541), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_RPAREN] = ACTIONS(2518), + [anon_sym_COMMA] = ACTIONS(2518), + [sym_integer] = ACTIONS(2541), + [sym_float] = ACTIONS(2518), + [sym_string] = ACTIONS(2518), + [anon_sym_true] = ACTIONS(2541), + [anon_sym_false] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym_RBRACK] = ACTIONS(2518), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_elseif] = ACTIONS(2518), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2518), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_asyncfor] = ACTIONS(2518), + [anon_sym_transform] = ACTIONS(2541), + [anon_sym_filter] = ACTIONS(2541), + [anon_sym_find] = ACTIONS(2541), + [anon_sym_remove] = ACTIONS(2541), + [anon_sym_reduce] = ACTIONS(2541), + [anon_sym_select] = ACTIONS(2541), + [anon_sym_insert] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_table] = ACTIONS(2541), + [anon_sym_assert] = ACTIONS(2541), + [anon_sym_assert_equal] = ACTIONS(2541), + [anon_sym_download] = ACTIONS(2541), + [anon_sym_help] = ACTIONS(2541), + [anon_sym_length] = ACTIONS(2541), + [anon_sym_output] = ACTIONS(2541), + [anon_sym_output_error] = ACTIONS(2541), + [anon_sym_type] = ACTIONS(2541), + [anon_sym_append] = ACTIONS(2541), + [anon_sym_metadata] = ACTIONS(2541), + [anon_sym_move] = ACTIONS(2541), + [anon_sym_read] = ACTIONS(2541), + [anon_sym_workdir] = ACTIONS(2541), + [anon_sym_write] = ACTIONS(2541), + [anon_sym_from_json] = ACTIONS(2541), + [anon_sym_to_json] = ACTIONS(2541), + [anon_sym_to_string] = ACTIONS(2541), + [anon_sym_to_float] = ACTIONS(2541), + [anon_sym_bash] = ACTIONS(2541), + [anon_sym_fish] = ACTIONS(2541), + [anon_sym_raw] = ACTIONS(2541), + [anon_sym_sh] = ACTIONS(2541), + [anon_sym_zsh] = ACTIONS(2541), + [anon_sym_random] = ACTIONS(2541), + [anon_sym_random_boolean] = ACTIONS(2541), + [anon_sym_random_float] = ACTIONS(2541), + [anon_sym_random_integer] = ACTIONS(2541), + [anon_sym_columns] = ACTIONS(2541), + [anon_sym_rows] = ACTIONS(2541), + [anon_sym_reverse] = ACTIONS(2541), + }, + [754] = { + [sym_assignment_operator] = STATE(548), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_elseif] = ACTIONS(2435), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), + }, + [755] = { + [sym_math_operator] = STATE(1305), + [sym_logic_operator] = STATE(1306), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3235), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3591), + [sym_integer] = ACTIONS(3235), + [sym_float] = ACTIONS(3233), + [sym_string] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_RBRACK] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(879), + [anon_sym_DOT_DOT] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_asyncfor] = ACTIONS(3233), + [anon_sym_transform] = ACTIONS(3235), + [anon_sym_filter] = ACTIONS(3235), + [anon_sym_find] = ACTIONS(3235), + [anon_sym_remove] = ACTIONS(3235), + [anon_sym_reduce] = ACTIONS(3235), + [anon_sym_select] = ACTIONS(3235), + [anon_sym_insert] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_table] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_assert_equal] = ACTIONS(3235), + [anon_sym_download] = ACTIONS(3235), + [anon_sym_help] = ACTIONS(3235), + [anon_sym_length] = ACTIONS(3235), + [anon_sym_output] = ACTIONS(3235), + [anon_sym_output_error] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_append] = ACTIONS(3235), + [anon_sym_metadata] = ACTIONS(3235), + [anon_sym_move] = ACTIONS(3235), + [anon_sym_read] = ACTIONS(3235), + [anon_sym_workdir] = ACTIONS(3235), + [anon_sym_write] = ACTIONS(3235), + [anon_sym_from_json] = ACTIONS(3235), + [anon_sym_to_json] = ACTIONS(3235), + [anon_sym_to_string] = ACTIONS(3235), + [anon_sym_to_float] = ACTIONS(3235), + [anon_sym_bash] = ACTIONS(3235), + [anon_sym_fish] = ACTIONS(3235), + [anon_sym_raw] = ACTIONS(3235), + [anon_sym_sh] = ACTIONS(3235), + [anon_sym_zsh] = ACTIONS(3235), + [anon_sym_random] = ACTIONS(3235), + [anon_sym_random_boolean] = ACTIONS(3235), + [anon_sym_random_float] = ACTIONS(3235), + [anon_sym_random_integer] = ACTIONS(3235), + [anon_sym_columns] = ACTIONS(3235), + [anon_sym_rows] = ACTIONS(3235), + [anon_sym_reverse] = ACTIONS(3235), + }, + [756] = { + [sym_math_operator] = STATE(1305), + [sym_logic_operator] = STATE(1306), + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_RBRACK] = ACTIONS(3275), + [anon_sym_COLON] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [757] = { + [ts_builtin_sym_end] = ACTIONS(3409), + [sym_identifier] = ACTIONS(3411), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_RBRACE] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), + [anon_sym_RPAREN] = ACTIONS(3409), + [anon_sym_COMMA] = ACTIONS(3409), + [sym_integer] = ACTIONS(3411), + [sym_float] = ACTIONS(3409), + [sym_string] = ACTIONS(3409), + [anon_sym_true] = ACTIONS(3411), + [anon_sym_false] = ACTIONS(3411), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_RBRACK] = ACTIONS(3409), + [anon_sym_COLON] = ACTIONS(3409), + [anon_sym_DOT_DOT] = ACTIONS(3409), + [anon_sym_PLUS] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3411), + [anon_sym_STAR] = ACTIONS(3409), + [anon_sym_SLASH] = ACTIONS(3409), + [anon_sym_PERCENT] = ACTIONS(3409), + [anon_sym_EQ_EQ] = ACTIONS(3409), + [anon_sym_BANG_EQ] = ACTIONS(3409), + [anon_sym_AMP_AMP] = ACTIONS(3409), + [anon_sym_PIPE_PIPE] = ACTIONS(3409), + [anon_sym_GT] = ACTIONS(3411), + [anon_sym_LT] = ACTIONS(3411), + [anon_sym_GT_EQ] = ACTIONS(3409), + [anon_sym_LT_EQ] = ACTIONS(3409), + [anon_sym_if] = ACTIONS(3411), + [anon_sym_elseif] = ACTIONS(3409), + [anon_sym_else] = ACTIONS(3411), + [anon_sym_match] = ACTIONS(3411), + [anon_sym_EQ_GT] = ACTIONS(3409), + [anon_sym_while] = ACTIONS(3411), + [anon_sym_for] = ACTIONS(3411), + [anon_sym_asyncfor] = ACTIONS(3409), + [anon_sym_transform] = ACTIONS(3411), + [anon_sym_filter] = ACTIONS(3411), + [anon_sym_find] = ACTIONS(3411), + [anon_sym_remove] = ACTIONS(3411), + [anon_sym_reduce] = ACTIONS(3411), + [anon_sym_select] = ACTIONS(3411), + [anon_sym_insert] = ACTIONS(3411), + [anon_sym_async] = ACTIONS(3411), + [anon_sym_PIPE] = ACTIONS(3411), + [anon_sym_table] = ACTIONS(3411), + [anon_sym_assert] = ACTIONS(3411), + [anon_sym_assert_equal] = ACTIONS(3411), + [anon_sym_download] = ACTIONS(3411), + [anon_sym_help] = ACTIONS(3411), + [anon_sym_length] = ACTIONS(3411), + [anon_sym_output] = ACTIONS(3411), + [anon_sym_output_error] = ACTIONS(3411), + [anon_sym_type] = ACTIONS(3411), + [anon_sym_append] = ACTIONS(3411), + [anon_sym_metadata] = ACTIONS(3411), + [anon_sym_move] = ACTIONS(3411), + [anon_sym_read] = ACTIONS(3411), + [anon_sym_workdir] = ACTIONS(3411), + [anon_sym_write] = ACTIONS(3411), + [anon_sym_from_json] = ACTIONS(3411), + [anon_sym_to_json] = ACTIONS(3411), + [anon_sym_to_string] = ACTIONS(3411), + [anon_sym_to_float] = ACTIONS(3411), + [anon_sym_bash] = ACTIONS(3411), + [anon_sym_fish] = ACTIONS(3411), + [anon_sym_raw] = ACTIONS(3411), + [anon_sym_sh] = ACTIONS(3411), + [anon_sym_zsh] = ACTIONS(3411), + [anon_sym_random] = ACTIONS(3411), + [anon_sym_random_boolean] = ACTIONS(3411), + [anon_sym_random_float] = ACTIONS(3411), + [anon_sym_random_integer] = ACTIONS(3411), + [anon_sym_columns] = ACTIONS(3411), + [anon_sym_rows] = ACTIONS(3411), + [anon_sym_reverse] = ACTIONS(3411), + }, + [758] = { + [ts_builtin_sym_end] = ACTIONS(3405), + [sym_identifier] = ACTIONS(3407), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_RBRACE] = ACTIONS(3405), + [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_LPAREN] = ACTIONS(3405), + [anon_sym_RPAREN] = ACTIONS(3405), + [anon_sym_COMMA] = ACTIONS(3405), + [sym_integer] = ACTIONS(3407), + [sym_float] = ACTIONS(3405), + [sym_string] = ACTIONS(3405), + [anon_sym_true] = ACTIONS(3407), + [anon_sym_false] = ACTIONS(3407), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_RBRACK] = ACTIONS(3405), + [anon_sym_COLON] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(3405), + [anon_sym_PLUS] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(3405), + [anon_sym_SLASH] = ACTIONS(3405), + [anon_sym_PERCENT] = ACTIONS(3405), + [anon_sym_EQ_EQ] = ACTIONS(3405), + [anon_sym_BANG_EQ] = ACTIONS(3405), + [anon_sym_AMP_AMP] = ACTIONS(3405), + [anon_sym_PIPE_PIPE] = ACTIONS(3405), + [anon_sym_GT] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3407), + [anon_sym_GT_EQ] = ACTIONS(3405), + [anon_sym_LT_EQ] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3407), + [anon_sym_elseif] = ACTIONS(3405), + [anon_sym_else] = ACTIONS(3407), + [anon_sym_match] = ACTIONS(3407), + [anon_sym_EQ_GT] = ACTIONS(3405), + [anon_sym_while] = ACTIONS(3407), + [anon_sym_for] = ACTIONS(3407), + [anon_sym_asyncfor] = ACTIONS(3405), + [anon_sym_transform] = ACTIONS(3407), + [anon_sym_filter] = ACTIONS(3407), + [anon_sym_find] = ACTIONS(3407), + [anon_sym_remove] = ACTIONS(3407), + [anon_sym_reduce] = ACTIONS(3407), + [anon_sym_select] = ACTIONS(3407), + [anon_sym_insert] = ACTIONS(3407), + [anon_sym_async] = ACTIONS(3407), + [anon_sym_PIPE] = ACTIONS(3407), + [anon_sym_table] = ACTIONS(3407), + [anon_sym_assert] = ACTIONS(3407), + [anon_sym_assert_equal] = ACTIONS(3407), + [anon_sym_download] = ACTIONS(3407), + [anon_sym_help] = ACTIONS(3407), + [anon_sym_length] = ACTIONS(3407), + [anon_sym_output] = ACTIONS(3407), + [anon_sym_output_error] = ACTIONS(3407), + [anon_sym_type] = ACTIONS(3407), + [anon_sym_append] = ACTIONS(3407), + [anon_sym_metadata] = ACTIONS(3407), + [anon_sym_move] = ACTIONS(3407), + [anon_sym_read] = ACTIONS(3407), + [anon_sym_workdir] = ACTIONS(3407), + [anon_sym_write] = ACTIONS(3407), + [anon_sym_from_json] = ACTIONS(3407), + [anon_sym_to_json] = ACTIONS(3407), + [anon_sym_to_string] = ACTIONS(3407), + [anon_sym_to_float] = ACTIONS(3407), + [anon_sym_bash] = ACTIONS(3407), + [anon_sym_fish] = ACTIONS(3407), + [anon_sym_raw] = ACTIONS(3407), + [anon_sym_sh] = ACTIONS(3407), + [anon_sym_zsh] = ACTIONS(3407), + [anon_sym_random] = ACTIONS(3407), + [anon_sym_random_boolean] = ACTIONS(3407), + [anon_sym_random_float] = ACTIONS(3407), + [anon_sym_random_integer] = ACTIONS(3407), + [anon_sym_columns] = ACTIONS(3407), + [anon_sym_rows] = ACTIONS(3407), + [anon_sym_reverse] = ACTIONS(3407), + }, + [759] = { + [ts_builtin_sym_end] = ACTIONS(3401), + [sym_identifier] = ACTIONS(3403), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_RBRACE] = ACTIONS(3401), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_RPAREN] = ACTIONS(3401), + [anon_sym_COMMA] = ACTIONS(3401), + [sym_integer] = ACTIONS(3403), + [sym_float] = ACTIONS(3401), + [sym_string] = ACTIONS(3401), + [anon_sym_true] = ACTIONS(3403), + [anon_sym_false] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_RBRACK] = ACTIONS(3401), + [anon_sym_COLON] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_STAR] = ACTIONS(3401), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_PERCENT] = ACTIONS(3401), + [anon_sym_EQ_EQ] = ACTIONS(3401), + [anon_sym_BANG_EQ] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_PIPE_PIPE] = ACTIONS(3401), + [anon_sym_GT] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_GT_EQ] = ACTIONS(3401), + [anon_sym_LT_EQ] = ACTIONS(3401), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_elseif] = ACTIONS(3401), + [anon_sym_else] = ACTIONS(3403), + [anon_sym_match] = ACTIONS(3403), + [anon_sym_EQ_GT] = ACTIONS(3401), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_asyncfor] = ACTIONS(3401), + [anon_sym_transform] = ACTIONS(3403), + [anon_sym_filter] = ACTIONS(3403), + [anon_sym_find] = ACTIONS(3403), + [anon_sym_remove] = ACTIONS(3403), + [anon_sym_reduce] = ACTIONS(3403), + [anon_sym_select] = ACTIONS(3403), + [anon_sym_insert] = ACTIONS(3403), + [anon_sym_async] = ACTIONS(3403), + [anon_sym_PIPE] = ACTIONS(3403), + [anon_sym_table] = ACTIONS(3403), + [anon_sym_assert] = ACTIONS(3403), + [anon_sym_assert_equal] = ACTIONS(3403), + [anon_sym_download] = ACTIONS(3403), + [anon_sym_help] = ACTIONS(3403), + [anon_sym_length] = ACTIONS(3403), + [anon_sym_output] = ACTIONS(3403), + [anon_sym_output_error] = ACTIONS(3403), + [anon_sym_type] = ACTIONS(3403), + [anon_sym_append] = ACTIONS(3403), + [anon_sym_metadata] = ACTIONS(3403), + [anon_sym_move] = ACTIONS(3403), + [anon_sym_read] = ACTIONS(3403), + [anon_sym_workdir] = ACTIONS(3403), + [anon_sym_write] = ACTIONS(3403), + [anon_sym_from_json] = ACTIONS(3403), + [anon_sym_to_json] = ACTIONS(3403), + [anon_sym_to_string] = ACTIONS(3403), + [anon_sym_to_float] = ACTIONS(3403), + [anon_sym_bash] = ACTIONS(3403), + [anon_sym_fish] = ACTIONS(3403), + [anon_sym_raw] = ACTIONS(3403), + [anon_sym_sh] = ACTIONS(3403), + [anon_sym_zsh] = ACTIONS(3403), + [anon_sym_random] = ACTIONS(3403), + [anon_sym_random_boolean] = ACTIONS(3403), + [anon_sym_random_float] = ACTIONS(3403), + [anon_sym_random_integer] = ACTIONS(3403), + [anon_sym_columns] = ACTIONS(3403), + [anon_sym_rows] = ACTIONS(3403), + [anon_sym_reverse] = ACTIONS(3403), + }, + [760] = { + [sym_else_if] = STATE(793), + [sym_else] = STATE(792), + [aux_sym_if_else_repeat1] = STATE(793), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_RPAREN] = ACTIONS(3219), + [sym_integer] = ACTIONS(3221), + [sym_float] = ACTIONS(3219), + [sym_string] = ACTIONS(3219), + [anon_sym_true] = ACTIONS(3221), + [anon_sym_false] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_elseif] = ACTIONS(3596), + [anon_sym_else] = ACTIONS(3598), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_EQ_GT] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_asyncfor] = ACTIONS(3219), + [anon_sym_transform] = ACTIONS(3221), + [anon_sym_filter] = ACTIONS(3221), + [anon_sym_find] = ACTIONS(3221), + [anon_sym_remove] = ACTIONS(3221), + [anon_sym_reduce] = ACTIONS(3221), + [anon_sym_select] = ACTIONS(3221), + [anon_sym_insert] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_table] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_assert_equal] = ACTIONS(3221), + [anon_sym_download] = ACTIONS(3221), + [anon_sym_help] = ACTIONS(3221), + [anon_sym_length] = ACTIONS(3221), + [anon_sym_output] = ACTIONS(3221), + [anon_sym_output_error] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_append] = ACTIONS(3221), + [anon_sym_metadata] = ACTIONS(3221), + [anon_sym_move] = ACTIONS(3221), + [anon_sym_read] = ACTIONS(3221), + [anon_sym_workdir] = ACTIONS(3221), + [anon_sym_write] = ACTIONS(3221), + [anon_sym_from_json] = ACTIONS(3221), + [anon_sym_to_json] = ACTIONS(3221), + [anon_sym_to_string] = ACTIONS(3221), + [anon_sym_to_float] = ACTIONS(3221), + [anon_sym_bash] = ACTIONS(3221), + [anon_sym_fish] = ACTIONS(3221), + [anon_sym_raw] = ACTIONS(3221), + [anon_sym_sh] = ACTIONS(3221), + [anon_sym_zsh] = ACTIONS(3221), + [anon_sym_random] = ACTIONS(3221), + [anon_sym_random_boolean] = ACTIONS(3221), + [anon_sym_random_float] = ACTIONS(3221), + [anon_sym_random_integer] = ACTIONS(3221), + [anon_sym_columns] = ACTIONS(3221), + [anon_sym_rows] = ACTIONS(3221), + [anon_sym_reverse] = ACTIONS(3221), + }, + [761] = { + [ts_builtin_sym_end] = ACTIONS(3389), + [sym_identifier] = ACTIONS(3391), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3389), + [anon_sym_RPAREN] = ACTIONS(3389), + [anon_sym_COMMA] = ACTIONS(3389), + [sym_integer] = ACTIONS(3391), + [sym_float] = ACTIONS(3389), + [sym_string] = ACTIONS(3389), + [anon_sym_true] = ACTIONS(3391), + [anon_sym_false] = ACTIONS(3391), + [anon_sym_LBRACK] = ACTIONS(3389), + [anon_sym_RBRACK] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3391), + [anon_sym_STAR] = ACTIONS(3389), + [anon_sym_SLASH] = ACTIONS(3389), + [anon_sym_PERCENT] = ACTIONS(3389), + [anon_sym_EQ_EQ] = ACTIONS(3389), + [anon_sym_BANG_EQ] = ACTIONS(3389), + [anon_sym_AMP_AMP] = ACTIONS(3389), + [anon_sym_PIPE_PIPE] = ACTIONS(3389), + [anon_sym_GT] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3391), + [anon_sym_GT_EQ] = ACTIONS(3389), + [anon_sym_LT_EQ] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_elseif] = ACTIONS(3389), + [anon_sym_else] = ACTIONS(3391), + [anon_sym_match] = ACTIONS(3391), + [anon_sym_EQ_GT] = ACTIONS(3389), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_asyncfor] = ACTIONS(3389), + [anon_sym_transform] = ACTIONS(3391), + [anon_sym_filter] = ACTIONS(3391), + [anon_sym_find] = ACTIONS(3391), + [anon_sym_remove] = ACTIONS(3391), + [anon_sym_reduce] = ACTIONS(3391), + [anon_sym_select] = ACTIONS(3391), + [anon_sym_insert] = ACTIONS(3391), + [anon_sym_async] = ACTIONS(3391), + [anon_sym_PIPE] = ACTIONS(3391), + [anon_sym_table] = ACTIONS(3391), + [anon_sym_assert] = ACTIONS(3391), + [anon_sym_assert_equal] = ACTIONS(3391), + [anon_sym_download] = ACTIONS(3391), + [anon_sym_help] = ACTIONS(3391), + [anon_sym_length] = ACTIONS(3391), + [anon_sym_output] = ACTIONS(3391), + [anon_sym_output_error] = ACTIONS(3391), + [anon_sym_type] = ACTIONS(3391), + [anon_sym_append] = ACTIONS(3391), + [anon_sym_metadata] = ACTIONS(3391), + [anon_sym_move] = ACTIONS(3391), + [anon_sym_read] = ACTIONS(3391), + [anon_sym_workdir] = ACTIONS(3391), + [anon_sym_write] = ACTIONS(3391), + [anon_sym_from_json] = ACTIONS(3391), + [anon_sym_to_json] = ACTIONS(3391), + [anon_sym_to_string] = ACTIONS(3391), + [anon_sym_to_float] = ACTIONS(3391), + [anon_sym_bash] = ACTIONS(3391), + [anon_sym_fish] = ACTIONS(3391), + [anon_sym_raw] = ACTIONS(3391), + [anon_sym_sh] = ACTIONS(3391), + [anon_sym_zsh] = ACTIONS(3391), + [anon_sym_random] = ACTIONS(3391), + [anon_sym_random_boolean] = ACTIONS(3391), + [anon_sym_random_float] = ACTIONS(3391), + [anon_sym_random_integer] = ACTIONS(3391), + [anon_sym_columns] = ACTIONS(3391), + [anon_sym_rows] = ACTIONS(3391), + [anon_sym_reverse] = ACTIONS(3391), + }, + [762] = { + [ts_builtin_sym_end] = ACTIONS(3397), + [sym_identifier] = ACTIONS(3399), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3397), + [anon_sym_RBRACE] = ACTIONS(3397), + [anon_sym_SEMI] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3397), + [anon_sym_RPAREN] = ACTIONS(3397), + [anon_sym_COMMA] = ACTIONS(3397), + [sym_integer] = ACTIONS(3399), + [sym_float] = ACTIONS(3397), + [sym_string] = ACTIONS(3397), + [anon_sym_true] = ACTIONS(3399), + [anon_sym_false] = ACTIONS(3399), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_RBRACK] = ACTIONS(3397), + [anon_sym_COLON] = ACTIONS(3397), + [anon_sym_DOT_DOT] = ACTIONS(3397), + [anon_sym_PLUS] = ACTIONS(3397), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_STAR] = ACTIONS(3397), + [anon_sym_SLASH] = ACTIONS(3397), + [anon_sym_PERCENT] = ACTIONS(3397), + [anon_sym_EQ_EQ] = ACTIONS(3397), + [anon_sym_BANG_EQ] = ACTIONS(3397), + [anon_sym_AMP_AMP] = ACTIONS(3397), + [anon_sym_PIPE_PIPE] = ACTIONS(3397), + [anon_sym_GT] = ACTIONS(3399), + [anon_sym_LT] = ACTIONS(3399), + [anon_sym_GT_EQ] = ACTIONS(3397), + [anon_sym_LT_EQ] = ACTIONS(3397), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_elseif] = ACTIONS(3397), + [anon_sym_else] = ACTIONS(3399), + [anon_sym_match] = ACTIONS(3399), + [anon_sym_EQ_GT] = ACTIONS(3397), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_asyncfor] = ACTIONS(3397), + [anon_sym_transform] = ACTIONS(3399), + [anon_sym_filter] = ACTIONS(3399), + [anon_sym_find] = ACTIONS(3399), + [anon_sym_remove] = ACTIONS(3399), + [anon_sym_reduce] = ACTIONS(3399), + [anon_sym_select] = ACTIONS(3399), + [anon_sym_insert] = ACTIONS(3399), + [anon_sym_async] = ACTIONS(3399), + [anon_sym_PIPE] = ACTIONS(3399), + [anon_sym_table] = ACTIONS(3399), + [anon_sym_assert] = ACTIONS(3399), + [anon_sym_assert_equal] = ACTIONS(3399), + [anon_sym_download] = ACTIONS(3399), + [anon_sym_help] = ACTIONS(3399), + [anon_sym_length] = ACTIONS(3399), + [anon_sym_output] = ACTIONS(3399), + [anon_sym_output_error] = ACTIONS(3399), + [anon_sym_type] = ACTIONS(3399), + [anon_sym_append] = ACTIONS(3399), + [anon_sym_metadata] = ACTIONS(3399), + [anon_sym_move] = ACTIONS(3399), + [anon_sym_read] = ACTIONS(3399), + [anon_sym_workdir] = ACTIONS(3399), + [anon_sym_write] = ACTIONS(3399), + [anon_sym_from_json] = ACTIONS(3399), + [anon_sym_to_json] = ACTIONS(3399), + [anon_sym_to_string] = ACTIONS(3399), + [anon_sym_to_float] = ACTIONS(3399), + [anon_sym_bash] = ACTIONS(3399), + [anon_sym_fish] = ACTIONS(3399), + [anon_sym_raw] = ACTIONS(3399), + [anon_sym_sh] = ACTIONS(3399), + [anon_sym_zsh] = ACTIONS(3399), + [anon_sym_random] = ACTIONS(3399), + [anon_sym_random_boolean] = ACTIONS(3399), + [anon_sym_random_float] = ACTIONS(3399), + [anon_sym_random_integer] = ACTIONS(3399), + [anon_sym_columns] = ACTIONS(3399), + [anon_sym_rows] = ACTIONS(3399), + [anon_sym_reverse] = ACTIONS(3399), + }, + [763] = { + [ts_builtin_sym_end] = ACTIONS(3383), + [sym_identifier] = ACTIONS(3385), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_RBRACE] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3383), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_RPAREN] = ACTIONS(3383), + [anon_sym_COMMA] = ACTIONS(3383), + [sym_integer] = ACTIONS(3385), + [sym_float] = ACTIONS(3383), + [sym_string] = ACTIONS(3383), + [anon_sym_true] = ACTIONS(3385), + [anon_sym_false] = ACTIONS(3385), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_RBRACK] = ACTIONS(3383), + [anon_sym_COLON] = ACTIONS(3383), + [anon_sym_DOT_DOT] = ACTIONS(3383), + [anon_sym_PLUS] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3383), + [anon_sym_SLASH] = ACTIONS(3383), + [anon_sym_PERCENT] = ACTIONS(3383), + [anon_sym_EQ_EQ] = ACTIONS(3383), + [anon_sym_BANG_EQ] = ACTIONS(3383), + [anon_sym_AMP_AMP] = ACTIONS(3383), + [anon_sym_PIPE_PIPE] = ACTIONS(3383), + [anon_sym_GT] = ACTIONS(3385), + [anon_sym_LT] = ACTIONS(3385), + [anon_sym_GT_EQ] = ACTIONS(3383), + [anon_sym_LT_EQ] = ACTIONS(3383), + [anon_sym_if] = ACTIONS(3385), + [anon_sym_elseif] = ACTIONS(3383), + [anon_sym_else] = ACTIONS(3385), + [anon_sym_match] = ACTIONS(3385), + [anon_sym_EQ_GT] = ACTIONS(3383), + [anon_sym_while] = ACTIONS(3385), + [anon_sym_for] = ACTIONS(3385), + [anon_sym_asyncfor] = ACTIONS(3383), + [anon_sym_transform] = ACTIONS(3385), + [anon_sym_filter] = ACTIONS(3385), + [anon_sym_find] = ACTIONS(3385), + [anon_sym_remove] = ACTIONS(3385), + [anon_sym_reduce] = ACTIONS(3385), + [anon_sym_select] = ACTIONS(3385), + [anon_sym_insert] = ACTIONS(3385), + [anon_sym_async] = ACTIONS(3385), + [anon_sym_PIPE] = ACTIONS(3385), + [anon_sym_table] = ACTIONS(3385), + [anon_sym_assert] = ACTIONS(3385), + [anon_sym_assert_equal] = ACTIONS(3385), + [anon_sym_download] = ACTIONS(3385), + [anon_sym_help] = ACTIONS(3385), + [anon_sym_length] = ACTIONS(3385), + [anon_sym_output] = ACTIONS(3385), + [anon_sym_output_error] = ACTIONS(3385), + [anon_sym_type] = ACTIONS(3385), + [anon_sym_append] = ACTIONS(3385), + [anon_sym_metadata] = ACTIONS(3385), + [anon_sym_move] = ACTIONS(3385), + [anon_sym_read] = ACTIONS(3385), + [anon_sym_workdir] = ACTIONS(3385), + [anon_sym_write] = ACTIONS(3385), + [anon_sym_from_json] = ACTIONS(3385), + [anon_sym_to_json] = ACTIONS(3385), + [anon_sym_to_string] = ACTIONS(3385), + [anon_sym_to_float] = ACTIONS(3385), + [anon_sym_bash] = ACTIONS(3385), + [anon_sym_fish] = ACTIONS(3385), + [anon_sym_raw] = ACTIONS(3385), + [anon_sym_sh] = ACTIONS(3385), + [anon_sym_zsh] = ACTIONS(3385), + [anon_sym_random] = ACTIONS(3385), + [anon_sym_random_boolean] = ACTIONS(3385), + [anon_sym_random_float] = ACTIONS(3385), + [anon_sym_random_integer] = ACTIONS(3385), + [anon_sym_columns] = ACTIONS(3385), + [anon_sym_rows] = ACTIONS(3385), + [anon_sym_reverse] = ACTIONS(3385), + }, + [764] = { + [ts_builtin_sym_end] = ACTIONS(3375), + [sym_identifier] = ACTIONS(3377), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_RPAREN] = ACTIONS(3375), + [anon_sym_COMMA] = ACTIONS(3375), + [sym_integer] = ACTIONS(3377), + [sym_float] = ACTIONS(3375), + [sym_string] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_RBRACK] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_DOT_DOT] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_STAR] = ACTIONS(3375), + [anon_sym_SLASH] = ACTIONS(3375), + [anon_sym_PERCENT] = ACTIONS(3375), + [anon_sym_EQ_EQ] = ACTIONS(3375), + [anon_sym_BANG_EQ] = ACTIONS(3375), + [anon_sym_AMP_AMP] = ACTIONS(3375), + [anon_sym_PIPE_PIPE] = ACTIONS(3375), + [anon_sym_GT] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_GT_EQ] = ACTIONS(3375), + [anon_sym_LT_EQ] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3377), + [anon_sym_elseif] = ACTIONS(3375), + [anon_sym_else] = ACTIONS(3377), + [anon_sym_match] = ACTIONS(3377), + [anon_sym_EQ_GT] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3377), + [anon_sym_for] = ACTIONS(3377), + [anon_sym_asyncfor] = ACTIONS(3375), + [anon_sym_transform] = ACTIONS(3377), + [anon_sym_filter] = ACTIONS(3377), + [anon_sym_find] = ACTIONS(3377), + [anon_sym_remove] = ACTIONS(3377), + [anon_sym_reduce] = ACTIONS(3377), + [anon_sym_select] = ACTIONS(3377), + [anon_sym_insert] = ACTIONS(3377), + [anon_sym_async] = ACTIONS(3377), + [anon_sym_PIPE] = ACTIONS(3377), + [anon_sym_table] = ACTIONS(3377), + [anon_sym_assert] = ACTIONS(3377), + [anon_sym_assert_equal] = ACTIONS(3377), + [anon_sym_download] = ACTIONS(3377), + [anon_sym_help] = ACTIONS(3377), + [anon_sym_length] = ACTIONS(3377), + [anon_sym_output] = ACTIONS(3377), + [anon_sym_output_error] = ACTIONS(3377), + [anon_sym_type] = ACTIONS(3377), + [anon_sym_append] = ACTIONS(3377), + [anon_sym_metadata] = ACTIONS(3377), + [anon_sym_move] = ACTIONS(3377), + [anon_sym_read] = ACTIONS(3377), + [anon_sym_workdir] = ACTIONS(3377), + [anon_sym_write] = ACTIONS(3377), + [anon_sym_from_json] = ACTIONS(3377), + [anon_sym_to_json] = ACTIONS(3377), + [anon_sym_to_string] = ACTIONS(3377), + [anon_sym_to_float] = ACTIONS(3377), + [anon_sym_bash] = ACTIONS(3377), + [anon_sym_fish] = ACTIONS(3377), + [anon_sym_raw] = ACTIONS(3377), + [anon_sym_sh] = ACTIONS(3377), + [anon_sym_zsh] = ACTIONS(3377), + [anon_sym_random] = ACTIONS(3377), + [anon_sym_random_boolean] = ACTIONS(3377), + [anon_sym_random_float] = ACTIONS(3377), + [anon_sym_random_integer] = ACTIONS(3377), + [anon_sym_columns] = ACTIONS(3377), + [anon_sym_rows] = ACTIONS(3377), + [anon_sym_reverse] = ACTIONS(3377), + }, + [765] = { + [ts_builtin_sym_end] = ACTIONS(3371), + [sym_identifier] = ACTIONS(3373), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3371), + [anon_sym_RBRACE] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3371), + [anon_sym_RPAREN] = ACTIONS(3371), + [anon_sym_COMMA] = ACTIONS(3371), + [sym_integer] = ACTIONS(3373), + [sym_float] = ACTIONS(3371), + [sym_string] = ACTIONS(3371), + [anon_sym_true] = ACTIONS(3373), + [anon_sym_false] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3371), + [anon_sym_RBRACK] = ACTIONS(3371), + [anon_sym_COLON] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3373), + [anon_sym_STAR] = ACTIONS(3371), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_PERCENT] = ACTIONS(3371), + [anon_sym_EQ_EQ] = ACTIONS(3371), + [anon_sym_BANG_EQ] = ACTIONS(3371), + [anon_sym_AMP_AMP] = ACTIONS(3371), + [anon_sym_PIPE_PIPE] = ACTIONS(3371), + [anon_sym_GT] = ACTIONS(3373), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_GT_EQ] = ACTIONS(3371), + [anon_sym_LT_EQ] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3373), + [anon_sym_elseif] = ACTIONS(3371), + [anon_sym_else] = ACTIONS(3373), + [anon_sym_match] = ACTIONS(3373), + [anon_sym_EQ_GT] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3373), + [anon_sym_for] = ACTIONS(3373), + [anon_sym_asyncfor] = ACTIONS(3371), + [anon_sym_transform] = ACTIONS(3373), + [anon_sym_filter] = ACTIONS(3373), + [anon_sym_find] = ACTIONS(3373), + [anon_sym_remove] = ACTIONS(3373), + [anon_sym_reduce] = ACTIONS(3373), + [anon_sym_select] = ACTIONS(3373), + [anon_sym_insert] = ACTIONS(3373), + [anon_sym_async] = ACTIONS(3373), + [anon_sym_PIPE] = ACTIONS(3373), + [anon_sym_table] = ACTIONS(3373), + [anon_sym_assert] = ACTIONS(3373), + [anon_sym_assert_equal] = ACTIONS(3373), + [anon_sym_download] = ACTIONS(3373), + [anon_sym_help] = ACTIONS(3373), + [anon_sym_length] = ACTIONS(3373), + [anon_sym_output] = ACTIONS(3373), + [anon_sym_output_error] = ACTIONS(3373), + [anon_sym_type] = ACTIONS(3373), + [anon_sym_append] = ACTIONS(3373), + [anon_sym_metadata] = ACTIONS(3373), + [anon_sym_move] = ACTIONS(3373), + [anon_sym_read] = ACTIONS(3373), + [anon_sym_workdir] = ACTIONS(3373), + [anon_sym_write] = ACTIONS(3373), + [anon_sym_from_json] = ACTIONS(3373), + [anon_sym_to_json] = ACTIONS(3373), + [anon_sym_to_string] = ACTIONS(3373), + [anon_sym_to_float] = ACTIONS(3373), + [anon_sym_bash] = ACTIONS(3373), + [anon_sym_fish] = ACTIONS(3373), + [anon_sym_raw] = ACTIONS(3373), + [anon_sym_sh] = ACTIONS(3373), + [anon_sym_zsh] = ACTIONS(3373), + [anon_sym_random] = ACTIONS(3373), + [anon_sym_random_boolean] = ACTIONS(3373), + [anon_sym_random_float] = ACTIONS(3373), + [anon_sym_random_integer] = ACTIONS(3373), + [anon_sym_columns] = ACTIONS(3373), + [anon_sym_rows] = ACTIONS(3373), + [anon_sym_reverse] = ACTIONS(3373), + }, + [766] = { + [ts_builtin_sym_end] = ACTIONS(3359), + [sym_identifier] = ACTIONS(3361), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3359), + [anon_sym_RBRACE] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3359), + [anon_sym_RPAREN] = ACTIONS(3359), + [anon_sym_COMMA] = ACTIONS(3359), + [sym_integer] = ACTIONS(3361), + [sym_float] = ACTIONS(3359), + [sym_string] = ACTIONS(3359), + [anon_sym_true] = ACTIONS(3361), + [anon_sym_false] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3359), + [anon_sym_RBRACK] = ACTIONS(3359), + [anon_sym_COLON] = ACTIONS(3359), + [anon_sym_DOT_DOT] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_STAR] = ACTIONS(3359), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_PERCENT] = ACTIONS(3359), + [anon_sym_EQ_EQ] = ACTIONS(3359), + [anon_sym_BANG_EQ] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [anon_sym_GT] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_GT_EQ] = ACTIONS(3359), + [anon_sym_LT_EQ] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_elseif] = ACTIONS(3359), + [anon_sym_else] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_EQ_GT] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_asyncfor] = ACTIONS(3359), + [anon_sym_transform] = ACTIONS(3361), + [anon_sym_filter] = ACTIONS(3361), + [anon_sym_find] = ACTIONS(3361), + [anon_sym_remove] = ACTIONS(3361), + [anon_sym_reduce] = ACTIONS(3361), + [anon_sym_select] = ACTIONS(3361), + [anon_sym_insert] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_PIPE] = ACTIONS(3361), + [anon_sym_table] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_assert_equal] = ACTIONS(3361), + [anon_sym_download] = ACTIONS(3361), + [anon_sym_help] = ACTIONS(3361), + [anon_sym_length] = ACTIONS(3361), + [anon_sym_output] = ACTIONS(3361), + [anon_sym_output_error] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_append] = ACTIONS(3361), + [anon_sym_metadata] = ACTIONS(3361), + [anon_sym_move] = ACTIONS(3361), + [anon_sym_read] = ACTIONS(3361), + [anon_sym_workdir] = ACTIONS(3361), + [anon_sym_write] = ACTIONS(3361), + [anon_sym_from_json] = ACTIONS(3361), + [anon_sym_to_json] = ACTIONS(3361), + [anon_sym_to_string] = ACTIONS(3361), + [anon_sym_to_float] = ACTIONS(3361), + [anon_sym_bash] = ACTIONS(3361), + [anon_sym_fish] = ACTIONS(3361), + [anon_sym_raw] = ACTIONS(3361), + [anon_sym_sh] = ACTIONS(3361), + [anon_sym_zsh] = ACTIONS(3361), + [anon_sym_random] = ACTIONS(3361), + [anon_sym_random_boolean] = ACTIONS(3361), + [anon_sym_random_float] = ACTIONS(3361), + [anon_sym_random_integer] = ACTIONS(3361), + [anon_sym_columns] = ACTIONS(3361), + [anon_sym_rows] = ACTIONS(3361), + [anon_sym_reverse] = ACTIONS(3361), + }, + [767] = { + [ts_builtin_sym_end] = ACTIONS(3423), + [sym_identifier] = ACTIONS(3425), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_RBRACE] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_RPAREN] = ACTIONS(3423), + [anon_sym_COMMA] = ACTIONS(3423), + [sym_integer] = ACTIONS(3425), + [sym_float] = ACTIONS(3423), + [sym_string] = ACTIONS(3423), + [anon_sym_true] = ACTIONS(3425), + [anon_sym_false] = ACTIONS(3425), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_RBRACK] = ACTIONS(3423), + [anon_sym_COLON] = ACTIONS(3423), + [anon_sym_DOT_DOT] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_STAR] = ACTIONS(3423), + [anon_sym_SLASH] = ACTIONS(3423), + [anon_sym_PERCENT] = ACTIONS(3423), + [anon_sym_EQ_EQ] = ACTIONS(3423), + [anon_sym_BANG_EQ] = ACTIONS(3423), + [anon_sym_AMP_AMP] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_GT] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_GT_EQ] = ACTIONS(3423), + [anon_sym_LT_EQ] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_elseif] = ACTIONS(3423), + [anon_sym_else] = ACTIONS(3425), + [anon_sym_match] = ACTIONS(3425), + [anon_sym_EQ_GT] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_asyncfor] = ACTIONS(3423), + [anon_sym_transform] = ACTIONS(3425), + [anon_sym_filter] = ACTIONS(3425), + [anon_sym_find] = ACTIONS(3425), + [anon_sym_remove] = ACTIONS(3425), + [anon_sym_reduce] = ACTIONS(3425), + [anon_sym_select] = ACTIONS(3425), + [anon_sym_insert] = ACTIONS(3425), + [anon_sym_async] = ACTIONS(3425), + [anon_sym_PIPE] = ACTIONS(3425), + [anon_sym_table] = ACTIONS(3425), + [anon_sym_assert] = ACTIONS(3425), + [anon_sym_assert_equal] = ACTIONS(3425), + [anon_sym_download] = ACTIONS(3425), + [anon_sym_help] = ACTIONS(3425), + [anon_sym_length] = ACTIONS(3425), + [anon_sym_output] = ACTIONS(3425), + [anon_sym_output_error] = ACTIONS(3425), + [anon_sym_type] = ACTIONS(3425), + [anon_sym_append] = ACTIONS(3425), + [anon_sym_metadata] = ACTIONS(3425), + [anon_sym_move] = ACTIONS(3425), + [anon_sym_read] = ACTIONS(3425), + [anon_sym_workdir] = ACTIONS(3425), + [anon_sym_write] = ACTIONS(3425), + [anon_sym_from_json] = ACTIONS(3425), + [anon_sym_to_json] = ACTIONS(3425), + [anon_sym_to_string] = ACTIONS(3425), + [anon_sym_to_float] = ACTIONS(3425), + [anon_sym_bash] = ACTIONS(3425), + [anon_sym_fish] = ACTIONS(3425), + [anon_sym_raw] = ACTIONS(3425), + [anon_sym_sh] = ACTIONS(3425), + [anon_sym_zsh] = ACTIONS(3425), + [anon_sym_random] = ACTIONS(3425), + [anon_sym_random_boolean] = ACTIONS(3425), + [anon_sym_random_float] = ACTIONS(3425), + [anon_sym_random_integer] = ACTIONS(3425), + [anon_sym_columns] = ACTIONS(3425), + [anon_sym_rows] = ACTIONS(3425), + [anon_sym_reverse] = ACTIONS(3425), + }, + [768] = { + [sym_math_operator] = STATE(1270), + [sym_logic_operator] = STATE(1260), + [ts_builtin_sym_end] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3264), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [sym_integer] = ACTIONS(3264), + [sym_float] = ACTIONS(3262), + [sym_string] = ACTIONS(3262), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_PLUS_EQ] = ACTIONS(3262), + [anon_sym_DASH_EQ] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_match] = ACTIONS(3264), + [anon_sym_EQ_GT] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_asyncfor] = ACTIONS(3262), + [anon_sym_transform] = ACTIONS(3264), + [anon_sym_filter] = ACTIONS(3264), + [anon_sym_find] = ACTIONS(3264), + [anon_sym_remove] = ACTIONS(3264), + [anon_sym_reduce] = ACTIONS(3264), + [anon_sym_select] = ACTIONS(3264), + [anon_sym_insert] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_table] = ACTIONS(3264), + [anon_sym_assert] = ACTIONS(3264), + [anon_sym_assert_equal] = ACTIONS(3264), + [anon_sym_download] = ACTIONS(3264), + [anon_sym_help] = ACTIONS(3264), + [anon_sym_length] = ACTIONS(3264), + [anon_sym_output] = ACTIONS(3264), + [anon_sym_output_error] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_append] = ACTIONS(3264), + [anon_sym_metadata] = ACTIONS(3264), + [anon_sym_move] = ACTIONS(3264), + [anon_sym_read] = ACTIONS(3264), + [anon_sym_workdir] = ACTIONS(3264), + [anon_sym_write] = ACTIONS(3264), + [anon_sym_from_json] = ACTIONS(3264), + [anon_sym_to_json] = ACTIONS(3264), + [anon_sym_to_string] = ACTIONS(3264), + [anon_sym_to_float] = ACTIONS(3264), + [anon_sym_bash] = ACTIONS(3264), + [anon_sym_fish] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3264), + [anon_sym_sh] = ACTIONS(3264), + [anon_sym_zsh] = ACTIONS(3264), + [anon_sym_random] = ACTIONS(3264), + [anon_sym_random_boolean] = ACTIONS(3264), + [anon_sym_random_float] = ACTIONS(3264), + [anon_sym_random_integer] = ACTIONS(3264), + [anon_sym_columns] = ACTIONS(3264), + [anon_sym_rows] = ACTIONS(3264), + [anon_sym_reverse] = ACTIONS(3264), + }, + [769] = { + [sym_expression] = STATE(975), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(769), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(3542), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3545), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(3548), + [anon_sym_RPAREN] = ACTIONS(2518), + [anon_sym_COMMA] = ACTIONS(2518), + [sym_integer] = ACTIONS(3551), + [sym_float] = ACTIONS(3554), + [sym_string] = ACTIONS(3554), + [anon_sym_true] = ACTIONS(3557), + [anon_sym_false] = ACTIONS(3557), + [anon_sym_LBRACK] = ACTIONS(3560), + [anon_sym_RBRACK] = ACTIONS(2518), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_EQ_GT] = ACTIONS(3600), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(3603), + [anon_sym_assert] = ACTIONS(3606), + [anon_sym_assert_equal] = ACTIONS(3606), + [anon_sym_download] = ACTIONS(3606), + [anon_sym_help] = ACTIONS(3606), + [anon_sym_length] = ACTIONS(3606), + [anon_sym_output] = ACTIONS(3606), + [anon_sym_output_error] = ACTIONS(3606), + [anon_sym_type] = ACTIONS(3606), + [anon_sym_append] = ACTIONS(3606), + [anon_sym_metadata] = ACTIONS(3606), + [anon_sym_move] = ACTIONS(3606), + [anon_sym_read] = ACTIONS(3606), + [anon_sym_workdir] = ACTIONS(3606), + [anon_sym_write] = ACTIONS(3606), + [anon_sym_from_json] = ACTIONS(3606), + [anon_sym_to_json] = ACTIONS(3606), + [anon_sym_to_string] = ACTIONS(3606), + [anon_sym_to_float] = ACTIONS(3606), + [anon_sym_bash] = ACTIONS(3606), + [anon_sym_fish] = ACTIONS(3606), + [anon_sym_raw] = ACTIONS(3606), + [anon_sym_sh] = ACTIONS(3606), + [anon_sym_zsh] = ACTIONS(3606), + [anon_sym_random] = ACTIONS(3606), + [anon_sym_random_boolean] = ACTIONS(3606), + [anon_sym_random_float] = ACTIONS(3606), + [anon_sym_random_integer] = ACTIONS(3606), + [anon_sym_columns] = ACTIONS(3606), + [anon_sym_rows] = ACTIONS(3606), + [anon_sym_reverse] = ACTIONS(3606), + }, + [770] = { + [ts_builtin_sym_end] = ACTIONS(3351), + [sym_identifier] = ACTIONS(3353), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_RBRACE] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_RPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3351), + [sym_integer] = ACTIONS(3353), + [sym_float] = ACTIONS(3351), + [sym_string] = ACTIONS(3351), + [anon_sym_true] = ACTIONS(3353), + [anon_sym_false] = ACTIONS(3353), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_RBRACK] = ACTIONS(3351), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_DOT_DOT] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_SLASH] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_EQ_EQ] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_GT] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_GT_EQ] = ACTIONS(3351), + [anon_sym_LT_EQ] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3353), + [anon_sym_elseif] = ACTIONS(3351), + [anon_sym_else] = ACTIONS(3353), + [anon_sym_match] = ACTIONS(3353), + [anon_sym_EQ_GT] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3353), + [anon_sym_asyncfor] = ACTIONS(3351), + [anon_sym_transform] = ACTIONS(3353), + [anon_sym_filter] = ACTIONS(3353), + [anon_sym_find] = ACTIONS(3353), + [anon_sym_remove] = ACTIONS(3353), + [anon_sym_reduce] = ACTIONS(3353), + [anon_sym_select] = ACTIONS(3353), + [anon_sym_insert] = ACTIONS(3353), + [anon_sym_async] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(3353), + [anon_sym_table] = ACTIONS(3353), + [anon_sym_assert] = ACTIONS(3353), + [anon_sym_assert_equal] = ACTIONS(3353), + [anon_sym_download] = ACTIONS(3353), + [anon_sym_help] = ACTIONS(3353), + [anon_sym_length] = ACTIONS(3353), + [anon_sym_output] = ACTIONS(3353), + [anon_sym_output_error] = ACTIONS(3353), + [anon_sym_type] = ACTIONS(3353), + [anon_sym_append] = ACTIONS(3353), + [anon_sym_metadata] = ACTIONS(3353), + [anon_sym_move] = ACTIONS(3353), + [anon_sym_read] = ACTIONS(3353), + [anon_sym_workdir] = ACTIONS(3353), + [anon_sym_write] = ACTIONS(3353), + [anon_sym_from_json] = ACTIONS(3353), + [anon_sym_to_json] = ACTIONS(3353), + [anon_sym_to_string] = ACTIONS(3353), + [anon_sym_to_float] = ACTIONS(3353), + [anon_sym_bash] = ACTIONS(3353), + [anon_sym_fish] = ACTIONS(3353), + [anon_sym_raw] = ACTIONS(3353), + [anon_sym_sh] = ACTIONS(3353), + [anon_sym_zsh] = ACTIONS(3353), + [anon_sym_random] = ACTIONS(3353), + [anon_sym_random_boolean] = ACTIONS(3353), + [anon_sym_random_float] = ACTIONS(3353), + [anon_sym_random_integer] = ACTIONS(3353), + [anon_sym_columns] = ACTIONS(3353), + [anon_sym_rows] = ACTIONS(3353), + [anon_sym_reverse] = ACTIONS(3353), + }, + [771] = { + [sym_math_operator] = STATE(1270), + [sym_logic_operator] = STATE(1260), + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3254), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3252), + [sym_integer] = ACTIONS(3254), + [sym_float] = ACTIONS(3252), + [sym_string] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_EQ] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_PLUS_EQ] = ACTIONS(3252), + [anon_sym_DASH_EQ] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_match] = ACTIONS(3254), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_asyncfor] = ACTIONS(3252), + [anon_sym_transform] = ACTIONS(3254), + [anon_sym_filter] = ACTIONS(3254), + [anon_sym_find] = ACTIONS(3254), + [anon_sym_remove] = ACTIONS(3254), + [anon_sym_reduce] = ACTIONS(3254), + [anon_sym_select] = ACTIONS(3254), + [anon_sym_insert] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_table] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_assert_equal] = ACTIONS(3254), + [anon_sym_download] = ACTIONS(3254), + [anon_sym_help] = ACTIONS(3254), + [anon_sym_length] = ACTIONS(3254), + [anon_sym_output] = ACTIONS(3254), + [anon_sym_output_error] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_append] = ACTIONS(3254), + [anon_sym_metadata] = ACTIONS(3254), + [anon_sym_move] = ACTIONS(3254), + [anon_sym_read] = ACTIONS(3254), + [anon_sym_workdir] = ACTIONS(3254), + [anon_sym_write] = ACTIONS(3254), + [anon_sym_from_json] = ACTIONS(3254), + [anon_sym_to_json] = ACTIONS(3254), + [anon_sym_to_string] = ACTIONS(3254), + [anon_sym_to_float] = ACTIONS(3254), + [anon_sym_bash] = ACTIONS(3254), + [anon_sym_fish] = ACTIONS(3254), + [anon_sym_raw] = ACTIONS(3254), + [anon_sym_sh] = ACTIONS(3254), + [anon_sym_zsh] = ACTIONS(3254), + [anon_sym_random] = ACTIONS(3254), + [anon_sym_random_boolean] = ACTIONS(3254), + [anon_sym_random_float] = ACTIONS(3254), + [anon_sym_random_integer] = ACTIONS(3254), + [anon_sym_columns] = ACTIONS(3254), + [anon_sym_rows] = ACTIONS(3254), + [anon_sym_reverse] = ACTIONS(3254), + }, + [772] = { + [sym_expression] = STATE(975), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(769), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(3576), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2443), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_RBRACK] = ACTIONS(2443), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [773] = { + [sym_expression] = STATE(975), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(769), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(3576), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_RPAREN] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(2477), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_RBRACK] = ACTIONS(2477), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [774] = { + [sym_math_operator] = STATE(1305), + [sym_logic_operator] = STATE(1306), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_RPAREN] = ACTIONS(3244), + [anon_sym_COMMA] = ACTIONS(3244), + [sym_integer] = ACTIONS(3246), + [sym_float] = ACTIONS(3244), + [sym_string] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_RBRACK] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(879), + [anon_sym_DOT_DOT] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_asyncfor] = ACTIONS(3244), + [anon_sym_transform] = ACTIONS(3246), + [anon_sym_filter] = ACTIONS(3246), + [anon_sym_find] = ACTIONS(3246), + [anon_sym_remove] = ACTIONS(3246), + [anon_sym_reduce] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_insert] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_table] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_assert_equal] = ACTIONS(3246), + [anon_sym_download] = ACTIONS(3246), + [anon_sym_help] = ACTIONS(3246), + [anon_sym_length] = ACTIONS(3246), + [anon_sym_output] = ACTIONS(3246), + [anon_sym_output_error] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_append] = ACTIONS(3246), + [anon_sym_metadata] = ACTIONS(3246), + [anon_sym_move] = ACTIONS(3246), + [anon_sym_read] = ACTIONS(3246), + [anon_sym_workdir] = ACTIONS(3246), + [anon_sym_write] = ACTIONS(3246), + [anon_sym_from_json] = ACTIONS(3246), + [anon_sym_to_json] = ACTIONS(3246), + [anon_sym_to_string] = ACTIONS(3246), + [anon_sym_to_float] = ACTIONS(3246), + [anon_sym_bash] = ACTIONS(3246), + [anon_sym_fish] = ACTIONS(3246), + [anon_sym_raw] = ACTIONS(3246), + [anon_sym_sh] = ACTIONS(3246), + [anon_sym_zsh] = ACTIONS(3246), + [anon_sym_random] = ACTIONS(3246), + [anon_sym_random_boolean] = ACTIONS(3246), + [anon_sym_random_float] = ACTIONS(3246), + [anon_sym_random_integer] = ACTIONS(3246), + [anon_sym_columns] = ACTIONS(3246), + [anon_sym_rows] = ACTIONS(3246), + [anon_sym_reverse] = ACTIONS(3246), + }, + [775] = { + [sym_math_operator] = STATE(1305), + [sym_logic_operator] = STATE(1306), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3242), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [sym_integer] = ACTIONS(3242), + [sym_float] = ACTIONS(3240), + [sym_string] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(879), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_asyncfor] = ACTIONS(3240), + [anon_sym_transform] = ACTIONS(3242), + [anon_sym_filter] = ACTIONS(3242), + [anon_sym_find] = ACTIONS(3242), + [anon_sym_remove] = ACTIONS(3242), + [anon_sym_reduce] = ACTIONS(3242), + [anon_sym_select] = ACTIONS(3242), + [anon_sym_insert] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_table] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_assert_equal] = ACTIONS(3242), + [anon_sym_download] = ACTIONS(3242), + [anon_sym_help] = ACTIONS(3242), + [anon_sym_length] = ACTIONS(3242), + [anon_sym_output] = ACTIONS(3242), + [anon_sym_output_error] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_append] = ACTIONS(3242), + [anon_sym_metadata] = ACTIONS(3242), + [anon_sym_move] = ACTIONS(3242), + [anon_sym_read] = ACTIONS(3242), + [anon_sym_workdir] = ACTIONS(3242), + [anon_sym_write] = ACTIONS(3242), + [anon_sym_from_json] = ACTIONS(3242), + [anon_sym_to_json] = ACTIONS(3242), + [anon_sym_to_string] = ACTIONS(3242), + [anon_sym_to_float] = ACTIONS(3242), + [anon_sym_bash] = ACTIONS(3242), + [anon_sym_fish] = ACTIONS(3242), + [anon_sym_raw] = ACTIONS(3242), + [anon_sym_sh] = ACTIONS(3242), + [anon_sym_zsh] = ACTIONS(3242), + [anon_sym_random] = ACTIONS(3242), + [anon_sym_random_boolean] = ACTIONS(3242), + [anon_sym_random_float] = ACTIONS(3242), + [anon_sym_random_integer] = ACTIONS(3242), + [anon_sym_columns] = ACTIONS(3242), + [anon_sym_rows] = ACTIONS(3242), + [anon_sym_reverse] = ACTIONS(3242), + }, + [776] = { + [sym_assignment_operator] = STATE(535), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_DOT_DOT] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), + }, + [777] = { + [ts_builtin_sym_end] = ACTIONS(3333), + [sym_identifier] = ACTIONS(3335), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_RPAREN] = ACTIONS(3333), + [anon_sym_COMMA] = ACTIONS(3333), + [sym_integer] = ACTIONS(3335), + [sym_float] = ACTIONS(3333), + [sym_string] = ACTIONS(3333), + [anon_sym_true] = ACTIONS(3335), + [anon_sym_false] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_RBRACK] = ACTIONS(3333), + [anon_sym_COLON] = ACTIONS(3333), + [anon_sym_DOT_DOT] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3335), + [anon_sym_STAR] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3333), + [anon_sym_PERCENT] = ACTIONS(3333), + [anon_sym_EQ_EQ] = ACTIONS(3333), + [anon_sym_BANG_EQ] = ACTIONS(3333), + [anon_sym_AMP_AMP] = ACTIONS(3333), + [anon_sym_PIPE_PIPE] = ACTIONS(3333), + [anon_sym_GT] = ACTIONS(3335), + [anon_sym_LT] = ACTIONS(3335), + [anon_sym_GT_EQ] = ACTIONS(3333), + [anon_sym_LT_EQ] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_elseif] = ACTIONS(3333), + [anon_sym_else] = ACTIONS(3335), + [anon_sym_match] = ACTIONS(3335), + [anon_sym_EQ_GT] = ACTIONS(3333), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_asyncfor] = ACTIONS(3333), + [anon_sym_transform] = ACTIONS(3335), + [anon_sym_filter] = ACTIONS(3335), + [anon_sym_find] = ACTIONS(3335), + [anon_sym_remove] = ACTIONS(3335), + [anon_sym_reduce] = ACTIONS(3335), + [anon_sym_select] = ACTIONS(3335), + [anon_sym_insert] = ACTIONS(3335), + [anon_sym_async] = ACTIONS(3335), + [anon_sym_PIPE] = ACTIONS(3335), + [anon_sym_table] = ACTIONS(3335), + [anon_sym_assert] = ACTIONS(3335), + [anon_sym_assert_equal] = ACTIONS(3335), + [anon_sym_download] = ACTIONS(3335), + [anon_sym_help] = ACTIONS(3335), + [anon_sym_length] = ACTIONS(3335), + [anon_sym_output] = ACTIONS(3335), + [anon_sym_output_error] = ACTIONS(3335), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_append] = ACTIONS(3335), + [anon_sym_metadata] = ACTIONS(3335), + [anon_sym_move] = ACTIONS(3335), + [anon_sym_read] = ACTIONS(3335), + [anon_sym_workdir] = ACTIONS(3335), + [anon_sym_write] = ACTIONS(3335), + [anon_sym_from_json] = ACTIONS(3335), + [anon_sym_to_json] = ACTIONS(3335), + [anon_sym_to_string] = ACTIONS(3335), + [anon_sym_to_float] = ACTIONS(3335), + [anon_sym_bash] = ACTIONS(3335), + [anon_sym_fish] = ACTIONS(3335), + [anon_sym_raw] = ACTIONS(3335), + [anon_sym_sh] = ACTIONS(3335), + [anon_sym_zsh] = ACTIONS(3335), + [anon_sym_random] = ACTIONS(3335), + [anon_sym_random_boolean] = ACTIONS(3335), + [anon_sym_random_float] = ACTIONS(3335), + [anon_sym_random_integer] = ACTIONS(3335), + [anon_sym_columns] = ACTIONS(3335), + [anon_sym_rows] = ACTIONS(3335), + [anon_sym_reverse] = ACTIONS(3335), + }, + [778] = { + [sym_else_if] = STATE(778), + [aux_sym_if_else_repeat1] = STATE(778), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_RPAREN] = ACTIONS(3268), + [sym_integer] = ACTIONS(3270), + [sym_float] = ACTIONS(3268), + [sym_string] = ACTIONS(3268), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_DOT_DOT] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_PIPE_PIPE] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT_EQ] = ACTIONS(3268), + [anon_sym_LT_EQ] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_elseif] = ACTIONS(3609), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_match] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_asyncfor] = ACTIONS(3268), + [anon_sym_transform] = ACTIONS(3270), + [anon_sym_filter] = ACTIONS(3270), + [anon_sym_find] = ACTIONS(3270), + [anon_sym_remove] = ACTIONS(3270), + [anon_sym_reduce] = ACTIONS(3270), + [anon_sym_select] = ACTIONS(3270), + [anon_sym_insert] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3270), + [anon_sym_table] = ACTIONS(3270), + [anon_sym_assert] = ACTIONS(3270), + [anon_sym_assert_equal] = ACTIONS(3270), + [anon_sym_download] = ACTIONS(3270), + [anon_sym_help] = ACTIONS(3270), + [anon_sym_length] = ACTIONS(3270), + [anon_sym_output] = ACTIONS(3270), + [anon_sym_output_error] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_append] = ACTIONS(3270), + [anon_sym_metadata] = ACTIONS(3270), + [anon_sym_move] = ACTIONS(3270), + [anon_sym_read] = ACTIONS(3270), + [anon_sym_workdir] = ACTIONS(3270), + [anon_sym_write] = ACTIONS(3270), + [anon_sym_from_json] = ACTIONS(3270), + [anon_sym_to_json] = ACTIONS(3270), + [anon_sym_to_string] = ACTIONS(3270), + [anon_sym_to_float] = ACTIONS(3270), + [anon_sym_bash] = ACTIONS(3270), + [anon_sym_fish] = ACTIONS(3270), + [anon_sym_raw] = ACTIONS(3270), + [anon_sym_sh] = ACTIONS(3270), + [anon_sym_zsh] = ACTIONS(3270), + [anon_sym_random] = ACTIONS(3270), + [anon_sym_random_boolean] = ACTIONS(3270), + [anon_sym_random_float] = ACTIONS(3270), + [anon_sym_random_integer] = ACTIONS(3270), + [anon_sym_columns] = ACTIONS(3270), + [anon_sym_rows] = ACTIONS(3270), + [anon_sym_reverse] = ACTIONS(3270), + }, + [779] = { + [sym_math_operator] = STATE(1242), + [sym_logic_operator] = STATE(1243), + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3521), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_DOT_DOT] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_elseif] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [780] = { + [sym_expression] = STATE(975), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(772), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(3576), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_RPAREN] = ACTIONS(2473), + [anon_sym_COMMA] = ACTIONS(2473), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_RBRACK] = ACTIONS(2473), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [781] = { + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3521), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_RBRACK] = ACTIONS(3275), + [anon_sym_COLON] = ACTIONS(3275), + [anon_sym_DOT_DOT] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_STAR] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_PERCENT] = ACTIONS(3275), + [anon_sym_EQ_EQ] = ACTIONS(3275), + [anon_sym_BANG_EQ] = ACTIONS(3275), + [anon_sym_AMP_AMP] = ACTIONS(3275), + [anon_sym_PIPE_PIPE] = ACTIONS(3275), + [anon_sym_GT] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_GT_EQ] = ACTIONS(3275), + [anon_sym_LT_EQ] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_elseif] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [782] = { + [sym_assignment_operator] = STATE(540), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_elseif] = ACTIONS(2435), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), + }, + [783] = { + [sym_math_operator] = STATE(1322), + [sym_logic_operator] = STATE(1321), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3235), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3540), + [sym_integer] = ACTIONS(3235), + [sym_float] = ACTIONS(3233), + [sym_string] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_elseif] = ACTIONS(3233), + [anon_sym_else] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_asyncfor] = ACTIONS(3233), + [anon_sym_transform] = ACTIONS(3235), + [anon_sym_filter] = ACTIONS(3235), + [anon_sym_find] = ACTIONS(3235), + [anon_sym_remove] = ACTIONS(3235), + [anon_sym_reduce] = ACTIONS(3235), + [anon_sym_select] = ACTIONS(3235), + [anon_sym_insert] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_table] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_assert_equal] = ACTIONS(3235), + [anon_sym_download] = ACTIONS(3235), + [anon_sym_help] = ACTIONS(3235), + [anon_sym_length] = ACTIONS(3235), + [anon_sym_output] = ACTIONS(3235), + [anon_sym_output_error] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_append] = ACTIONS(3235), + [anon_sym_metadata] = ACTIONS(3235), + [anon_sym_move] = ACTIONS(3235), + [anon_sym_read] = ACTIONS(3235), + [anon_sym_workdir] = ACTIONS(3235), + [anon_sym_write] = ACTIONS(3235), + [anon_sym_from_json] = ACTIONS(3235), + [anon_sym_to_json] = ACTIONS(3235), + [anon_sym_to_string] = ACTIONS(3235), + [anon_sym_to_float] = ACTIONS(3235), + [anon_sym_bash] = ACTIONS(3235), + [anon_sym_fish] = ACTIONS(3235), + [anon_sym_raw] = ACTIONS(3235), + [anon_sym_sh] = ACTIONS(3235), + [anon_sym_zsh] = ACTIONS(3235), + [anon_sym_random] = ACTIONS(3235), + [anon_sym_random_boolean] = ACTIONS(3235), + [anon_sym_random_float] = ACTIONS(3235), + [anon_sym_random_integer] = ACTIONS(3235), + [anon_sym_columns] = ACTIONS(3235), + [anon_sym_rows] = ACTIONS(3235), + [anon_sym_reverse] = ACTIONS(3235), + }, + [784] = { + [sym_math_operator] = STATE(1305), + [sym_logic_operator] = STATE(1306), + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3283), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_RPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3281), + [sym_integer] = ACTIONS(3283), + [sym_float] = ACTIONS(3281), + [sym_string] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_RBRACK] = ACTIONS(3281), + [anon_sym_COLON] = ACTIONS(879), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_EQ_GT] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_asyncfor] = ACTIONS(3281), + [anon_sym_transform] = ACTIONS(3283), + [anon_sym_filter] = ACTIONS(3283), + [anon_sym_find] = ACTIONS(3283), + [anon_sym_remove] = ACTIONS(3283), + [anon_sym_reduce] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_insert] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_table] = ACTIONS(3283), + [anon_sym_assert] = ACTIONS(3283), + [anon_sym_assert_equal] = ACTIONS(3283), + [anon_sym_download] = ACTIONS(3283), + [anon_sym_help] = ACTIONS(3283), + [anon_sym_length] = ACTIONS(3283), + [anon_sym_output] = ACTIONS(3283), + [anon_sym_output_error] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_append] = ACTIONS(3283), + [anon_sym_metadata] = ACTIONS(3283), + [anon_sym_move] = ACTIONS(3283), + [anon_sym_read] = ACTIONS(3283), + [anon_sym_workdir] = ACTIONS(3283), + [anon_sym_write] = ACTIONS(3283), + [anon_sym_from_json] = ACTIONS(3283), + [anon_sym_to_json] = ACTIONS(3283), + [anon_sym_to_string] = ACTIONS(3283), + [anon_sym_to_float] = ACTIONS(3283), + [anon_sym_bash] = ACTIONS(3283), + [anon_sym_fish] = ACTIONS(3283), + [anon_sym_raw] = ACTIONS(3283), + [anon_sym_sh] = ACTIONS(3283), + [anon_sym_zsh] = ACTIONS(3283), + [anon_sym_random] = ACTIONS(3283), + [anon_sym_random_boolean] = ACTIONS(3283), + [anon_sym_random_float] = ACTIONS(3283), + [anon_sym_random_integer] = ACTIONS(3283), + [anon_sym_columns] = ACTIONS(3283), + [anon_sym_rows] = ACTIONS(3283), + [anon_sym_reverse] = ACTIONS(3283), + }, + [785] = { + [sym_math_operator] = STATE(1242), + [sym_logic_operator] = STATE(1243), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3248), + [sym_string] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_elseif] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_asyncfor] = ACTIONS(3248), + [anon_sym_transform] = ACTIONS(3250), + [anon_sym_filter] = ACTIONS(3250), + [anon_sym_find] = ACTIONS(3250), + [anon_sym_remove] = ACTIONS(3250), + [anon_sym_reduce] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_insert] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_table] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_assert_equal] = ACTIONS(3250), + [anon_sym_download] = ACTIONS(3250), + [anon_sym_help] = ACTIONS(3250), + [anon_sym_length] = ACTIONS(3250), + [anon_sym_output] = ACTIONS(3250), + [anon_sym_output_error] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_append] = ACTIONS(3250), + [anon_sym_metadata] = ACTIONS(3250), + [anon_sym_move] = ACTIONS(3250), + [anon_sym_read] = ACTIONS(3250), + [anon_sym_workdir] = ACTIONS(3250), + [anon_sym_write] = ACTIONS(3250), + [anon_sym_from_json] = ACTIONS(3250), + [anon_sym_to_json] = ACTIONS(3250), + [anon_sym_to_string] = ACTIONS(3250), + [anon_sym_to_float] = ACTIONS(3250), + [anon_sym_bash] = ACTIONS(3250), + [anon_sym_fish] = ACTIONS(3250), + [anon_sym_raw] = ACTIONS(3250), + [anon_sym_sh] = ACTIONS(3250), + [anon_sym_zsh] = ACTIONS(3250), + [anon_sym_random] = ACTIONS(3250), + [anon_sym_random_boolean] = ACTIONS(3250), + [anon_sym_random_float] = ACTIONS(3250), + [anon_sym_random_integer] = ACTIONS(3250), + [anon_sym_columns] = ACTIONS(3250), + [anon_sym_rows] = ACTIONS(3250), + [anon_sym_reverse] = ACTIONS(3250), + }, + [786] = { + [sym_math_operator] = STATE(1305), + [sym_logic_operator] = STATE(1306), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_COMMA] = ACTIONS(3248), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3248), + [sym_string] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_asyncfor] = ACTIONS(3248), + [anon_sym_transform] = ACTIONS(3250), + [anon_sym_filter] = ACTIONS(3250), + [anon_sym_find] = ACTIONS(3250), + [anon_sym_remove] = ACTIONS(3250), + [anon_sym_reduce] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_insert] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_table] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_assert_equal] = ACTIONS(3250), + [anon_sym_download] = ACTIONS(3250), + [anon_sym_help] = ACTIONS(3250), + [anon_sym_length] = ACTIONS(3250), + [anon_sym_output] = ACTIONS(3250), + [anon_sym_output_error] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_append] = ACTIONS(3250), + [anon_sym_metadata] = ACTIONS(3250), + [anon_sym_move] = ACTIONS(3250), + [anon_sym_read] = ACTIONS(3250), + [anon_sym_workdir] = ACTIONS(3250), + [anon_sym_write] = ACTIONS(3250), + [anon_sym_from_json] = ACTIONS(3250), + [anon_sym_to_json] = ACTIONS(3250), + [anon_sym_to_string] = ACTIONS(3250), + [anon_sym_to_float] = ACTIONS(3250), + [anon_sym_bash] = ACTIONS(3250), + [anon_sym_fish] = ACTIONS(3250), + [anon_sym_raw] = ACTIONS(3250), + [anon_sym_sh] = ACTIONS(3250), + [anon_sym_zsh] = ACTIONS(3250), + [anon_sym_random] = ACTIONS(3250), + [anon_sym_random_boolean] = ACTIONS(3250), + [anon_sym_random_float] = ACTIONS(3250), + [anon_sym_random_integer] = ACTIONS(3250), + [anon_sym_columns] = ACTIONS(3250), + [anon_sym_rows] = ACTIONS(3250), + [anon_sym_reverse] = ACTIONS(3250), + }, + [787] = { + [sym_else_if] = STATE(805), + [sym_else] = STATE(878), + [aux_sym_if_else_repeat1] = STATE(805), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3221), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_RPAREN] = ACTIONS(3219), + [sym_integer] = ACTIONS(3221), + [sym_float] = ACTIONS(3219), + [sym_string] = ACTIONS(3219), + [anon_sym_true] = ACTIONS(3221), + [anon_sym_false] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_elseif] = ACTIONS(3596), + [anon_sym_else] = ACTIONS(3614), + [anon_sym_match] = ACTIONS(3221), + [anon_sym_EQ_GT] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_asyncfor] = ACTIONS(3219), + [anon_sym_transform] = ACTIONS(3221), + [anon_sym_filter] = ACTIONS(3221), + [anon_sym_find] = ACTIONS(3221), + [anon_sym_remove] = ACTIONS(3221), + [anon_sym_reduce] = ACTIONS(3221), + [anon_sym_select] = ACTIONS(3221), + [anon_sym_insert] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_table] = ACTIONS(3221), + [anon_sym_assert] = ACTIONS(3221), + [anon_sym_assert_equal] = ACTIONS(3221), + [anon_sym_download] = ACTIONS(3221), + [anon_sym_help] = ACTIONS(3221), + [anon_sym_length] = ACTIONS(3221), + [anon_sym_output] = ACTIONS(3221), + [anon_sym_output_error] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_append] = ACTIONS(3221), + [anon_sym_metadata] = ACTIONS(3221), + [anon_sym_move] = ACTIONS(3221), + [anon_sym_read] = ACTIONS(3221), + [anon_sym_workdir] = ACTIONS(3221), + [anon_sym_write] = ACTIONS(3221), + [anon_sym_from_json] = ACTIONS(3221), + [anon_sym_to_json] = ACTIONS(3221), + [anon_sym_to_string] = ACTIONS(3221), + [anon_sym_to_float] = ACTIONS(3221), + [anon_sym_bash] = ACTIONS(3221), + [anon_sym_fish] = ACTIONS(3221), + [anon_sym_raw] = ACTIONS(3221), + [anon_sym_sh] = ACTIONS(3221), + [anon_sym_zsh] = ACTIONS(3221), + [anon_sym_random] = ACTIONS(3221), + [anon_sym_random_boolean] = ACTIONS(3221), + [anon_sym_random_float] = ACTIONS(3221), + [anon_sym_random_integer] = ACTIONS(3221), + [anon_sym_columns] = ACTIONS(3221), + [anon_sym_rows] = ACTIONS(3221), + [anon_sym_reverse] = ACTIONS(3221), + }, + [788] = { + [ts_builtin_sym_end] = ACTIONS(3321), + [sym_identifier] = ACTIONS(3323), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_RPAREN] = ACTIONS(3321), + [anon_sym_COMMA] = ACTIONS(3321), + [sym_integer] = ACTIONS(3323), + [sym_float] = ACTIONS(3321), + [sym_string] = ACTIONS(3321), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_RBRACK] = ACTIONS(3321), + [anon_sym_COLON] = ACTIONS(3321), + [anon_sym_DOT_DOT] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3321), + [anon_sym_PERCENT] = ACTIONS(3321), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3323), + [anon_sym_LT] = ACTIONS(3323), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_elseif] = ACTIONS(3321), + [anon_sym_else] = ACTIONS(3323), + [anon_sym_match] = ACTIONS(3323), + [anon_sym_EQ_GT] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_asyncfor] = ACTIONS(3321), + [anon_sym_transform] = ACTIONS(3323), + [anon_sym_filter] = ACTIONS(3323), + [anon_sym_find] = ACTIONS(3323), + [anon_sym_remove] = ACTIONS(3323), + [anon_sym_reduce] = ACTIONS(3323), + [anon_sym_select] = ACTIONS(3323), + [anon_sym_insert] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_PIPE] = ACTIONS(3323), + [anon_sym_table] = ACTIONS(3323), + [anon_sym_assert] = ACTIONS(3323), + [anon_sym_assert_equal] = ACTIONS(3323), + [anon_sym_download] = ACTIONS(3323), + [anon_sym_help] = ACTIONS(3323), + [anon_sym_length] = ACTIONS(3323), + [anon_sym_output] = ACTIONS(3323), + [anon_sym_output_error] = ACTIONS(3323), + [anon_sym_type] = ACTIONS(3323), + [anon_sym_append] = ACTIONS(3323), + [anon_sym_metadata] = ACTIONS(3323), + [anon_sym_move] = ACTIONS(3323), + [anon_sym_read] = ACTIONS(3323), + [anon_sym_workdir] = ACTIONS(3323), + [anon_sym_write] = ACTIONS(3323), + [anon_sym_from_json] = ACTIONS(3323), + [anon_sym_to_json] = ACTIONS(3323), + [anon_sym_to_string] = ACTIONS(3323), + [anon_sym_to_float] = ACTIONS(3323), + [anon_sym_bash] = ACTIONS(3323), + [anon_sym_fish] = ACTIONS(3323), + [anon_sym_raw] = ACTIONS(3323), + [anon_sym_sh] = ACTIONS(3323), + [anon_sym_zsh] = ACTIONS(3323), + [anon_sym_random] = ACTIONS(3323), + [anon_sym_random_boolean] = ACTIONS(3323), + [anon_sym_random_float] = ACTIONS(3323), + [anon_sym_random_integer] = ACTIONS(3323), + [anon_sym_columns] = ACTIONS(3323), + [anon_sym_rows] = ACTIONS(3323), + [anon_sym_reverse] = ACTIONS(3323), + }, + [789] = { + [ts_builtin_sym_end] = ACTIONS(3363), + [sym_identifier] = ACTIONS(3365), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3363), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_RPAREN] = ACTIONS(3363), + [anon_sym_COMMA] = ACTIONS(3363), + [sym_integer] = ACTIONS(3365), + [sym_float] = ACTIONS(3363), + [sym_string] = ACTIONS(3363), + [anon_sym_true] = ACTIONS(3365), + [anon_sym_false] = ACTIONS(3365), + [anon_sym_LBRACK] = ACTIONS(3363), + [anon_sym_RBRACK] = ACTIONS(3363), + [anon_sym_COLON] = ACTIONS(3363), + [anon_sym_DOT_DOT] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3365), + [anon_sym_STAR] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_PERCENT] = ACTIONS(3363), + [anon_sym_EQ_EQ] = ACTIONS(3363), + [anon_sym_BANG_EQ] = ACTIONS(3363), + [anon_sym_AMP_AMP] = ACTIONS(3363), + [anon_sym_PIPE_PIPE] = ACTIONS(3363), + [anon_sym_GT] = ACTIONS(3365), + [anon_sym_LT] = ACTIONS(3365), + [anon_sym_GT_EQ] = ACTIONS(3363), + [anon_sym_LT_EQ] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3365), + [anon_sym_elseif] = ACTIONS(3363), + [anon_sym_else] = ACTIONS(3365), + [anon_sym_match] = ACTIONS(3365), + [anon_sym_EQ_GT] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3365), + [anon_sym_for] = ACTIONS(3365), + [anon_sym_asyncfor] = ACTIONS(3363), + [anon_sym_transform] = ACTIONS(3365), + [anon_sym_filter] = ACTIONS(3365), + [anon_sym_find] = ACTIONS(3365), + [anon_sym_remove] = ACTIONS(3365), + [anon_sym_reduce] = ACTIONS(3365), + [anon_sym_select] = ACTIONS(3365), + [anon_sym_insert] = ACTIONS(3365), + [anon_sym_async] = ACTIONS(3365), + [anon_sym_PIPE] = ACTIONS(3365), + [anon_sym_table] = ACTIONS(3365), + [anon_sym_assert] = ACTIONS(3365), + [anon_sym_assert_equal] = ACTIONS(3365), + [anon_sym_download] = ACTIONS(3365), + [anon_sym_help] = ACTIONS(3365), + [anon_sym_length] = ACTIONS(3365), + [anon_sym_output] = ACTIONS(3365), + [anon_sym_output_error] = ACTIONS(3365), + [anon_sym_type] = ACTIONS(3365), + [anon_sym_append] = ACTIONS(3365), + [anon_sym_metadata] = ACTIONS(3365), + [anon_sym_move] = ACTIONS(3365), + [anon_sym_read] = ACTIONS(3365), + [anon_sym_workdir] = ACTIONS(3365), + [anon_sym_write] = ACTIONS(3365), + [anon_sym_from_json] = ACTIONS(3365), + [anon_sym_to_json] = ACTIONS(3365), + [anon_sym_to_string] = ACTIONS(3365), + [anon_sym_to_float] = ACTIONS(3365), + [anon_sym_bash] = ACTIONS(3365), + [anon_sym_fish] = ACTIONS(3365), + [anon_sym_raw] = ACTIONS(3365), + [anon_sym_sh] = ACTIONS(3365), + [anon_sym_zsh] = ACTIONS(3365), + [anon_sym_random] = ACTIONS(3365), + [anon_sym_random_boolean] = ACTIONS(3365), + [anon_sym_random_float] = ACTIONS(3365), + [anon_sym_random_integer] = ACTIONS(3365), + [anon_sym_columns] = ACTIONS(3365), + [anon_sym_rows] = ACTIONS(3365), + [anon_sym_reverse] = ACTIONS(3365), + }, + [790] = { + [sym_math_operator] = STATE(1305), + [sym_logic_operator] = STATE(1306), + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3254), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3252), + [anon_sym_COMMA] = ACTIONS(3252), + [sym_integer] = ACTIONS(3254), + [sym_float] = ACTIONS(3252), + [sym_string] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_RBRACK] = ACTIONS(3252), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_DOT_DOT] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_match] = ACTIONS(3254), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_asyncfor] = ACTIONS(3252), + [anon_sym_transform] = ACTIONS(3254), + [anon_sym_filter] = ACTIONS(3254), + [anon_sym_find] = ACTIONS(3254), + [anon_sym_remove] = ACTIONS(3254), + [anon_sym_reduce] = ACTIONS(3254), + [anon_sym_select] = ACTIONS(3254), + [anon_sym_insert] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_table] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_assert_equal] = ACTIONS(3254), + [anon_sym_download] = ACTIONS(3254), + [anon_sym_help] = ACTIONS(3254), + [anon_sym_length] = ACTIONS(3254), + [anon_sym_output] = ACTIONS(3254), + [anon_sym_output_error] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_append] = ACTIONS(3254), + [anon_sym_metadata] = ACTIONS(3254), + [anon_sym_move] = ACTIONS(3254), + [anon_sym_read] = ACTIONS(3254), + [anon_sym_workdir] = ACTIONS(3254), + [anon_sym_write] = ACTIONS(3254), + [anon_sym_from_json] = ACTIONS(3254), + [anon_sym_to_json] = ACTIONS(3254), + [anon_sym_to_string] = ACTIONS(3254), + [anon_sym_to_float] = ACTIONS(3254), + [anon_sym_bash] = ACTIONS(3254), + [anon_sym_fish] = ACTIONS(3254), + [anon_sym_raw] = ACTIONS(3254), + [anon_sym_sh] = ACTIONS(3254), + [anon_sym_zsh] = ACTIONS(3254), + [anon_sym_random] = ACTIONS(3254), + [anon_sym_random_boolean] = ACTIONS(3254), + [anon_sym_random_float] = ACTIONS(3254), + [anon_sym_random_integer] = ACTIONS(3254), + [anon_sym_columns] = ACTIONS(3254), + [anon_sym_rows] = ACTIONS(3254), + [anon_sym_reverse] = ACTIONS(3254), + }, + [791] = { + [sym_math_operator] = STATE(1242), + [sym_logic_operator] = STATE(1243), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_RPAREN] = ACTIONS(3244), + [sym_integer] = ACTIONS(3246), + [sym_float] = ACTIONS(3244), + [sym_string] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(841), + [anon_sym_DOT_DOT] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_elseif] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_asyncfor] = ACTIONS(3244), + [anon_sym_transform] = ACTIONS(3246), + [anon_sym_filter] = ACTIONS(3246), + [anon_sym_find] = ACTIONS(3246), + [anon_sym_remove] = ACTIONS(3246), + [anon_sym_reduce] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_insert] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_table] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_assert_equal] = ACTIONS(3246), + [anon_sym_download] = ACTIONS(3246), + [anon_sym_help] = ACTIONS(3246), + [anon_sym_length] = ACTIONS(3246), + [anon_sym_output] = ACTIONS(3246), + [anon_sym_output_error] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_append] = ACTIONS(3246), + [anon_sym_metadata] = ACTIONS(3246), + [anon_sym_move] = ACTIONS(3246), + [anon_sym_read] = ACTIONS(3246), + [anon_sym_workdir] = ACTIONS(3246), + [anon_sym_write] = ACTIONS(3246), + [anon_sym_from_json] = ACTIONS(3246), + [anon_sym_to_json] = ACTIONS(3246), + [anon_sym_to_string] = ACTIONS(3246), + [anon_sym_to_float] = ACTIONS(3246), + [anon_sym_bash] = ACTIONS(3246), + [anon_sym_fish] = ACTIONS(3246), + [anon_sym_raw] = ACTIONS(3246), + [anon_sym_sh] = ACTIONS(3246), + [anon_sym_zsh] = ACTIONS(3246), + [anon_sym_random] = ACTIONS(3246), + [anon_sym_random_boolean] = ACTIONS(3246), + [anon_sym_random_float] = ACTIONS(3246), + [anon_sym_random_integer] = ACTIONS(3246), + [anon_sym_columns] = ACTIONS(3246), + [anon_sym_rows] = ACTIONS(3246), + [anon_sym_reverse] = ACTIONS(3246), + }, + [792] = { + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [anon_sym_COMMA] = ACTIONS(3229), + [sym_integer] = ACTIONS(3231), + [sym_float] = ACTIONS(3229), + [sym_string] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_RBRACK] = ACTIONS(3229), + [anon_sym_COLON] = ACTIONS(3229), + [anon_sym_DOT_DOT] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_elseif] = ACTIONS(3229), + [anon_sym_else] = ACTIONS(3231), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_asyncfor] = ACTIONS(3229), + [anon_sym_transform] = ACTIONS(3231), + [anon_sym_filter] = ACTIONS(3231), + [anon_sym_find] = ACTIONS(3231), + [anon_sym_remove] = ACTIONS(3231), + [anon_sym_reduce] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_insert] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_table] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_assert_equal] = ACTIONS(3231), + [anon_sym_download] = ACTIONS(3231), + [anon_sym_help] = ACTIONS(3231), + [anon_sym_length] = ACTIONS(3231), + [anon_sym_output] = ACTIONS(3231), + [anon_sym_output_error] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_append] = ACTIONS(3231), + [anon_sym_metadata] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_read] = ACTIONS(3231), + [anon_sym_workdir] = ACTIONS(3231), + [anon_sym_write] = ACTIONS(3231), + [anon_sym_from_json] = ACTIONS(3231), + [anon_sym_to_json] = ACTIONS(3231), + [anon_sym_to_string] = ACTIONS(3231), + [anon_sym_to_float] = ACTIONS(3231), + [anon_sym_bash] = ACTIONS(3231), + [anon_sym_fish] = ACTIONS(3231), + [anon_sym_raw] = ACTIONS(3231), + [anon_sym_sh] = ACTIONS(3231), + [anon_sym_zsh] = ACTIONS(3231), + [anon_sym_random] = ACTIONS(3231), + [anon_sym_random_boolean] = ACTIONS(3231), + [anon_sym_random_float] = ACTIONS(3231), + [anon_sym_random_integer] = ACTIONS(3231), + [anon_sym_columns] = ACTIONS(3231), + [anon_sym_rows] = ACTIONS(3231), + [anon_sym_reverse] = ACTIONS(3231), + }, + [793] = { + [sym_else_if] = STATE(825), + [sym_else] = STATE(802), + [aux_sym_if_else_repeat1] = STATE(825), + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [sym_integer] = ACTIONS(3231), + [sym_float] = ACTIONS(3229), + [sym_string] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_COLON] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_elseif] = ACTIONS(3596), + [anon_sym_else] = ACTIONS(3598), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_asyncfor] = ACTIONS(3229), + [anon_sym_transform] = ACTIONS(3231), + [anon_sym_filter] = ACTIONS(3231), + [anon_sym_find] = ACTIONS(3231), + [anon_sym_remove] = ACTIONS(3231), + [anon_sym_reduce] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_insert] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_table] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_assert_equal] = ACTIONS(3231), + [anon_sym_download] = ACTIONS(3231), + [anon_sym_help] = ACTIONS(3231), + [anon_sym_length] = ACTIONS(3231), + [anon_sym_output] = ACTIONS(3231), + [anon_sym_output_error] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_append] = ACTIONS(3231), + [anon_sym_metadata] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_read] = ACTIONS(3231), + [anon_sym_workdir] = ACTIONS(3231), + [anon_sym_write] = ACTIONS(3231), + [anon_sym_from_json] = ACTIONS(3231), + [anon_sym_to_json] = ACTIONS(3231), + [anon_sym_to_string] = ACTIONS(3231), + [anon_sym_to_float] = ACTIONS(3231), + [anon_sym_bash] = ACTIONS(3231), + [anon_sym_fish] = ACTIONS(3231), + [anon_sym_raw] = ACTIONS(3231), + [anon_sym_sh] = ACTIONS(3231), + [anon_sym_zsh] = ACTIONS(3231), + [anon_sym_random] = ACTIONS(3231), + [anon_sym_random_boolean] = ACTIONS(3231), + [anon_sym_random_float] = ACTIONS(3231), + [anon_sym_random_integer] = ACTIONS(3231), + [anon_sym_columns] = ACTIONS(3231), + [anon_sym_rows] = ACTIONS(3231), + [anon_sym_reverse] = ACTIONS(3231), + }, + [794] = { + [sym_math_operator] = STATE(1242), + [sym_logic_operator] = STATE(1243), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3242), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [sym_integer] = ACTIONS(3242), + [sym_float] = ACTIONS(3240), + [sym_string] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(841), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_elseif] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_asyncfor] = ACTIONS(3240), + [anon_sym_transform] = ACTIONS(3242), + [anon_sym_filter] = ACTIONS(3242), + [anon_sym_find] = ACTIONS(3242), + [anon_sym_remove] = ACTIONS(3242), + [anon_sym_reduce] = ACTIONS(3242), + [anon_sym_select] = ACTIONS(3242), + [anon_sym_insert] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_table] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_assert_equal] = ACTIONS(3242), + [anon_sym_download] = ACTIONS(3242), + [anon_sym_help] = ACTIONS(3242), + [anon_sym_length] = ACTIONS(3242), + [anon_sym_output] = ACTIONS(3242), + [anon_sym_output_error] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_append] = ACTIONS(3242), + [anon_sym_metadata] = ACTIONS(3242), + [anon_sym_move] = ACTIONS(3242), + [anon_sym_read] = ACTIONS(3242), + [anon_sym_workdir] = ACTIONS(3242), + [anon_sym_write] = ACTIONS(3242), + [anon_sym_from_json] = ACTIONS(3242), + [anon_sym_to_json] = ACTIONS(3242), + [anon_sym_to_string] = ACTIONS(3242), + [anon_sym_to_float] = ACTIONS(3242), + [anon_sym_bash] = ACTIONS(3242), + [anon_sym_fish] = ACTIONS(3242), + [anon_sym_raw] = ACTIONS(3242), + [anon_sym_sh] = ACTIONS(3242), + [anon_sym_zsh] = ACTIONS(3242), + [anon_sym_random] = ACTIONS(3242), + [anon_sym_random_boolean] = ACTIONS(3242), + [anon_sym_random_float] = ACTIONS(3242), + [anon_sym_random_integer] = ACTIONS(3242), + [anon_sym_columns] = ACTIONS(3242), + [anon_sym_rows] = ACTIONS(3242), + [anon_sym_reverse] = ACTIONS(3242), + }, + [795] = { + [sym_math_operator] = STATE(1270), + [sym_logic_operator] = STATE(1260), + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_EQ] = ACTIONS(3277), + [anon_sym_COLON] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3275), + [anon_sym_DASH_EQ] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [796] = { + [ts_builtin_sym_end] = ACTIONS(3303), + [sym_identifier] = ACTIONS(3305), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_RPAREN] = ACTIONS(3303), + [anon_sym_COMMA] = ACTIONS(3303), + [sym_integer] = ACTIONS(3305), + [sym_float] = ACTIONS(3303), + [sym_string] = ACTIONS(3303), + [anon_sym_true] = ACTIONS(3305), + [anon_sym_false] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_RBRACK] = ACTIONS(3303), + [anon_sym_COLON] = ACTIONS(3303), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3303), + [anon_sym_SLASH] = ACTIONS(3303), + [anon_sym_PERCENT] = ACTIONS(3303), + [anon_sym_EQ_EQ] = ACTIONS(3303), + [anon_sym_BANG_EQ] = ACTIONS(3303), + [anon_sym_AMP_AMP] = ACTIONS(3303), + [anon_sym_PIPE_PIPE] = ACTIONS(3303), + [anon_sym_GT] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_GT_EQ] = ACTIONS(3303), + [anon_sym_LT_EQ] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_elseif] = ACTIONS(3303), + [anon_sym_else] = ACTIONS(3305), + [anon_sym_match] = ACTIONS(3305), + [anon_sym_EQ_GT] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_asyncfor] = ACTIONS(3303), + [anon_sym_transform] = ACTIONS(3305), + [anon_sym_filter] = ACTIONS(3305), + [anon_sym_find] = ACTIONS(3305), + [anon_sym_remove] = ACTIONS(3305), + [anon_sym_reduce] = ACTIONS(3305), + [anon_sym_select] = ACTIONS(3305), + [anon_sym_insert] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_PIPE] = ACTIONS(3305), + [anon_sym_table] = ACTIONS(3305), + [anon_sym_assert] = ACTIONS(3305), + [anon_sym_assert_equal] = ACTIONS(3305), + [anon_sym_download] = ACTIONS(3305), + [anon_sym_help] = ACTIONS(3305), + [anon_sym_length] = ACTIONS(3305), + [anon_sym_output] = ACTIONS(3305), + [anon_sym_output_error] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_append] = ACTIONS(3305), + [anon_sym_metadata] = ACTIONS(3305), + [anon_sym_move] = ACTIONS(3305), + [anon_sym_read] = ACTIONS(3305), + [anon_sym_workdir] = ACTIONS(3305), + [anon_sym_write] = ACTIONS(3305), + [anon_sym_from_json] = ACTIONS(3305), + [anon_sym_to_json] = ACTIONS(3305), + [anon_sym_to_string] = ACTIONS(3305), + [anon_sym_to_float] = ACTIONS(3305), + [anon_sym_bash] = ACTIONS(3305), + [anon_sym_fish] = ACTIONS(3305), + [anon_sym_raw] = ACTIONS(3305), + [anon_sym_sh] = ACTIONS(3305), + [anon_sym_zsh] = ACTIONS(3305), + [anon_sym_random] = ACTIONS(3305), + [anon_sym_random_boolean] = ACTIONS(3305), + [anon_sym_random_float] = ACTIONS(3305), + [anon_sym_random_integer] = ACTIONS(3305), + [anon_sym_columns] = ACTIONS(3305), + [anon_sym_rows] = ACTIONS(3305), + [anon_sym_reverse] = ACTIONS(3305), + }, + [797] = { + [sym_math_operator] = STATE(1270), + [sym_logic_operator] = STATE(1260), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3242), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [sym_integer] = ACTIONS(3242), + [sym_float] = ACTIONS(3240), + [sym_string] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_EQ] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_asyncfor] = ACTIONS(3240), + [anon_sym_transform] = ACTIONS(3242), + [anon_sym_filter] = ACTIONS(3242), + [anon_sym_find] = ACTIONS(3242), + [anon_sym_remove] = ACTIONS(3242), + [anon_sym_reduce] = ACTIONS(3242), + [anon_sym_select] = ACTIONS(3242), + [anon_sym_insert] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_table] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_assert_equal] = ACTIONS(3242), + [anon_sym_download] = ACTIONS(3242), + [anon_sym_help] = ACTIONS(3242), + [anon_sym_length] = ACTIONS(3242), + [anon_sym_output] = ACTIONS(3242), + [anon_sym_output_error] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_append] = ACTIONS(3242), + [anon_sym_metadata] = ACTIONS(3242), + [anon_sym_move] = ACTIONS(3242), + [anon_sym_read] = ACTIONS(3242), + [anon_sym_workdir] = ACTIONS(3242), + [anon_sym_write] = ACTIONS(3242), + [anon_sym_from_json] = ACTIONS(3242), + [anon_sym_to_json] = ACTIONS(3242), + [anon_sym_to_string] = ACTIONS(3242), + [anon_sym_to_float] = ACTIONS(3242), + [anon_sym_bash] = ACTIONS(3242), + [anon_sym_fish] = ACTIONS(3242), + [anon_sym_raw] = ACTIONS(3242), + [anon_sym_sh] = ACTIONS(3242), + [anon_sym_zsh] = ACTIONS(3242), + [anon_sym_random] = ACTIONS(3242), + [anon_sym_random_boolean] = ACTIONS(3242), + [anon_sym_random_float] = ACTIONS(3242), + [anon_sym_random_integer] = ACTIONS(3242), + [anon_sym_columns] = ACTIONS(3242), + [anon_sym_rows] = ACTIONS(3242), + [anon_sym_reverse] = ACTIONS(3242), + }, + [798] = { + [sym_math_operator] = STATE(1270), + [sym_logic_operator] = STATE(1260), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_RPAREN] = ACTIONS(3244), + [sym_integer] = ACTIONS(3246), + [sym_float] = ACTIONS(3244), + [sym_string] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3246), + [anon_sym_COLON] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3244), + [anon_sym_DASH_EQ] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_asyncfor] = ACTIONS(3244), + [anon_sym_transform] = ACTIONS(3246), + [anon_sym_filter] = ACTIONS(3246), + [anon_sym_find] = ACTIONS(3246), + [anon_sym_remove] = ACTIONS(3246), + [anon_sym_reduce] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_insert] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_table] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_assert_equal] = ACTIONS(3246), + [anon_sym_download] = ACTIONS(3246), + [anon_sym_help] = ACTIONS(3246), + [anon_sym_length] = ACTIONS(3246), + [anon_sym_output] = ACTIONS(3246), + [anon_sym_output_error] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_append] = ACTIONS(3246), + [anon_sym_metadata] = ACTIONS(3246), + [anon_sym_move] = ACTIONS(3246), + [anon_sym_read] = ACTIONS(3246), + [anon_sym_workdir] = ACTIONS(3246), + [anon_sym_write] = ACTIONS(3246), + [anon_sym_from_json] = ACTIONS(3246), + [anon_sym_to_json] = ACTIONS(3246), + [anon_sym_to_string] = ACTIONS(3246), + [anon_sym_to_float] = ACTIONS(3246), + [anon_sym_bash] = ACTIONS(3246), + [anon_sym_fish] = ACTIONS(3246), + [anon_sym_raw] = ACTIONS(3246), + [anon_sym_sh] = ACTIONS(3246), + [anon_sym_zsh] = ACTIONS(3246), + [anon_sym_random] = ACTIONS(3246), + [anon_sym_random_boolean] = ACTIONS(3246), + [anon_sym_random_float] = ACTIONS(3246), + [anon_sym_random_integer] = ACTIONS(3246), + [anon_sym_columns] = ACTIONS(3246), + [anon_sym_rows] = ACTIONS(3246), + [anon_sym_reverse] = ACTIONS(3246), + }, + [799] = { + [ts_builtin_sym_end] = ACTIONS(3317), + [sym_identifier] = ACTIONS(3319), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_RPAREN] = ACTIONS(3317), + [anon_sym_COMMA] = ACTIONS(3317), + [sym_integer] = ACTIONS(3319), + [sym_float] = ACTIONS(3317), + [sym_string] = ACTIONS(3317), + [anon_sym_true] = ACTIONS(3319), + [anon_sym_false] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_RBRACK] = ACTIONS(3317), + [anon_sym_COLON] = ACTIONS(3317), + [anon_sym_DOT_DOT] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_PERCENT] = ACTIONS(3317), + [anon_sym_EQ_EQ] = ACTIONS(3317), + [anon_sym_BANG_EQ] = ACTIONS(3317), + [anon_sym_AMP_AMP] = ACTIONS(3317), + [anon_sym_PIPE_PIPE] = ACTIONS(3317), + [anon_sym_GT] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3317), + [anon_sym_LT_EQ] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_elseif] = ACTIONS(3317), + [anon_sym_else] = ACTIONS(3319), + [anon_sym_match] = ACTIONS(3319), + [anon_sym_EQ_GT] = ACTIONS(3317), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_asyncfor] = ACTIONS(3317), + [anon_sym_transform] = ACTIONS(3319), + [anon_sym_filter] = ACTIONS(3319), + [anon_sym_find] = ACTIONS(3319), + [anon_sym_remove] = ACTIONS(3319), + [anon_sym_reduce] = ACTIONS(3319), + [anon_sym_select] = ACTIONS(3319), + [anon_sym_insert] = ACTIONS(3319), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_PIPE] = ACTIONS(3319), + [anon_sym_table] = ACTIONS(3319), + [anon_sym_assert] = ACTIONS(3319), + [anon_sym_assert_equal] = ACTIONS(3319), + [anon_sym_download] = ACTIONS(3319), + [anon_sym_help] = ACTIONS(3319), + [anon_sym_length] = ACTIONS(3319), + [anon_sym_output] = ACTIONS(3319), + [anon_sym_output_error] = ACTIONS(3319), + [anon_sym_type] = ACTIONS(3319), + [anon_sym_append] = ACTIONS(3319), + [anon_sym_metadata] = ACTIONS(3319), + [anon_sym_move] = ACTIONS(3319), + [anon_sym_read] = ACTIONS(3319), + [anon_sym_workdir] = ACTIONS(3319), + [anon_sym_write] = ACTIONS(3319), + [anon_sym_from_json] = ACTIONS(3319), + [anon_sym_to_json] = ACTIONS(3319), + [anon_sym_to_string] = ACTIONS(3319), + [anon_sym_to_float] = ACTIONS(3319), + [anon_sym_bash] = ACTIONS(3319), + [anon_sym_fish] = ACTIONS(3319), + [anon_sym_raw] = ACTIONS(3319), + [anon_sym_sh] = ACTIONS(3319), + [anon_sym_zsh] = ACTIONS(3319), + [anon_sym_random] = ACTIONS(3319), + [anon_sym_random_boolean] = ACTIONS(3319), + [anon_sym_random_float] = ACTIONS(3319), + [anon_sym_random_integer] = ACTIONS(3319), + [anon_sym_columns] = ACTIONS(3319), + [anon_sym_rows] = ACTIONS(3319), + [anon_sym_reverse] = ACTIONS(3319), + }, + [800] = { + [sym_math_operator] = STATE(1242), + [sym_logic_operator] = STATE(1243), + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3254), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3252), + [sym_integer] = ACTIONS(3254), + [sym_float] = ACTIONS(3252), + [sym_string] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_DOT_DOT] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_elseif] = ACTIONS(3252), + [anon_sym_else] = ACTIONS(3254), + [anon_sym_match] = ACTIONS(3254), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_asyncfor] = ACTIONS(3252), + [anon_sym_transform] = ACTIONS(3254), + [anon_sym_filter] = ACTIONS(3254), + [anon_sym_find] = ACTIONS(3254), + [anon_sym_remove] = ACTIONS(3254), + [anon_sym_reduce] = ACTIONS(3254), + [anon_sym_select] = ACTIONS(3254), + [anon_sym_insert] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_table] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_assert_equal] = ACTIONS(3254), + [anon_sym_download] = ACTIONS(3254), + [anon_sym_help] = ACTIONS(3254), + [anon_sym_length] = ACTIONS(3254), + [anon_sym_output] = ACTIONS(3254), + [anon_sym_output_error] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_append] = ACTIONS(3254), + [anon_sym_metadata] = ACTIONS(3254), + [anon_sym_move] = ACTIONS(3254), + [anon_sym_read] = ACTIONS(3254), + [anon_sym_workdir] = ACTIONS(3254), + [anon_sym_write] = ACTIONS(3254), + [anon_sym_from_json] = ACTIONS(3254), + [anon_sym_to_json] = ACTIONS(3254), + [anon_sym_to_string] = ACTIONS(3254), + [anon_sym_to_float] = ACTIONS(3254), + [anon_sym_bash] = ACTIONS(3254), + [anon_sym_fish] = ACTIONS(3254), + [anon_sym_raw] = ACTIONS(3254), + [anon_sym_sh] = ACTIONS(3254), + [anon_sym_zsh] = ACTIONS(3254), + [anon_sym_random] = ACTIONS(3254), + [anon_sym_random_boolean] = ACTIONS(3254), + [anon_sym_random_float] = ACTIONS(3254), + [anon_sym_random_integer] = ACTIONS(3254), + [anon_sym_columns] = ACTIONS(3254), + [anon_sym_rows] = ACTIONS(3254), + [anon_sym_reverse] = ACTIONS(3254), + }, + [801] = { + [sym_math_operator] = STATE(1242), + [sym_logic_operator] = STATE(1243), + [ts_builtin_sym_end] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3264), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [sym_integer] = ACTIONS(3264), + [sym_float] = ACTIONS(3262), + [sym_string] = ACTIONS(3262), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_DOT_DOT] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_elseif] = ACTIONS(3262), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_match] = ACTIONS(3264), + [anon_sym_EQ_GT] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_asyncfor] = ACTIONS(3262), + [anon_sym_transform] = ACTIONS(3264), + [anon_sym_filter] = ACTIONS(3264), + [anon_sym_find] = ACTIONS(3264), + [anon_sym_remove] = ACTIONS(3264), + [anon_sym_reduce] = ACTIONS(3264), + [anon_sym_select] = ACTIONS(3264), + [anon_sym_insert] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_table] = ACTIONS(3264), + [anon_sym_assert] = ACTIONS(3264), + [anon_sym_assert_equal] = ACTIONS(3264), + [anon_sym_download] = ACTIONS(3264), + [anon_sym_help] = ACTIONS(3264), + [anon_sym_length] = ACTIONS(3264), + [anon_sym_output] = ACTIONS(3264), + [anon_sym_output_error] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_append] = ACTIONS(3264), + [anon_sym_metadata] = ACTIONS(3264), + [anon_sym_move] = ACTIONS(3264), + [anon_sym_read] = ACTIONS(3264), + [anon_sym_workdir] = ACTIONS(3264), + [anon_sym_write] = ACTIONS(3264), + [anon_sym_from_json] = ACTIONS(3264), + [anon_sym_to_json] = ACTIONS(3264), + [anon_sym_to_string] = ACTIONS(3264), + [anon_sym_to_float] = ACTIONS(3264), + [anon_sym_bash] = ACTIONS(3264), + [anon_sym_fish] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3264), + [anon_sym_sh] = ACTIONS(3264), + [anon_sym_zsh] = ACTIONS(3264), + [anon_sym_random] = ACTIONS(3264), + [anon_sym_random_boolean] = ACTIONS(3264), + [anon_sym_random_float] = ACTIONS(3264), + [anon_sym_random_integer] = ACTIONS(3264), + [anon_sym_columns] = ACTIONS(3264), + [anon_sym_rows] = ACTIONS(3264), + [anon_sym_reverse] = ACTIONS(3264), + }, + [802] = { + [ts_builtin_sym_end] = ACTIONS(3325), + [sym_identifier] = ACTIONS(3327), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_RPAREN] = ACTIONS(3325), + [anon_sym_COMMA] = ACTIONS(3325), + [sym_integer] = ACTIONS(3327), + [sym_float] = ACTIONS(3325), + [sym_string] = ACTIONS(3325), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_RBRACK] = ACTIONS(3325), + [anon_sym_COLON] = ACTIONS(3325), + [anon_sym_DOT_DOT] = ACTIONS(3325), + [anon_sym_PLUS] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_STAR] = ACTIONS(3325), + [anon_sym_SLASH] = ACTIONS(3325), + [anon_sym_PERCENT] = ACTIONS(3325), + [anon_sym_EQ_EQ] = ACTIONS(3325), + [anon_sym_BANG_EQ] = ACTIONS(3325), + [anon_sym_AMP_AMP] = ACTIONS(3325), + [anon_sym_PIPE_PIPE] = ACTIONS(3325), + [anon_sym_GT] = ACTIONS(3327), + [anon_sym_LT] = ACTIONS(3327), + [anon_sym_GT_EQ] = ACTIONS(3325), + [anon_sym_LT_EQ] = ACTIONS(3325), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_elseif] = ACTIONS(3325), + [anon_sym_else] = ACTIONS(3327), + [anon_sym_match] = ACTIONS(3327), + [anon_sym_EQ_GT] = ACTIONS(3325), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_asyncfor] = ACTIONS(3325), + [anon_sym_transform] = ACTIONS(3327), + [anon_sym_filter] = ACTIONS(3327), + [anon_sym_find] = ACTIONS(3327), + [anon_sym_remove] = ACTIONS(3327), + [anon_sym_reduce] = ACTIONS(3327), + [anon_sym_select] = ACTIONS(3327), + [anon_sym_insert] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_PIPE] = ACTIONS(3327), + [anon_sym_table] = ACTIONS(3327), + [anon_sym_assert] = ACTIONS(3327), + [anon_sym_assert_equal] = ACTIONS(3327), + [anon_sym_download] = ACTIONS(3327), + [anon_sym_help] = ACTIONS(3327), + [anon_sym_length] = ACTIONS(3327), + [anon_sym_output] = ACTIONS(3327), + [anon_sym_output_error] = ACTIONS(3327), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_append] = ACTIONS(3327), + [anon_sym_metadata] = ACTIONS(3327), + [anon_sym_move] = ACTIONS(3327), + [anon_sym_read] = ACTIONS(3327), + [anon_sym_workdir] = ACTIONS(3327), + [anon_sym_write] = ACTIONS(3327), + [anon_sym_from_json] = ACTIONS(3327), + [anon_sym_to_json] = ACTIONS(3327), + [anon_sym_to_string] = ACTIONS(3327), + [anon_sym_to_float] = ACTIONS(3327), + [anon_sym_bash] = ACTIONS(3327), + [anon_sym_fish] = ACTIONS(3327), + [anon_sym_raw] = ACTIONS(3327), + [anon_sym_sh] = ACTIONS(3327), + [anon_sym_zsh] = ACTIONS(3327), + [anon_sym_random] = ACTIONS(3327), + [anon_sym_random_boolean] = ACTIONS(3327), + [anon_sym_random_float] = ACTIONS(3327), + [anon_sym_random_integer] = ACTIONS(3327), + [anon_sym_columns] = ACTIONS(3327), + [anon_sym_rows] = ACTIONS(3327), + [anon_sym_reverse] = ACTIONS(3327), + }, + [803] = { + [ts_builtin_sym_end] = ACTIONS(3329), + [sym_identifier] = ACTIONS(3331), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_RBRACE] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_RPAREN] = ACTIONS(3329), + [anon_sym_COMMA] = ACTIONS(3329), + [sym_integer] = ACTIONS(3331), + [sym_float] = ACTIONS(3329), + [sym_string] = ACTIONS(3329), + [anon_sym_true] = ACTIONS(3331), + [anon_sym_false] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_RBRACK] = ACTIONS(3329), + [anon_sym_COLON] = ACTIONS(3329), + [anon_sym_DOT_DOT] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3329), + [anon_sym_SLASH] = ACTIONS(3329), + [anon_sym_PERCENT] = ACTIONS(3329), + [anon_sym_EQ_EQ] = ACTIONS(3329), + [anon_sym_BANG_EQ] = ACTIONS(3329), + [anon_sym_AMP_AMP] = ACTIONS(3329), + [anon_sym_PIPE_PIPE] = ACTIONS(3329), + [anon_sym_GT] = ACTIONS(3331), + [anon_sym_LT] = ACTIONS(3331), + [anon_sym_GT_EQ] = ACTIONS(3329), + [anon_sym_LT_EQ] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_elseif] = ACTIONS(3329), + [anon_sym_else] = ACTIONS(3331), + [anon_sym_match] = ACTIONS(3331), + [anon_sym_EQ_GT] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_asyncfor] = ACTIONS(3329), + [anon_sym_transform] = ACTIONS(3331), + [anon_sym_filter] = ACTIONS(3331), + [anon_sym_find] = ACTIONS(3331), + [anon_sym_remove] = ACTIONS(3331), + [anon_sym_reduce] = ACTIONS(3331), + [anon_sym_select] = ACTIONS(3331), + [anon_sym_insert] = ACTIONS(3331), + [anon_sym_async] = ACTIONS(3331), + [anon_sym_PIPE] = ACTIONS(3331), + [anon_sym_table] = ACTIONS(3331), + [anon_sym_assert] = ACTIONS(3331), + [anon_sym_assert_equal] = ACTIONS(3331), + [anon_sym_download] = ACTIONS(3331), + [anon_sym_help] = ACTIONS(3331), + [anon_sym_length] = ACTIONS(3331), + [anon_sym_output] = ACTIONS(3331), + [anon_sym_output_error] = ACTIONS(3331), + [anon_sym_type] = ACTIONS(3331), + [anon_sym_append] = ACTIONS(3331), + [anon_sym_metadata] = ACTIONS(3331), + [anon_sym_move] = ACTIONS(3331), + [anon_sym_read] = ACTIONS(3331), + [anon_sym_workdir] = ACTIONS(3331), + [anon_sym_write] = ACTIONS(3331), + [anon_sym_from_json] = ACTIONS(3331), + [anon_sym_to_json] = ACTIONS(3331), + [anon_sym_to_string] = ACTIONS(3331), + [anon_sym_to_float] = ACTIONS(3331), + [anon_sym_bash] = ACTIONS(3331), + [anon_sym_fish] = ACTIONS(3331), + [anon_sym_raw] = ACTIONS(3331), + [anon_sym_sh] = ACTIONS(3331), + [anon_sym_zsh] = ACTIONS(3331), + [anon_sym_random] = ACTIONS(3331), + [anon_sym_random_boolean] = ACTIONS(3331), + [anon_sym_random_float] = ACTIONS(3331), + [anon_sym_random_integer] = ACTIONS(3331), + [anon_sym_columns] = ACTIONS(3331), + [anon_sym_rows] = ACTIONS(3331), + [anon_sym_reverse] = ACTIONS(3331), + }, + [804] = { + [ts_builtin_sym_end] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3339), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_RPAREN] = ACTIONS(3337), + [anon_sym_COMMA] = ACTIONS(3337), + [sym_integer] = ACTIONS(3339), + [sym_float] = ACTIONS(3337), + [sym_string] = ACTIONS(3337), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_RBRACK] = ACTIONS(3337), + [anon_sym_COLON] = ACTIONS(3337), + [anon_sym_DOT_DOT] = ACTIONS(3337), + [anon_sym_PLUS] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3339), + [anon_sym_STAR] = ACTIONS(3337), + [anon_sym_SLASH] = ACTIONS(3337), + [anon_sym_PERCENT] = ACTIONS(3337), + [anon_sym_EQ_EQ] = ACTIONS(3337), + [anon_sym_BANG_EQ] = ACTIONS(3337), + [anon_sym_AMP_AMP] = ACTIONS(3337), + [anon_sym_PIPE_PIPE] = ACTIONS(3337), + [anon_sym_GT] = ACTIONS(3339), + [anon_sym_LT] = ACTIONS(3339), + [anon_sym_GT_EQ] = ACTIONS(3337), + [anon_sym_LT_EQ] = ACTIONS(3337), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_elseif] = ACTIONS(3337), + [anon_sym_else] = ACTIONS(3339), + [anon_sym_match] = ACTIONS(3339), + [anon_sym_EQ_GT] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_asyncfor] = ACTIONS(3337), + [anon_sym_transform] = ACTIONS(3339), + [anon_sym_filter] = ACTIONS(3339), + [anon_sym_find] = ACTIONS(3339), + [anon_sym_remove] = ACTIONS(3339), + [anon_sym_reduce] = ACTIONS(3339), + [anon_sym_select] = ACTIONS(3339), + [anon_sym_insert] = ACTIONS(3339), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_PIPE] = ACTIONS(3339), + [anon_sym_table] = ACTIONS(3339), + [anon_sym_assert] = ACTIONS(3339), + [anon_sym_assert_equal] = ACTIONS(3339), + [anon_sym_download] = ACTIONS(3339), + [anon_sym_help] = ACTIONS(3339), + [anon_sym_length] = ACTIONS(3339), + [anon_sym_output] = ACTIONS(3339), + [anon_sym_output_error] = ACTIONS(3339), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_append] = ACTIONS(3339), + [anon_sym_metadata] = ACTIONS(3339), + [anon_sym_move] = ACTIONS(3339), + [anon_sym_read] = ACTIONS(3339), + [anon_sym_workdir] = ACTIONS(3339), + [anon_sym_write] = ACTIONS(3339), + [anon_sym_from_json] = ACTIONS(3339), + [anon_sym_to_json] = ACTIONS(3339), + [anon_sym_to_string] = ACTIONS(3339), + [anon_sym_to_float] = ACTIONS(3339), + [anon_sym_bash] = ACTIONS(3339), + [anon_sym_fish] = ACTIONS(3339), + [anon_sym_raw] = ACTIONS(3339), + [anon_sym_sh] = ACTIONS(3339), + [anon_sym_zsh] = ACTIONS(3339), + [anon_sym_random] = ACTIONS(3339), + [anon_sym_random_boolean] = ACTIONS(3339), + [anon_sym_random_float] = ACTIONS(3339), + [anon_sym_random_integer] = ACTIONS(3339), + [anon_sym_columns] = ACTIONS(3339), + [anon_sym_rows] = ACTIONS(3339), + [anon_sym_reverse] = ACTIONS(3339), + }, + [805] = { + [sym_else_if] = STATE(825), + [sym_else] = STATE(857), + [aux_sym_if_else_repeat1] = STATE(825), + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [sym_integer] = ACTIONS(3231), + [sym_float] = ACTIONS(3229), + [sym_string] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_COLON] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_elseif] = ACTIONS(3596), + [anon_sym_else] = ACTIONS(3614), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_asyncfor] = ACTIONS(3229), + [anon_sym_transform] = ACTIONS(3231), + [anon_sym_filter] = ACTIONS(3231), + [anon_sym_find] = ACTIONS(3231), + [anon_sym_remove] = ACTIONS(3231), + [anon_sym_reduce] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_insert] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_table] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_assert_equal] = ACTIONS(3231), + [anon_sym_download] = ACTIONS(3231), + [anon_sym_help] = ACTIONS(3231), + [anon_sym_length] = ACTIONS(3231), + [anon_sym_output] = ACTIONS(3231), + [anon_sym_output_error] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_append] = ACTIONS(3231), + [anon_sym_metadata] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_read] = ACTIONS(3231), + [anon_sym_workdir] = ACTIONS(3231), + [anon_sym_write] = ACTIONS(3231), + [anon_sym_from_json] = ACTIONS(3231), + [anon_sym_to_json] = ACTIONS(3231), + [anon_sym_to_string] = ACTIONS(3231), + [anon_sym_to_float] = ACTIONS(3231), + [anon_sym_bash] = ACTIONS(3231), + [anon_sym_fish] = ACTIONS(3231), + [anon_sym_raw] = ACTIONS(3231), + [anon_sym_sh] = ACTIONS(3231), + [anon_sym_zsh] = ACTIONS(3231), + [anon_sym_random] = ACTIONS(3231), + [anon_sym_random_boolean] = ACTIONS(3231), + [anon_sym_random_float] = ACTIONS(3231), + [anon_sym_random_integer] = ACTIONS(3231), + [anon_sym_columns] = ACTIONS(3231), + [anon_sym_rows] = ACTIONS(3231), + [anon_sym_reverse] = ACTIONS(3231), + }, + [806] = { + [ts_builtin_sym_end] = ACTIONS(3341), + [sym_identifier] = ACTIONS(3343), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_RPAREN] = ACTIONS(3341), + [anon_sym_COMMA] = ACTIONS(3341), + [sym_integer] = ACTIONS(3343), + [sym_float] = ACTIONS(3341), + [sym_string] = ACTIONS(3341), + [anon_sym_true] = ACTIONS(3343), + [anon_sym_false] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_RBRACK] = ACTIONS(3341), + [anon_sym_COLON] = ACTIONS(3341), + [anon_sym_DOT_DOT] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3343), + [anon_sym_STAR] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3341), + [anon_sym_PERCENT] = ACTIONS(3341), + [anon_sym_EQ_EQ] = ACTIONS(3341), + [anon_sym_BANG_EQ] = ACTIONS(3341), + [anon_sym_AMP_AMP] = ACTIONS(3341), + [anon_sym_PIPE_PIPE] = ACTIONS(3341), + [anon_sym_GT] = ACTIONS(3343), + [anon_sym_LT] = ACTIONS(3343), + [anon_sym_GT_EQ] = ACTIONS(3341), + [anon_sym_LT_EQ] = ACTIONS(3341), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_elseif] = ACTIONS(3341), + [anon_sym_else] = ACTIONS(3343), + [anon_sym_match] = ACTIONS(3343), + [anon_sym_EQ_GT] = ACTIONS(3341), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_asyncfor] = ACTIONS(3341), + [anon_sym_transform] = ACTIONS(3343), + [anon_sym_filter] = ACTIONS(3343), + [anon_sym_find] = ACTIONS(3343), + [anon_sym_remove] = ACTIONS(3343), + [anon_sym_reduce] = ACTIONS(3343), + [anon_sym_select] = ACTIONS(3343), + [anon_sym_insert] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_PIPE] = ACTIONS(3343), + [anon_sym_table] = ACTIONS(3343), + [anon_sym_assert] = ACTIONS(3343), + [anon_sym_assert_equal] = ACTIONS(3343), + [anon_sym_download] = ACTIONS(3343), + [anon_sym_help] = ACTIONS(3343), + [anon_sym_length] = ACTIONS(3343), + [anon_sym_output] = ACTIONS(3343), + [anon_sym_output_error] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3343), + [anon_sym_append] = ACTIONS(3343), + [anon_sym_metadata] = ACTIONS(3343), + [anon_sym_move] = ACTIONS(3343), + [anon_sym_read] = ACTIONS(3343), + [anon_sym_workdir] = ACTIONS(3343), + [anon_sym_write] = ACTIONS(3343), + [anon_sym_from_json] = ACTIONS(3343), + [anon_sym_to_json] = ACTIONS(3343), + [anon_sym_to_string] = ACTIONS(3343), + [anon_sym_to_float] = ACTIONS(3343), + [anon_sym_bash] = ACTIONS(3343), + [anon_sym_fish] = ACTIONS(3343), + [anon_sym_raw] = ACTIONS(3343), + [anon_sym_sh] = ACTIONS(3343), + [anon_sym_zsh] = ACTIONS(3343), + [anon_sym_random] = ACTIONS(3343), + [anon_sym_random_boolean] = ACTIONS(3343), + [anon_sym_random_float] = ACTIONS(3343), + [anon_sym_random_integer] = ACTIONS(3343), + [anon_sym_columns] = ACTIONS(3343), + [anon_sym_rows] = ACTIONS(3343), + [anon_sym_reverse] = ACTIONS(3343), + }, + [807] = { + [ts_builtin_sym_end] = ACTIONS(3432), + [sym_identifier] = ACTIONS(3434), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3432), + [anon_sym_RBRACE] = ACTIONS(3432), + [anon_sym_SEMI] = ACTIONS(3432), + [anon_sym_LPAREN] = ACTIONS(3432), + [anon_sym_RPAREN] = ACTIONS(3432), + [anon_sym_COMMA] = ACTIONS(3432), + [sym_integer] = ACTIONS(3434), + [sym_float] = ACTIONS(3432), + [sym_string] = ACTIONS(3432), + [anon_sym_true] = ACTIONS(3434), + [anon_sym_false] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3432), + [anon_sym_RBRACK] = ACTIONS(3432), + [anon_sym_COLON] = ACTIONS(3432), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_PLUS] = ACTIONS(3432), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_STAR] = ACTIONS(3432), + [anon_sym_SLASH] = ACTIONS(3432), + [anon_sym_PERCENT] = ACTIONS(3432), + [anon_sym_EQ_EQ] = ACTIONS(3432), + [anon_sym_BANG_EQ] = ACTIONS(3432), + [anon_sym_AMP_AMP] = ACTIONS(3432), + [anon_sym_PIPE_PIPE] = ACTIONS(3432), + [anon_sym_GT] = ACTIONS(3434), + [anon_sym_LT] = ACTIONS(3434), + [anon_sym_GT_EQ] = ACTIONS(3432), + [anon_sym_LT_EQ] = ACTIONS(3432), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_elseif] = ACTIONS(3432), + [anon_sym_else] = ACTIONS(3434), + [anon_sym_match] = ACTIONS(3434), + [anon_sym_EQ_GT] = ACTIONS(3432), + [anon_sym_while] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_asyncfor] = ACTIONS(3432), + [anon_sym_transform] = ACTIONS(3434), + [anon_sym_filter] = ACTIONS(3434), + [anon_sym_find] = ACTIONS(3434), + [anon_sym_remove] = ACTIONS(3434), + [anon_sym_reduce] = ACTIONS(3434), + [anon_sym_select] = ACTIONS(3434), + [anon_sym_insert] = ACTIONS(3434), + [anon_sym_async] = ACTIONS(3434), + [anon_sym_PIPE] = ACTIONS(3434), + [anon_sym_table] = ACTIONS(3434), + [anon_sym_assert] = ACTIONS(3434), + [anon_sym_assert_equal] = ACTIONS(3434), + [anon_sym_download] = ACTIONS(3434), + [anon_sym_help] = ACTIONS(3434), + [anon_sym_length] = ACTIONS(3434), + [anon_sym_output] = ACTIONS(3434), + [anon_sym_output_error] = ACTIONS(3434), + [anon_sym_type] = ACTIONS(3434), + [anon_sym_append] = ACTIONS(3434), + [anon_sym_metadata] = ACTIONS(3434), + [anon_sym_move] = ACTIONS(3434), + [anon_sym_read] = ACTIONS(3434), + [anon_sym_workdir] = ACTIONS(3434), + [anon_sym_write] = ACTIONS(3434), + [anon_sym_from_json] = ACTIONS(3434), + [anon_sym_to_json] = ACTIONS(3434), + [anon_sym_to_string] = ACTIONS(3434), + [anon_sym_to_float] = ACTIONS(3434), + [anon_sym_bash] = ACTIONS(3434), + [anon_sym_fish] = ACTIONS(3434), + [anon_sym_raw] = ACTIONS(3434), + [anon_sym_sh] = ACTIONS(3434), + [anon_sym_zsh] = ACTIONS(3434), + [anon_sym_random] = ACTIONS(3434), + [anon_sym_random_boolean] = ACTIONS(3434), + [anon_sym_random_float] = ACTIONS(3434), + [anon_sym_random_integer] = ACTIONS(3434), + [anon_sym_columns] = ACTIONS(3434), + [anon_sym_rows] = ACTIONS(3434), + [anon_sym_reverse] = ACTIONS(3434), + }, + [808] = { + [ts_builtin_sym_end] = ACTIONS(3296), + [sym_identifier] = ACTIONS(3298), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3296), + [sym_integer] = ACTIONS(3298), + [sym_float] = ACTIONS(3296), + [sym_string] = ACTIONS(3296), + [anon_sym_true] = ACTIONS(3298), + [anon_sym_false] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3296), + [anon_sym_LT_EQ] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_elseif] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3298), + [anon_sym_match] = ACTIONS(3298), + [anon_sym_EQ_GT] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_asyncfor] = ACTIONS(3296), + [anon_sym_transform] = ACTIONS(3298), + [anon_sym_filter] = ACTIONS(3298), + [anon_sym_find] = ACTIONS(3298), + [anon_sym_remove] = ACTIONS(3298), + [anon_sym_reduce] = ACTIONS(3298), + [anon_sym_select] = ACTIONS(3298), + [anon_sym_insert] = ACTIONS(3298), + [anon_sym_async] = ACTIONS(3298), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_table] = ACTIONS(3298), + [anon_sym_assert] = ACTIONS(3298), + [anon_sym_assert_equal] = ACTIONS(3298), + [anon_sym_download] = ACTIONS(3298), + [anon_sym_help] = ACTIONS(3298), + [anon_sym_length] = ACTIONS(3298), + [anon_sym_output] = ACTIONS(3298), + [anon_sym_output_error] = ACTIONS(3298), + [anon_sym_type] = ACTIONS(3298), + [anon_sym_append] = ACTIONS(3298), + [anon_sym_metadata] = ACTIONS(3298), + [anon_sym_move] = ACTIONS(3298), + [anon_sym_read] = ACTIONS(3298), + [anon_sym_workdir] = ACTIONS(3298), + [anon_sym_write] = ACTIONS(3298), + [anon_sym_from_json] = ACTIONS(3298), + [anon_sym_to_json] = ACTIONS(3298), + [anon_sym_to_string] = ACTIONS(3298), + [anon_sym_to_float] = ACTIONS(3298), + [anon_sym_bash] = ACTIONS(3298), + [anon_sym_fish] = ACTIONS(3298), + [anon_sym_raw] = ACTIONS(3298), + [anon_sym_sh] = ACTIONS(3298), + [anon_sym_zsh] = ACTIONS(3298), + [anon_sym_random] = ACTIONS(3298), + [anon_sym_random_boolean] = ACTIONS(3298), + [anon_sym_random_float] = ACTIONS(3298), + [anon_sym_random_integer] = ACTIONS(3298), + [anon_sym_columns] = ACTIONS(3298), + [anon_sym_rows] = ACTIONS(3298), + [anon_sym_reverse] = ACTIONS(3298), + }, + [809] = { + [ts_builtin_sym_end] = ACTIONS(3367), + [sym_identifier] = ACTIONS(3369), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_RPAREN] = ACTIONS(3367), + [anon_sym_COMMA] = ACTIONS(3367), + [sym_integer] = ACTIONS(3369), + [sym_float] = ACTIONS(3367), + [sym_string] = ACTIONS(3367), + [anon_sym_true] = ACTIONS(3369), + [anon_sym_false] = ACTIONS(3369), + [anon_sym_LBRACK] = ACTIONS(3367), + [anon_sym_RBRACK] = ACTIONS(3367), + [anon_sym_COLON] = ACTIONS(3367), + [anon_sym_DOT_DOT] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(3367), + [anon_sym_PERCENT] = ACTIONS(3367), + [anon_sym_EQ_EQ] = ACTIONS(3367), + [anon_sym_BANG_EQ] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_PIPE_PIPE] = ACTIONS(3367), + [anon_sym_GT] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3369), + [anon_sym_GT_EQ] = ACTIONS(3367), + [anon_sym_LT_EQ] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3369), + [anon_sym_elseif] = ACTIONS(3367), + [anon_sym_else] = ACTIONS(3369), + [anon_sym_match] = ACTIONS(3369), + [anon_sym_EQ_GT] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3369), + [anon_sym_for] = ACTIONS(3369), + [anon_sym_asyncfor] = ACTIONS(3367), + [anon_sym_transform] = ACTIONS(3369), + [anon_sym_filter] = ACTIONS(3369), + [anon_sym_find] = ACTIONS(3369), + [anon_sym_remove] = ACTIONS(3369), + [anon_sym_reduce] = ACTIONS(3369), + [anon_sym_select] = ACTIONS(3369), + [anon_sym_insert] = ACTIONS(3369), + [anon_sym_async] = ACTIONS(3369), + [anon_sym_PIPE] = ACTIONS(3369), + [anon_sym_table] = ACTIONS(3369), + [anon_sym_assert] = ACTIONS(3369), + [anon_sym_assert_equal] = ACTIONS(3369), + [anon_sym_download] = ACTIONS(3369), + [anon_sym_help] = ACTIONS(3369), + [anon_sym_length] = ACTIONS(3369), + [anon_sym_output] = ACTIONS(3369), + [anon_sym_output_error] = ACTIONS(3369), + [anon_sym_type] = ACTIONS(3369), + [anon_sym_append] = ACTIONS(3369), + [anon_sym_metadata] = ACTIONS(3369), + [anon_sym_move] = ACTIONS(3369), + [anon_sym_read] = ACTIONS(3369), + [anon_sym_workdir] = ACTIONS(3369), + [anon_sym_write] = ACTIONS(3369), + [anon_sym_from_json] = ACTIONS(3369), + [anon_sym_to_json] = ACTIONS(3369), + [anon_sym_to_string] = ACTIONS(3369), + [anon_sym_to_float] = ACTIONS(3369), + [anon_sym_bash] = ACTIONS(3369), + [anon_sym_fish] = ACTIONS(3369), + [anon_sym_raw] = ACTIONS(3369), + [anon_sym_sh] = ACTIONS(3369), + [anon_sym_zsh] = ACTIONS(3369), + [anon_sym_random] = ACTIONS(3369), + [anon_sym_random_boolean] = ACTIONS(3369), + [anon_sym_random_float] = ACTIONS(3369), + [anon_sym_random_integer] = ACTIONS(3369), + [anon_sym_columns] = ACTIONS(3369), + [anon_sym_rows] = ACTIONS(3369), + [anon_sym_reverse] = ACTIONS(3369), + }, + [810] = { + [ts_builtin_sym_end] = ACTIONS(3379), + [sym_identifier] = ACTIONS(3381), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3379), + [anon_sym_RBRACE] = ACTIONS(3379), + [anon_sym_SEMI] = ACTIONS(3379), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3379), + [anon_sym_COMMA] = ACTIONS(3379), + [sym_integer] = ACTIONS(3381), + [sym_float] = ACTIONS(3379), + [sym_string] = ACTIONS(3379), + [anon_sym_true] = ACTIONS(3381), + [anon_sym_false] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3379), + [anon_sym_RBRACK] = ACTIONS(3379), + [anon_sym_COLON] = ACTIONS(3379), + [anon_sym_DOT_DOT] = ACTIONS(3379), + [anon_sym_PLUS] = ACTIONS(3379), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_SLASH] = ACTIONS(3379), + [anon_sym_PERCENT] = ACTIONS(3379), + [anon_sym_EQ_EQ] = ACTIONS(3379), + [anon_sym_BANG_EQ] = ACTIONS(3379), + [anon_sym_AMP_AMP] = ACTIONS(3379), + [anon_sym_PIPE_PIPE] = ACTIONS(3379), + [anon_sym_GT] = ACTIONS(3381), + [anon_sym_LT] = ACTIONS(3381), + [anon_sym_GT_EQ] = ACTIONS(3379), + [anon_sym_LT_EQ] = ACTIONS(3379), + [anon_sym_if] = ACTIONS(3381), + [anon_sym_elseif] = ACTIONS(3379), + [anon_sym_else] = ACTIONS(3381), + [anon_sym_match] = ACTIONS(3381), + [anon_sym_EQ_GT] = ACTIONS(3379), + [anon_sym_while] = ACTIONS(3381), + [anon_sym_for] = ACTIONS(3381), + [anon_sym_asyncfor] = ACTIONS(3379), + [anon_sym_transform] = ACTIONS(3381), + [anon_sym_filter] = ACTIONS(3381), + [anon_sym_find] = ACTIONS(3381), + [anon_sym_remove] = ACTIONS(3381), + [anon_sym_reduce] = ACTIONS(3381), + [anon_sym_select] = ACTIONS(3381), + [anon_sym_insert] = ACTIONS(3381), + [anon_sym_async] = ACTIONS(3381), + [anon_sym_PIPE] = ACTIONS(3381), + [anon_sym_table] = ACTIONS(3381), + [anon_sym_assert] = ACTIONS(3381), + [anon_sym_assert_equal] = ACTIONS(3381), + [anon_sym_download] = ACTIONS(3381), + [anon_sym_help] = ACTIONS(3381), + [anon_sym_length] = ACTIONS(3381), + [anon_sym_output] = ACTIONS(3381), + [anon_sym_output_error] = ACTIONS(3381), + [anon_sym_type] = ACTIONS(3381), + [anon_sym_append] = ACTIONS(3381), + [anon_sym_metadata] = ACTIONS(3381), + [anon_sym_move] = ACTIONS(3381), + [anon_sym_read] = ACTIONS(3381), + [anon_sym_workdir] = ACTIONS(3381), + [anon_sym_write] = ACTIONS(3381), + [anon_sym_from_json] = ACTIONS(3381), + [anon_sym_to_json] = ACTIONS(3381), + [anon_sym_to_string] = ACTIONS(3381), + [anon_sym_to_float] = ACTIONS(3381), + [anon_sym_bash] = ACTIONS(3381), + [anon_sym_fish] = ACTIONS(3381), + [anon_sym_raw] = ACTIONS(3381), + [anon_sym_sh] = ACTIONS(3381), + [anon_sym_zsh] = ACTIONS(3381), + [anon_sym_random] = ACTIONS(3381), + [anon_sym_random_boolean] = ACTIONS(3381), + [anon_sym_random_float] = ACTIONS(3381), + [anon_sym_random_integer] = ACTIONS(3381), + [anon_sym_columns] = ACTIONS(3381), + [anon_sym_rows] = ACTIONS(3381), + [anon_sym_reverse] = ACTIONS(3381), + }, + [811] = { + [ts_builtin_sym_end] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3395), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_RBRACE] = ACTIONS(3393), + [anon_sym_SEMI] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_RPAREN] = ACTIONS(3393), + [anon_sym_COMMA] = ACTIONS(3393), + [sym_integer] = ACTIONS(3395), + [sym_float] = ACTIONS(3393), + [sym_string] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_RBRACK] = ACTIONS(3393), + [anon_sym_COLON] = ACTIONS(3393), + [anon_sym_DOT_DOT] = ACTIONS(3393), + [anon_sym_PLUS] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_STAR] = ACTIONS(3393), + [anon_sym_SLASH] = ACTIONS(3393), + [anon_sym_PERCENT] = ACTIONS(3393), + [anon_sym_EQ_EQ] = ACTIONS(3393), + [anon_sym_BANG_EQ] = ACTIONS(3393), + [anon_sym_AMP_AMP] = ACTIONS(3393), + [anon_sym_PIPE_PIPE] = ACTIONS(3393), + [anon_sym_GT] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_GT_EQ] = ACTIONS(3393), + [anon_sym_LT_EQ] = ACTIONS(3393), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_elseif] = ACTIONS(3393), + [anon_sym_else] = ACTIONS(3395), + [anon_sym_match] = ACTIONS(3395), + [anon_sym_EQ_GT] = ACTIONS(3393), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_asyncfor] = ACTIONS(3393), + [anon_sym_transform] = ACTIONS(3395), + [anon_sym_filter] = ACTIONS(3395), + [anon_sym_find] = ACTIONS(3395), + [anon_sym_remove] = ACTIONS(3395), + [anon_sym_reduce] = ACTIONS(3395), + [anon_sym_select] = ACTIONS(3395), + [anon_sym_insert] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_PIPE] = ACTIONS(3395), + [anon_sym_table] = ACTIONS(3395), + [anon_sym_assert] = ACTIONS(3395), + [anon_sym_assert_equal] = ACTIONS(3395), + [anon_sym_download] = ACTIONS(3395), + [anon_sym_help] = ACTIONS(3395), + [anon_sym_length] = ACTIONS(3395), + [anon_sym_output] = ACTIONS(3395), + [anon_sym_output_error] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_append] = ACTIONS(3395), + [anon_sym_metadata] = ACTIONS(3395), + [anon_sym_move] = ACTIONS(3395), + [anon_sym_read] = ACTIONS(3395), + [anon_sym_workdir] = ACTIONS(3395), + [anon_sym_write] = ACTIONS(3395), + [anon_sym_from_json] = ACTIONS(3395), + [anon_sym_to_json] = ACTIONS(3395), + [anon_sym_to_string] = ACTIONS(3395), + [anon_sym_to_float] = ACTIONS(3395), + [anon_sym_bash] = ACTIONS(3395), + [anon_sym_fish] = ACTIONS(3395), + [anon_sym_raw] = ACTIONS(3395), + [anon_sym_sh] = ACTIONS(3395), + [anon_sym_zsh] = ACTIONS(3395), + [anon_sym_random] = ACTIONS(3395), + [anon_sym_random_boolean] = ACTIONS(3395), + [anon_sym_random_float] = ACTIONS(3395), + [anon_sym_random_integer] = ACTIONS(3395), + [anon_sym_columns] = ACTIONS(3395), + [anon_sym_rows] = ACTIONS(3395), + [anon_sym_reverse] = ACTIONS(3395), + }, + [812] = { + [ts_builtin_sym_end] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3417), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3415), + [anon_sym_RBRACE] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_LPAREN] = ACTIONS(3415), + [anon_sym_RPAREN] = ACTIONS(3415), + [anon_sym_COMMA] = ACTIONS(3415), + [sym_integer] = ACTIONS(3417), + [sym_float] = ACTIONS(3415), + [sym_string] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_RBRACK] = ACTIONS(3415), + [anon_sym_COLON] = ACTIONS(3415), + [anon_sym_DOT_DOT] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(3415), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_STAR] = ACTIONS(3415), + [anon_sym_SLASH] = ACTIONS(3415), + [anon_sym_PERCENT] = ACTIONS(3415), + [anon_sym_EQ_EQ] = ACTIONS(3415), + [anon_sym_BANG_EQ] = ACTIONS(3415), + [anon_sym_AMP_AMP] = ACTIONS(3415), + [anon_sym_PIPE_PIPE] = ACTIONS(3415), + [anon_sym_GT] = ACTIONS(3417), + [anon_sym_LT] = ACTIONS(3417), + [anon_sym_GT_EQ] = ACTIONS(3415), + [anon_sym_LT_EQ] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_elseif] = ACTIONS(3415), + [anon_sym_else] = ACTIONS(3417), + [anon_sym_match] = ACTIONS(3417), + [anon_sym_EQ_GT] = ACTIONS(3415), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_asyncfor] = ACTIONS(3415), + [anon_sym_transform] = ACTIONS(3417), + [anon_sym_filter] = ACTIONS(3417), + [anon_sym_find] = ACTIONS(3417), + [anon_sym_remove] = ACTIONS(3417), + [anon_sym_reduce] = ACTIONS(3417), + [anon_sym_select] = ACTIONS(3417), + [anon_sym_insert] = ACTIONS(3417), + [anon_sym_async] = ACTIONS(3417), + [anon_sym_PIPE] = ACTIONS(3417), + [anon_sym_table] = ACTIONS(3417), + [anon_sym_assert] = ACTIONS(3417), + [anon_sym_assert_equal] = ACTIONS(3417), + [anon_sym_download] = ACTIONS(3417), + [anon_sym_help] = ACTIONS(3417), + [anon_sym_length] = ACTIONS(3417), + [anon_sym_output] = ACTIONS(3417), + [anon_sym_output_error] = ACTIONS(3417), + [anon_sym_type] = ACTIONS(3417), + [anon_sym_append] = ACTIONS(3417), + [anon_sym_metadata] = ACTIONS(3417), + [anon_sym_move] = ACTIONS(3417), + [anon_sym_read] = ACTIONS(3417), + [anon_sym_workdir] = ACTIONS(3417), + [anon_sym_write] = ACTIONS(3417), + [anon_sym_from_json] = ACTIONS(3417), + [anon_sym_to_json] = ACTIONS(3417), + [anon_sym_to_string] = ACTIONS(3417), + [anon_sym_to_float] = ACTIONS(3417), + [anon_sym_bash] = ACTIONS(3417), + [anon_sym_fish] = ACTIONS(3417), + [anon_sym_raw] = ACTIONS(3417), + [anon_sym_sh] = ACTIONS(3417), + [anon_sym_zsh] = ACTIONS(3417), + [anon_sym_random] = ACTIONS(3417), + [anon_sym_random_boolean] = ACTIONS(3417), + [anon_sym_random_float] = ACTIONS(3417), + [anon_sym_random_integer] = ACTIONS(3417), + [anon_sym_columns] = ACTIONS(3417), + [anon_sym_rows] = ACTIONS(3417), + [anon_sym_reverse] = ACTIONS(3417), + }, + [813] = { + [ts_builtin_sym_end] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3421), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_RBRACE] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_RPAREN] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3419), + [sym_integer] = ACTIONS(3421), + [sym_float] = ACTIONS(3419), + [sym_string] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_RBRACK] = ACTIONS(3419), + [anon_sym_COLON] = ACTIONS(3419), + [anon_sym_DOT_DOT] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3421), + [anon_sym_STAR] = ACTIONS(3419), + [anon_sym_SLASH] = ACTIONS(3419), + [anon_sym_PERCENT] = ACTIONS(3419), + [anon_sym_EQ_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3419), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_LT_EQ] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3421), + [anon_sym_elseif] = ACTIONS(3419), + [anon_sym_else] = ACTIONS(3421), + [anon_sym_match] = ACTIONS(3421), + [anon_sym_EQ_GT] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3421), + [anon_sym_for] = ACTIONS(3421), + [anon_sym_asyncfor] = ACTIONS(3419), + [anon_sym_transform] = ACTIONS(3421), + [anon_sym_filter] = ACTIONS(3421), + [anon_sym_find] = ACTIONS(3421), + [anon_sym_remove] = ACTIONS(3421), + [anon_sym_reduce] = ACTIONS(3421), + [anon_sym_select] = ACTIONS(3421), + [anon_sym_insert] = ACTIONS(3421), + [anon_sym_async] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(3421), + [anon_sym_table] = ACTIONS(3421), + [anon_sym_assert] = ACTIONS(3421), + [anon_sym_assert_equal] = ACTIONS(3421), + [anon_sym_download] = ACTIONS(3421), + [anon_sym_help] = ACTIONS(3421), + [anon_sym_length] = ACTIONS(3421), + [anon_sym_output] = ACTIONS(3421), + [anon_sym_output_error] = ACTIONS(3421), + [anon_sym_type] = ACTIONS(3421), + [anon_sym_append] = ACTIONS(3421), + [anon_sym_metadata] = ACTIONS(3421), + [anon_sym_move] = ACTIONS(3421), + [anon_sym_read] = ACTIONS(3421), + [anon_sym_workdir] = ACTIONS(3421), + [anon_sym_write] = ACTIONS(3421), + [anon_sym_from_json] = ACTIONS(3421), + [anon_sym_to_json] = ACTIONS(3421), + [anon_sym_to_string] = ACTIONS(3421), + [anon_sym_to_float] = ACTIONS(3421), + [anon_sym_bash] = ACTIONS(3421), + [anon_sym_fish] = ACTIONS(3421), + [anon_sym_raw] = ACTIONS(3421), + [anon_sym_sh] = ACTIONS(3421), + [anon_sym_zsh] = ACTIONS(3421), + [anon_sym_random] = ACTIONS(3421), + [anon_sym_random_boolean] = ACTIONS(3421), + [anon_sym_random_float] = ACTIONS(3421), + [anon_sym_random_integer] = ACTIONS(3421), + [anon_sym_columns] = ACTIONS(3421), + [anon_sym_rows] = ACTIONS(3421), + [anon_sym_reverse] = ACTIONS(3421), + }, + [814] = { + [sym_math_operator] = STATE(1270), + [sym_logic_operator] = STATE(1260), + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3283), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_RPAREN] = ACTIONS(3281), + [sym_integer] = ACTIONS(3283), + [sym_float] = ACTIONS(3281), + [sym_string] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3281), + [anon_sym_DASH_EQ] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_EQ_GT] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_asyncfor] = ACTIONS(3281), + [anon_sym_transform] = ACTIONS(3283), + [anon_sym_filter] = ACTIONS(3283), + [anon_sym_find] = ACTIONS(3283), + [anon_sym_remove] = ACTIONS(3283), + [anon_sym_reduce] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_insert] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_table] = ACTIONS(3283), + [anon_sym_assert] = ACTIONS(3283), + [anon_sym_assert_equal] = ACTIONS(3283), + [anon_sym_download] = ACTIONS(3283), + [anon_sym_help] = ACTIONS(3283), + [anon_sym_length] = ACTIONS(3283), + [anon_sym_output] = ACTIONS(3283), + [anon_sym_output_error] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_append] = ACTIONS(3283), + [anon_sym_metadata] = ACTIONS(3283), + [anon_sym_move] = ACTIONS(3283), + [anon_sym_read] = ACTIONS(3283), + [anon_sym_workdir] = ACTIONS(3283), + [anon_sym_write] = ACTIONS(3283), + [anon_sym_from_json] = ACTIONS(3283), + [anon_sym_to_json] = ACTIONS(3283), + [anon_sym_to_string] = ACTIONS(3283), + [anon_sym_to_float] = ACTIONS(3283), + [anon_sym_bash] = ACTIONS(3283), + [anon_sym_fish] = ACTIONS(3283), + [anon_sym_raw] = ACTIONS(3283), + [anon_sym_sh] = ACTIONS(3283), + [anon_sym_zsh] = ACTIONS(3283), + [anon_sym_random] = ACTIONS(3283), + [anon_sym_random_boolean] = ACTIONS(3283), + [anon_sym_random_float] = ACTIONS(3283), + [anon_sym_random_integer] = ACTIONS(3283), + [anon_sym_columns] = ACTIONS(3283), + [anon_sym_rows] = ACTIONS(3283), + [anon_sym_reverse] = ACTIONS(3283), + }, + [815] = { + [sym_math_operator] = STATE(1242), + [sym_logic_operator] = STATE(1243), + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3283), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_RPAREN] = ACTIONS(3281), + [sym_integer] = ACTIONS(3283), + [sym_float] = ACTIONS(3281), + [sym_string] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_COLON] = ACTIONS(841), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_elseif] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_EQ_GT] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_asyncfor] = ACTIONS(3281), + [anon_sym_transform] = ACTIONS(3283), + [anon_sym_filter] = ACTIONS(3283), + [anon_sym_find] = ACTIONS(3283), + [anon_sym_remove] = ACTIONS(3283), + [anon_sym_reduce] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_insert] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_table] = ACTIONS(3283), + [anon_sym_assert] = ACTIONS(3283), + [anon_sym_assert_equal] = ACTIONS(3283), + [anon_sym_download] = ACTIONS(3283), + [anon_sym_help] = ACTIONS(3283), + [anon_sym_length] = ACTIONS(3283), + [anon_sym_output] = ACTIONS(3283), + [anon_sym_output_error] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_append] = ACTIONS(3283), + [anon_sym_metadata] = ACTIONS(3283), + [anon_sym_move] = ACTIONS(3283), + [anon_sym_read] = ACTIONS(3283), + [anon_sym_workdir] = ACTIONS(3283), + [anon_sym_write] = ACTIONS(3283), + [anon_sym_from_json] = ACTIONS(3283), + [anon_sym_to_json] = ACTIONS(3283), + [anon_sym_to_string] = ACTIONS(3283), + [anon_sym_to_float] = ACTIONS(3283), + [anon_sym_bash] = ACTIONS(3283), + [anon_sym_fish] = ACTIONS(3283), + [anon_sym_raw] = ACTIONS(3283), + [anon_sym_sh] = ACTIONS(3283), + [anon_sym_zsh] = ACTIONS(3283), + [anon_sym_random] = ACTIONS(3283), + [anon_sym_random_boolean] = ACTIONS(3283), + [anon_sym_random_float] = ACTIONS(3283), + [anon_sym_random_integer] = ACTIONS(3283), + [anon_sym_columns] = ACTIONS(3283), + [anon_sym_rows] = ACTIONS(3283), + [anon_sym_reverse] = ACTIONS(3283), + }, + [816] = { + [ts_builtin_sym_end] = ACTIONS(3307), + [sym_identifier] = ACTIONS(3309), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3307), + [anon_sym_RBRACE] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_RPAREN] = ACTIONS(3307), + [anon_sym_COMMA] = ACTIONS(3307), + [sym_integer] = ACTIONS(3309), + [sym_float] = ACTIONS(3307), + [sym_string] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(3309), + [anon_sym_false] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3307), + [anon_sym_RBRACK] = ACTIONS(3307), + [anon_sym_COLON] = ACTIONS(3307), + [anon_sym_DOT_DOT] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3307), + [anon_sym_SLASH] = ACTIONS(3307), + [anon_sym_PERCENT] = ACTIONS(3307), + [anon_sym_EQ_EQ] = ACTIONS(3307), + [anon_sym_BANG_EQ] = ACTIONS(3307), + [anon_sym_AMP_AMP] = ACTIONS(3307), + [anon_sym_PIPE_PIPE] = ACTIONS(3307), + [anon_sym_GT] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_GT_EQ] = ACTIONS(3307), + [anon_sym_LT_EQ] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_elseif] = ACTIONS(3307), + [anon_sym_else] = ACTIONS(3309), + [anon_sym_match] = ACTIONS(3309), + [anon_sym_EQ_GT] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_asyncfor] = ACTIONS(3307), + [anon_sym_transform] = ACTIONS(3309), + [anon_sym_filter] = ACTIONS(3309), + [anon_sym_find] = ACTIONS(3309), + [anon_sym_remove] = ACTIONS(3309), + [anon_sym_reduce] = ACTIONS(3309), + [anon_sym_select] = ACTIONS(3309), + [anon_sym_insert] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_table] = ACTIONS(3309), + [anon_sym_assert] = ACTIONS(3309), + [anon_sym_assert_equal] = ACTIONS(3309), + [anon_sym_download] = ACTIONS(3309), + [anon_sym_help] = ACTIONS(3309), + [anon_sym_length] = ACTIONS(3309), + [anon_sym_output] = ACTIONS(3309), + [anon_sym_output_error] = ACTIONS(3309), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_append] = ACTIONS(3309), + [anon_sym_metadata] = ACTIONS(3309), + [anon_sym_move] = ACTIONS(3309), + [anon_sym_read] = ACTIONS(3309), + [anon_sym_workdir] = ACTIONS(3309), + [anon_sym_write] = ACTIONS(3309), + [anon_sym_from_json] = ACTIONS(3309), + [anon_sym_to_json] = ACTIONS(3309), + [anon_sym_to_string] = ACTIONS(3309), + [anon_sym_to_float] = ACTIONS(3309), + [anon_sym_bash] = ACTIONS(3309), + [anon_sym_fish] = ACTIONS(3309), + [anon_sym_raw] = ACTIONS(3309), + [anon_sym_sh] = ACTIONS(3309), + [anon_sym_zsh] = ACTIONS(3309), + [anon_sym_random] = ACTIONS(3309), + [anon_sym_random_boolean] = ACTIONS(3309), + [anon_sym_random_float] = ACTIONS(3309), + [anon_sym_random_integer] = ACTIONS(3309), + [anon_sym_columns] = ACTIONS(3309), + [anon_sym_rows] = ACTIONS(3309), + [anon_sym_reverse] = ACTIONS(3309), + }, + [817] = { + [sym_math_operator] = STATE(1472), + [sym_logic_operator] = STATE(1480), + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3521), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_COLON] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_elseif] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [818] = { + [sym_math_operator] = STATE(1472), + [sym_logic_operator] = STATE(1480), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3242), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [sym_integer] = ACTIONS(3242), + [sym_float] = ACTIONS(3240), + [sym_string] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_elseif] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_asyncfor] = ACTIONS(3240), + [anon_sym_transform] = ACTIONS(3242), + [anon_sym_filter] = ACTIONS(3242), + [anon_sym_find] = ACTIONS(3242), + [anon_sym_remove] = ACTIONS(3242), + [anon_sym_reduce] = ACTIONS(3242), + [anon_sym_select] = ACTIONS(3242), + [anon_sym_insert] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_table] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_assert_equal] = ACTIONS(3242), + [anon_sym_download] = ACTIONS(3242), + [anon_sym_help] = ACTIONS(3242), + [anon_sym_length] = ACTIONS(3242), + [anon_sym_output] = ACTIONS(3242), + [anon_sym_output_error] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_append] = ACTIONS(3242), + [anon_sym_metadata] = ACTIONS(3242), + [anon_sym_move] = ACTIONS(3242), + [anon_sym_read] = ACTIONS(3242), + [anon_sym_workdir] = ACTIONS(3242), + [anon_sym_write] = ACTIONS(3242), + [anon_sym_from_json] = ACTIONS(3242), + [anon_sym_to_json] = ACTIONS(3242), + [anon_sym_to_string] = ACTIONS(3242), + [anon_sym_to_float] = ACTIONS(3242), + [anon_sym_bash] = ACTIONS(3242), + [anon_sym_fish] = ACTIONS(3242), + [anon_sym_raw] = ACTIONS(3242), + [anon_sym_sh] = ACTIONS(3242), + [anon_sym_zsh] = ACTIONS(3242), + [anon_sym_random] = ACTIONS(3242), + [anon_sym_random_boolean] = ACTIONS(3242), + [anon_sym_random_float] = ACTIONS(3242), + [anon_sym_random_integer] = ACTIONS(3242), + [anon_sym_columns] = ACTIONS(3242), + [anon_sym_rows] = ACTIONS(3242), + [anon_sym_reverse] = ACTIONS(3242), + }, + [819] = { + [sym_expression] = STATE(1591), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(821), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_COMMA] = ACTIONS(2449), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_elseif] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_asyncfor] = ACTIONS(2449), + [anon_sym_transform] = ACTIONS(2465), + [anon_sym_filter] = ACTIONS(2465), + [anon_sym_find] = ACTIONS(2465), + [anon_sym_remove] = ACTIONS(2465), + [anon_sym_reduce] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_insert] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [820] = { + [sym_expression] = STATE(1624), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(820), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2489), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2495), + [sym_string] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_elseif] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_asyncfor] = ACTIONS(2481), + [anon_sym_transform] = ACTIONS(2504), + [anon_sym_filter] = ACTIONS(2504), + [anon_sym_find] = ACTIONS(2504), + [anon_sym_remove] = ACTIONS(2504), + [anon_sym_reduce] = ACTIONS(2504), + [anon_sym_select] = ACTIONS(2504), + [anon_sym_insert] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(3616), + [anon_sym_table] = ACTIONS(2512), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_assert_equal] = ACTIONS(2515), + [anon_sym_download] = ACTIONS(2515), + [anon_sym_help] = ACTIONS(2515), + [anon_sym_length] = ACTIONS(2515), + [anon_sym_output] = ACTIONS(2515), + [anon_sym_output_error] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_append] = ACTIONS(2515), + [anon_sym_metadata] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_read] = ACTIONS(2515), + [anon_sym_workdir] = ACTIONS(2515), + [anon_sym_write] = ACTIONS(2515), + [anon_sym_from_json] = ACTIONS(2515), + [anon_sym_to_json] = ACTIONS(2515), + [anon_sym_to_string] = ACTIONS(2515), + [anon_sym_to_float] = ACTIONS(2515), + [anon_sym_bash] = ACTIONS(2515), + [anon_sym_fish] = ACTIONS(2515), + [anon_sym_raw] = ACTIONS(2515), + [anon_sym_sh] = ACTIONS(2515), + [anon_sym_zsh] = ACTIONS(2515), + [anon_sym_random] = ACTIONS(2515), + [anon_sym_random_boolean] = ACTIONS(2515), + [anon_sym_random_float] = ACTIONS(2515), + [anon_sym_random_integer] = ACTIONS(2515), + [anon_sym_columns] = ACTIONS(2515), + [anon_sym_rows] = ACTIONS(2515), + [anon_sym_reverse] = ACTIONS(2515), + }, + [821] = { + [sym_expression] = STATE(1591), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(821), + [sym_identifier] = ACTIONS(2483), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_COMMA] = ACTIONS(2481), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2495), + [sym_string] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_elseif] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_asyncfor] = ACTIONS(2481), + [anon_sym_transform] = ACTIONS(2504), + [anon_sym_filter] = ACTIONS(2504), + [anon_sym_find] = ACTIONS(2504), + [anon_sym_remove] = ACTIONS(2504), + [anon_sym_reduce] = ACTIONS(2504), + [anon_sym_select] = ACTIONS(2504), + [anon_sym_insert] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(3616), + [anon_sym_table] = ACTIONS(2512), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_assert_equal] = ACTIONS(2515), + [anon_sym_download] = ACTIONS(2515), + [anon_sym_help] = ACTIONS(2515), + [anon_sym_length] = ACTIONS(2515), + [anon_sym_output] = ACTIONS(2515), + [anon_sym_output_error] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_append] = ACTIONS(2515), + [anon_sym_metadata] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_read] = ACTIONS(2515), + [anon_sym_workdir] = ACTIONS(2515), + [anon_sym_write] = ACTIONS(2515), + [anon_sym_from_json] = ACTIONS(2515), + [anon_sym_to_json] = ACTIONS(2515), + [anon_sym_to_string] = ACTIONS(2515), + [anon_sym_to_float] = ACTIONS(2515), + [anon_sym_bash] = ACTIONS(2515), + [anon_sym_fish] = ACTIONS(2515), + [anon_sym_raw] = ACTIONS(2515), + [anon_sym_sh] = ACTIONS(2515), + [anon_sym_zsh] = ACTIONS(2515), + [anon_sym_random] = ACTIONS(2515), + [anon_sym_random_boolean] = ACTIONS(2515), + [anon_sym_random_float] = ACTIONS(2515), + [anon_sym_random_integer] = ACTIONS(2515), + [anon_sym_columns] = ACTIONS(2515), + [anon_sym_rows] = ACTIONS(2515), + [anon_sym_reverse] = ACTIONS(2515), + }, + [822] = { + [sym_assignment_operator] = STATE(543), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), + }, + [823] = { + [sym_math_operator] = STATE(1381), + [sym_logic_operator] = STATE(1380), + [ts_builtin_sym_end] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3264), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [sym_integer] = ACTIONS(3264), + [sym_float] = ACTIONS(3262), + [sym_string] = ACTIONS(3262), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_RBRACK] = ACTIONS(3262), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_match] = ACTIONS(3264), + [anon_sym_EQ_GT] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_asyncfor] = ACTIONS(3262), + [anon_sym_transform] = ACTIONS(3264), + [anon_sym_filter] = ACTIONS(3264), + [anon_sym_find] = ACTIONS(3264), + [anon_sym_remove] = ACTIONS(3264), + [anon_sym_reduce] = ACTIONS(3264), + [anon_sym_select] = ACTIONS(3264), + [anon_sym_insert] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_table] = ACTIONS(3264), + [anon_sym_assert] = ACTIONS(3264), + [anon_sym_assert_equal] = ACTIONS(3264), + [anon_sym_download] = ACTIONS(3264), + [anon_sym_help] = ACTIONS(3264), + [anon_sym_length] = ACTIONS(3264), + [anon_sym_output] = ACTIONS(3264), + [anon_sym_output_error] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_append] = ACTIONS(3264), + [anon_sym_metadata] = ACTIONS(3264), + [anon_sym_move] = ACTIONS(3264), + [anon_sym_read] = ACTIONS(3264), + [anon_sym_workdir] = ACTIONS(3264), + [anon_sym_write] = ACTIONS(3264), + [anon_sym_from_json] = ACTIONS(3264), + [anon_sym_to_json] = ACTIONS(3264), + [anon_sym_to_string] = ACTIONS(3264), + [anon_sym_to_float] = ACTIONS(3264), + [anon_sym_bash] = ACTIONS(3264), + [anon_sym_fish] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3264), + [anon_sym_sh] = ACTIONS(3264), + [anon_sym_zsh] = ACTIONS(3264), + [anon_sym_random] = ACTIONS(3264), + [anon_sym_random_boolean] = ACTIONS(3264), + [anon_sym_random_float] = ACTIONS(3264), + [anon_sym_random_integer] = ACTIONS(3264), + [anon_sym_columns] = ACTIONS(3264), + [anon_sym_rows] = ACTIONS(3264), + [anon_sym_reverse] = ACTIONS(3264), + }, + [824] = { + [sym_math_operator] = STATE(1381), + [sym_logic_operator] = STATE(1380), + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_RBRACK] = ACTIONS(3275), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [825] = { + [sym_else_if] = STATE(825), + [aux_sym_if_else_repeat1] = STATE(825), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_RPAREN] = ACTIONS(3268), + [sym_integer] = ACTIONS(3270), + [sym_float] = ACTIONS(3268), + [sym_string] = ACTIONS(3268), + [anon_sym_true] = ACTIONS(3270), + [anon_sym_false] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_PIPE_PIPE] = ACTIONS(3268), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT_EQ] = ACTIONS(3268), + [anon_sym_LT_EQ] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_elseif] = ACTIONS(3619), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_match] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_asyncfor] = ACTIONS(3268), + [anon_sym_transform] = ACTIONS(3270), + [anon_sym_filter] = ACTIONS(3270), + [anon_sym_find] = ACTIONS(3270), + [anon_sym_remove] = ACTIONS(3270), + [anon_sym_reduce] = ACTIONS(3270), + [anon_sym_select] = ACTIONS(3270), + [anon_sym_insert] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3270), + [anon_sym_table] = ACTIONS(3270), + [anon_sym_assert] = ACTIONS(3270), + [anon_sym_assert_equal] = ACTIONS(3270), + [anon_sym_download] = ACTIONS(3270), + [anon_sym_help] = ACTIONS(3270), + [anon_sym_length] = ACTIONS(3270), + [anon_sym_output] = ACTIONS(3270), + [anon_sym_output_error] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_append] = ACTIONS(3270), + [anon_sym_metadata] = ACTIONS(3270), + [anon_sym_move] = ACTIONS(3270), + [anon_sym_read] = ACTIONS(3270), + [anon_sym_workdir] = ACTIONS(3270), + [anon_sym_write] = ACTIONS(3270), + [anon_sym_from_json] = ACTIONS(3270), + [anon_sym_to_json] = ACTIONS(3270), + [anon_sym_to_string] = ACTIONS(3270), + [anon_sym_to_float] = ACTIONS(3270), + [anon_sym_bash] = ACTIONS(3270), + [anon_sym_fish] = ACTIONS(3270), + [anon_sym_raw] = ACTIONS(3270), + [anon_sym_sh] = ACTIONS(3270), + [anon_sym_zsh] = ACTIONS(3270), + [anon_sym_random] = ACTIONS(3270), + [anon_sym_random_boolean] = ACTIONS(3270), + [anon_sym_random_float] = ACTIONS(3270), + [anon_sym_random_integer] = ACTIONS(3270), + [anon_sym_columns] = ACTIONS(3270), + [anon_sym_rows] = ACTIONS(3270), + [anon_sym_reverse] = ACTIONS(3270), + }, + [826] = { + [sym_math_operator] = STATE(1472), + [sym_logic_operator] = STATE(1480), + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3283), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_RPAREN] = ACTIONS(3281), + [sym_integer] = ACTIONS(3283), + [sym_float] = ACTIONS(3281), + [sym_string] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_COLON] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_elseif] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_EQ_GT] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_asyncfor] = ACTIONS(3281), + [anon_sym_transform] = ACTIONS(3283), + [anon_sym_filter] = ACTIONS(3283), + [anon_sym_find] = ACTIONS(3283), + [anon_sym_remove] = ACTIONS(3283), + [anon_sym_reduce] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_insert] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_table] = ACTIONS(3283), + [anon_sym_assert] = ACTIONS(3283), + [anon_sym_assert_equal] = ACTIONS(3283), + [anon_sym_download] = ACTIONS(3283), + [anon_sym_help] = ACTIONS(3283), + [anon_sym_length] = ACTIONS(3283), + [anon_sym_output] = ACTIONS(3283), + [anon_sym_output_error] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_append] = ACTIONS(3283), + [anon_sym_metadata] = ACTIONS(3283), + [anon_sym_move] = ACTIONS(3283), + [anon_sym_read] = ACTIONS(3283), + [anon_sym_workdir] = ACTIONS(3283), + [anon_sym_write] = ACTIONS(3283), + [anon_sym_from_json] = ACTIONS(3283), + [anon_sym_to_json] = ACTIONS(3283), + [anon_sym_to_string] = ACTIONS(3283), + [anon_sym_to_float] = ACTIONS(3283), + [anon_sym_bash] = ACTIONS(3283), + [anon_sym_fish] = ACTIONS(3283), + [anon_sym_raw] = ACTIONS(3283), + [anon_sym_sh] = ACTIONS(3283), + [anon_sym_zsh] = ACTIONS(3283), + [anon_sym_random] = ACTIONS(3283), + [anon_sym_random_boolean] = ACTIONS(3283), + [anon_sym_random_float] = ACTIONS(3283), + [anon_sym_random_integer] = ACTIONS(3283), + [anon_sym_columns] = ACTIONS(3283), + [anon_sym_rows] = ACTIONS(3283), + [anon_sym_reverse] = ACTIONS(3283), + }, + [827] = { + [sym_math_operator] = STATE(1472), + [sym_logic_operator] = STATE(1480), + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3254), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3252), + [sym_integer] = ACTIONS(3254), + [sym_float] = ACTIONS(3252), + [sym_string] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_elseif] = ACTIONS(3252), + [anon_sym_else] = ACTIONS(3254), + [anon_sym_match] = ACTIONS(3254), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_asyncfor] = ACTIONS(3252), + [anon_sym_transform] = ACTIONS(3254), + [anon_sym_filter] = ACTIONS(3254), + [anon_sym_find] = ACTIONS(3254), + [anon_sym_remove] = ACTIONS(3254), + [anon_sym_reduce] = ACTIONS(3254), + [anon_sym_select] = ACTIONS(3254), + [anon_sym_insert] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_table] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_assert_equal] = ACTIONS(3254), + [anon_sym_download] = ACTIONS(3254), + [anon_sym_help] = ACTIONS(3254), + [anon_sym_length] = ACTIONS(3254), + [anon_sym_output] = ACTIONS(3254), + [anon_sym_output_error] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_append] = ACTIONS(3254), + [anon_sym_metadata] = ACTIONS(3254), + [anon_sym_move] = ACTIONS(3254), + [anon_sym_read] = ACTIONS(3254), + [anon_sym_workdir] = ACTIONS(3254), + [anon_sym_write] = ACTIONS(3254), + [anon_sym_from_json] = ACTIONS(3254), + [anon_sym_to_json] = ACTIONS(3254), + [anon_sym_to_string] = ACTIONS(3254), + [anon_sym_to_float] = ACTIONS(3254), + [anon_sym_bash] = ACTIONS(3254), + [anon_sym_fish] = ACTIONS(3254), + [anon_sym_raw] = ACTIONS(3254), + [anon_sym_sh] = ACTIONS(3254), + [anon_sym_zsh] = ACTIONS(3254), + [anon_sym_random] = ACTIONS(3254), + [anon_sym_random_boolean] = ACTIONS(3254), + [anon_sym_random_float] = ACTIONS(3254), + [anon_sym_random_integer] = ACTIONS(3254), + [anon_sym_columns] = ACTIONS(3254), + [anon_sym_rows] = ACTIONS(3254), + [anon_sym_reverse] = ACTIONS(3254), + }, + [828] = { + [sym_math_operator] = STATE(1381), + [sym_logic_operator] = STATE(1380), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3235), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3591), + [sym_integer] = ACTIONS(3235), + [sym_float] = ACTIONS(3233), + [sym_string] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_RBRACK] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_asyncfor] = ACTIONS(3233), + [anon_sym_transform] = ACTIONS(3235), + [anon_sym_filter] = ACTIONS(3235), + [anon_sym_find] = ACTIONS(3235), + [anon_sym_remove] = ACTIONS(3235), + [anon_sym_reduce] = ACTIONS(3235), + [anon_sym_select] = ACTIONS(3235), + [anon_sym_insert] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_table] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_assert_equal] = ACTIONS(3235), + [anon_sym_download] = ACTIONS(3235), + [anon_sym_help] = ACTIONS(3235), + [anon_sym_length] = ACTIONS(3235), + [anon_sym_output] = ACTIONS(3235), + [anon_sym_output_error] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_append] = ACTIONS(3235), + [anon_sym_metadata] = ACTIONS(3235), + [anon_sym_move] = ACTIONS(3235), + [anon_sym_read] = ACTIONS(3235), + [anon_sym_workdir] = ACTIONS(3235), + [anon_sym_write] = ACTIONS(3235), + [anon_sym_from_json] = ACTIONS(3235), + [anon_sym_to_json] = ACTIONS(3235), + [anon_sym_to_string] = ACTIONS(3235), + [anon_sym_to_float] = ACTIONS(3235), + [anon_sym_bash] = ACTIONS(3235), + [anon_sym_fish] = ACTIONS(3235), + [anon_sym_raw] = ACTIONS(3235), + [anon_sym_sh] = ACTIONS(3235), + [anon_sym_zsh] = ACTIONS(3235), + [anon_sym_random] = ACTIONS(3235), + [anon_sym_random_boolean] = ACTIONS(3235), + [anon_sym_random_float] = ACTIONS(3235), + [anon_sym_random_integer] = ACTIONS(3235), + [anon_sym_columns] = ACTIONS(3235), + [anon_sym_rows] = ACTIONS(3235), + [anon_sym_reverse] = ACTIONS(3235), + }, + [829] = { + [sym_math_operator] = STATE(1381), + [sym_logic_operator] = STATE(1380), + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3283), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_RPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3281), + [sym_integer] = ACTIONS(3283), + [sym_float] = ACTIONS(3281), + [sym_string] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_RBRACK] = ACTIONS(3281), + [anon_sym_COLON] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_EQ_GT] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_asyncfor] = ACTIONS(3281), + [anon_sym_transform] = ACTIONS(3283), + [anon_sym_filter] = ACTIONS(3283), + [anon_sym_find] = ACTIONS(3283), + [anon_sym_remove] = ACTIONS(3283), + [anon_sym_reduce] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_insert] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_table] = ACTIONS(3283), + [anon_sym_assert] = ACTIONS(3283), + [anon_sym_assert_equal] = ACTIONS(3283), + [anon_sym_download] = ACTIONS(3283), + [anon_sym_help] = ACTIONS(3283), + [anon_sym_length] = ACTIONS(3283), + [anon_sym_output] = ACTIONS(3283), + [anon_sym_output_error] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_append] = ACTIONS(3283), + [anon_sym_metadata] = ACTIONS(3283), + [anon_sym_move] = ACTIONS(3283), + [anon_sym_read] = ACTIONS(3283), + [anon_sym_workdir] = ACTIONS(3283), + [anon_sym_write] = ACTIONS(3283), + [anon_sym_from_json] = ACTIONS(3283), + [anon_sym_to_json] = ACTIONS(3283), + [anon_sym_to_string] = ACTIONS(3283), + [anon_sym_to_float] = ACTIONS(3283), + [anon_sym_bash] = ACTIONS(3283), + [anon_sym_fish] = ACTIONS(3283), + [anon_sym_raw] = ACTIONS(3283), + [anon_sym_sh] = ACTIONS(3283), + [anon_sym_zsh] = ACTIONS(3283), + [anon_sym_random] = ACTIONS(3283), + [anon_sym_random_boolean] = ACTIONS(3283), + [anon_sym_random_float] = ACTIONS(3283), + [anon_sym_random_integer] = ACTIONS(3283), + [anon_sym_columns] = ACTIONS(3283), + [anon_sym_rows] = ACTIONS(3283), + [anon_sym_reverse] = ACTIONS(3283), + }, + [830] = { + [sym_expression] = STATE(968), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(716), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1762), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(726), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_COMMA] = ACTIONS(2435), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_DOT_DOT] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3578), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3580), + [anon_sym_assert] = ACTIONS(3582), + [anon_sym_assert_equal] = ACTIONS(3582), + [anon_sym_download] = ACTIONS(3582), + [anon_sym_help] = ACTIONS(3582), + [anon_sym_length] = ACTIONS(3582), + [anon_sym_output] = ACTIONS(3582), + [anon_sym_output_error] = ACTIONS(3582), + [anon_sym_type] = ACTIONS(3582), + [anon_sym_append] = ACTIONS(3582), + [anon_sym_metadata] = ACTIONS(3582), + [anon_sym_move] = ACTIONS(3582), + [anon_sym_read] = ACTIONS(3582), + [anon_sym_workdir] = ACTIONS(3582), + [anon_sym_write] = ACTIONS(3582), + [anon_sym_from_json] = ACTIONS(3582), + [anon_sym_to_json] = ACTIONS(3582), + [anon_sym_to_string] = ACTIONS(3582), + [anon_sym_to_float] = ACTIONS(3582), + [anon_sym_bash] = ACTIONS(3582), + [anon_sym_fish] = ACTIONS(3582), + [anon_sym_raw] = ACTIONS(3582), + [anon_sym_sh] = ACTIONS(3582), + [anon_sym_zsh] = ACTIONS(3582), + [anon_sym_random] = ACTIONS(3582), + [anon_sym_random_boolean] = ACTIONS(3582), + [anon_sym_random_float] = ACTIONS(3582), + [anon_sym_random_integer] = ACTIONS(3582), + [anon_sym_columns] = ACTIONS(3582), + [anon_sym_rows] = ACTIONS(3582), + [anon_sym_reverse] = ACTIONS(3582), + }, + [831] = { + [sym_math_operator] = STATE(1381), + [sym_logic_operator] = STATE(1380), + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3254), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3252), + [anon_sym_COMMA] = ACTIONS(3252), + [sym_integer] = ACTIONS(3254), + [sym_float] = ACTIONS(3252), + [sym_string] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_RBRACK] = ACTIONS(3252), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_match] = ACTIONS(3254), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_asyncfor] = ACTIONS(3252), + [anon_sym_transform] = ACTIONS(3254), + [anon_sym_filter] = ACTIONS(3254), + [anon_sym_find] = ACTIONS(3254), + [anon_sym_remove] = ACTIONS(3254), + [anon_sym_reduce] = ACTIONS(3254), + [anon_sym_select] = ACTIONS(3254), + [anon_sym_insert] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_table] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_assert_equal] = ACTIONS(3254), + [anon_sym_download] = ACTIONS(3254), + [anon_sym_help] = ACTIONS(3254), + [anon_sym_length] = ACTIONS(3254), + [anon_sym_output] = ACTIONS(3254), + [anon_sym_output_error] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_append] = ACTIONS(3254), + [anon_sym_metadata] = ACTIONS(3254), + [anon_sym_move] = ACTIONS(3254), + [anon_sym_read] = ACTIONS(3254), + [anon_sym_workdir] = ACTIONS(3254), + [anon_sym_write] = ACTIONS(3254), + [anon_sym_from_json] = ACTIONS(3254), + [anon_sym_to_json] = ACTIONS(3254), + [anon_sym_to_string] = ACTIONS(3254), + [anon_sym_to_float] = ACTIONS(3254), + [anon_sym_bash] = ACTIONS(3254), + [anon_sym_fish] = ACTIONS(3254), + [anon_sym_raw] = ACTIONS(3254), + [anon_sym_sh] = ACTIONS(3254), + [anon_sym_zsh] = ACTIONS(3254), + [anon_sym_random] = ACTIONS(3254), + [anon_sym_random_boolean] = ACTIONS(3254), + [anon_sym_random_float] = ACTIONS(3254), + [anon_sym_random_integer] = ACTIONS(3254), + [anon_sym_columns] = ACTIONS(3254), + [anon_sym_rows] = ACTIONS(3254), + [anon_sym_reverse] = ACTIONS(3254), + }, + [832] = { + [sym_math_operator] = STATE(1472), + [sym_logic_operator] = STATE(1480), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_RPAREN] = ACTIONS(3244), + [sym_integer] = ACTIONS(3246), + [sym_float] = ACTIONS(3244), + [sym_string] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_elseif] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_asyncfor] = ACTIONS(3244), + [anon_sym_transform] = ACTIONS(3246), + [anon_sym_filter] = ACTIONS(3246), + [anon_sym_find] = ACTIONS(3246), + [anon_sym_remove] = ACTIONS(3246), + [anon_sym_reduce] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_insert] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_table] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_assert_equal] = ACTIONS(3246), + [anon_sym_download] = ACTIONS(3246), + [anon_sym_help] = ACTIONS(3246), + [anon_sym_length] = ACTIONS(3246), + [anon_sym_output] = ACTIONS(3246), + [anon_sym_output_error] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_append] = ACTIONS(3246), + [anon_sym_metadata] = ACTIONS(3246), + [anon_sym_move] = ACTIONS(3246), + [anon_sym_read] = ACTIONS(3246), + [anon_sym_workdir] = ACTIONS(3246), + [anon_sym_write] = ACTIONS(3246), + [anon_sym_from_json] = ACTIONS(3246), + [anon_sym_to_json] = ACTIONS(3246), + [anon_sym_to_string] = ACTIONS(3246), + [anon_sym_to_float] = ACTIONS(3246), + [anon_sym_bash] = ACTIONS(3246), + [anon_sym_fish] = ACTIONS(3246), + [anon_sym_raw] = ACTIONS(3246), + [anon_sym_sh] = ACTIONS(3246), + [anon_sym_zsh] = ACTIONS(3246), + [anon_sym_random] = ACTIONS(3246), + [anon_sym_random_boolean] = ACTIONS(3246), + [anon_sym_random_float] = ACTIONS(3246), + [anon_sym_random_integer] = ACTIONS(3246), + [anon_sym_columns] = ACTIONS(3246), + [anon_sym_rows] = ACTIONS(3246), + [anon_sym_reverse] = ACTIONS(3246), + }, + [833] = { + [sym_math_operator] = STATE(1305), + [sym_logic_operator] = STATE(1306), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3235), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3622), + [sym_integer] = ACTIONS(3235), + [sym_float] = ACTIONS(3233), + [sym_string] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(879), + [anon_sym_DOT_DOT] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_asyncfor] = ACTIONS(3233), + [anon_sym_transform] = ACTIONS(3235), + [anon_sym_filter] = ACTIONS(3235), + [anon_sym_find] = ACTIONS(3235), + [anon_sym_remove] = ACTIONS(3235), + [anon_sym_reduce] = ACTIONS(3235), + [anon_sym_select] = ACTIONS(3235), + [anon_sym_insert] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_table] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_assert_equal] = ACTIONS(3235), + [anon_sym_download] = ACTIONS(3235), + [anon_sym_help] = ACTIONS(3235), + [anon_sym_length] = ACTIONS(3235), + [anon_sym_output] = ACTIONS(3235), + [anon_sym_output_error] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_append] = ACTIONS(3235), + [anon_sym_metadata] = ACTIONS(3235), + [anon_sym_move] = ACTIONS(3235), + [anon_sym_read] = ACTIONS(3235), + [anon_sym_workdir] = ACTIONS(3235), + [anon_sym_write] = ACTIONS(3235), + [anon_sym_from_json] = ACTIONS(3235), + [anon_sym_to_json] = ACTIONS(3235), + [anon_sym_to_string] = ACTIONS(3235), + [anon_sym_to_float] = ACTIONS(3235), + [anon_sym_bash] = ACTIONS(3235), + [anon_sym_fish] = ACTIONS(3235), + [anon_sym_raw] = ACTIONS(3235), + [anon_sym_sh] = ACTIONS(3235), + [anon_sym_zsh] = ACTIONS(3235), + [anon_sym_random] = ACTIONS(3235), + [anon_sym_random_boolean] = ACTIONS(3235), + [anon_sym_random_float] = ACTIONS(3235), + [anon_sym_random_integer] = ACTIONS(3235), + [anon_sym_columns] = ACTIONS(3235), + [anon_sym_rows] = ACTIONS(3235), + [anon_sym_reverse] = ACTIONS(3235), + }, + [834] = { + [sym_math_operator] = STATE(1381), + [sym_logic_operator] = STATE(1380), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_RPAREN] = ACTIONS(3244), + [anon_sym_COMMA] = ACTIONS(3244), + [sym_integer] = ACTIONS(3246), + [sym_float] = ACTIONS(3244), + [sym_string] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_RBRACK] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_asyncfor] = ACTIONS(3244), + [anon_sym_transform] = ACTIONS(3246), + [anon_sym_filter] = ACTIONS(3246), + [anon_sym_find] = ACTIONS(3246), + [anon_sym_remove] = ACTIONS(3246), + [anon_sym_reduce] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_insert] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_table] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_assert_equal] = ACTIONS(3246), + [anon_sym_download] = ACTIONS(3246), + [anon_sym_help] = ACTIONS(3246), + [anon_sym_length] = ACTIONS(3246), + [anon_sym_output] = ACTIONS(3246), + [anon_sym_output_error] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_append] = ACTIONS(3246), + [anon_sym_metadata] = ACTIONS(3246), + [anon_sym_move] = ACTIONS(3246), + [anon_sym_read] = ACTIONS(3246), + [anon_sym_workdir] = ACTIONS(3246), + [anon_sym_write] = ACTIONS(3246), + [anon_sym_from_json] = ACTIONS(3246), + [anon_sym_to_json] = ACTIONS(3246), + [anon_sym_to_string] = ACTIONS(3246), + [anon_sym_to_float] = ACTIONS(3246), + [anon_sym_bash] = ACTIONS(3246), + [anon_sym_fish] = ACTIONS(3246), + [anon_sym_raw] = ACTIONS(3246), + [anon_sym_sh] = ACTIONS(3246), + [anon_sym_zsh] = ACTIONS(3246), + [anon_sym_random] = ACTIONS(3246), + [anon_sym_random_boolean] = ACTIONS(3246), + [anon_sym_random_float] = ACTIONS(3246), + [anon_sym_random_integer] = ACTIONS(3246), + [anon_sym_columns] = ACTIONS(3246), + [anon_sym_rows] = ACTIONS(3246), + [anon_sym_reverse] = ACTIONS(3246), + }, + [835] = { + [sym_math_operator] = STATE(1381), + [sym_logic_operator] = STATE(1380), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3242), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [sym_integer] = ACTIONS(3242), + [sym_float] = ACTIONS(3240), + [sym_string] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_asyncfor] = ACTIONS(3240), + [anon_sym_transform] = ACTIONS(3242), + [anon_sym_filter] = ACTIONS(3242), + [anon_sym_find] = ACTIONS(3242), + [anon_sym_remove] = ACTIONS(3242), + [anon_sym_reduce] = ACTIONS(3242), + [anon_sym_select] = ACTIONS(3242), + [anon_sym_insert] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_table] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_assert_equal] = ACTIONS(3242), + [anon_sym_download] = ACTIONS(3242), + [anon_sym_help] = ACTIONS(3242), + [anon_sym_length] = ACTIONS(3242), + [anon_sym_output] = ACTIONS(3242), + [anon_sym_output_error] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_append] = ACTIONS(3242), + [anon_sym_metadata] = ACTIONS(3242), + [anon_sym_move] = ACTIONS(3242), + [anon_sym_read] = ACTIONS(3242), + [anon_sym_workdir] = ACTIONS(3242), + [anon_sym_write] = ACTIONS(3242), + [anon_sym_from_json] = ACTIONS(3242), + [anon_sym_to_json] = ACTIONS(3242), + [anon_sym_to_string] = ACTIONS(3242), + [anon_sym_to_float] = ACTIONS(3242), + [anon_sym_bash] = ACTIONS(3242), + [anon_sym_fish] = ACTIONS(3242), + [anon_sym_raw] = ACTIONS(3242), + [anon_sym_sh] = ACTIONS(3242), + [anon_sym_zsh] = ACTIONS(3242), + [anon_sym_random] = ACTIONS(3242), + [anon_sym_random_boolean] = ACTIONS(3242), + [anon_sym_random_float] = ACTIONS(3242), + [anon_sym_random_integer] = ACTIONS(3242), + [anon_sym_columns] = ACTIONS(3242), + [anon_sym_rows] = ACTIONS(3242), + [anon_sym_reverse] = ACTIONS(3242), + }, + [836] = { + [sym_math_operator] = STATE(1472), + [sym_logic_operator] = STATE(1480), + [ts_builtin_sym_end] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3264), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [sym_integer] = ACTIONS(3264), + [sym_float] = ACTIONS(3262), + [sym_string] = ACTIONS(3262), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_elseif] = ACTIONS(3262), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_match] = ACTIONS(3264), + [anon_sym_EQ_GT] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_asyncfor] = ACTIONS(3262), + [anon_sym_transform] = ACTIONS(3264), + [anon_sym_filter] = ACTIONS(3264), + [anon_sym_find] = ACTIONS(3264), + [anon_sym_remove] = ACTIONS(3264), + [anon_sym_reduce] = ACTIONS(3264), + [anon_sym_select] = ACTIONS(3264), + [anon_sym_insert] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_table] = ACTIONS(3264), + [anon_sym_assert] = ACTIONS(3264), + [anon_sym_assert_equal] = ACTIONS(3264), + [anon_sym_download] = ACTIONS(3264), + [anon_sym_help] = ACTIONS(3264), + [anon_sym_length] = ACTIONS(3264), + [anon_sym_output] = ACTIONS(3264), + [anon_sym_output_error] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_append] = ACTIONS(3264), + [anon_sym_metadata] = ACTIONS(3264), + [anon_sym_move] = ACTIONS(3264), + [anon_sym_read] = ACTIONS(3264), + [anon_sym_workdir] = ACTIONS(3264), + [anon_sym_write] = ACTIONS(3264), + [anon_sym_from_json] = ACTIONS(3264), + [anon_sym_to_json] = ACTIONS(3264), + [anon_sym_to_string] = ACTIONS(3264), + [anon_sym_to_float] = ACTIONS(3264), + [anon_sym_bash] = ACTIONS(3264), + [anon_sym_fish] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3264), + [anon_sym_sh] = ACTIONS(3264), + [anon_sym_zsh] = ACTIONS(3264), + [anon_sym_random] = ACTIONS(3264), + [anon_sym_random_boolean] = ACTIONS(3264), + [anon_sym_random_float] = ACTIONS(3264), + [anon_sym_random_integer] = ACTIONS(3264), + [anon_sym_columns] = ACTIONS(3264), + [anon_sym_rows] = ACTIONS(3264), + [anon_sym_reverse] = ACTIONS(3264), + }, + [837] = { + [sym_expression] = STATE(1624), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(820), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_elseif] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_asyncfor] = ACTIONS(2449), + [anon_sym_transform] = ACTIONS(2465), + [anon_sym_filter] = ACTIONS(2465), + [anon_sym_find] = ACTIONS(2465), + [anon_sym_remove] = ACTIONS(2465), + [anon_sym_reduce] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_insert] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [838] = { + [ts_builtin_sym_end] = ACTIONS(3351), + [sym_identifier] = ACTIONS(3353), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_RBRACE] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_RPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3351), + [sym_integer] = ACTIONS(3353), + [sym_float] = ACTIONS(3351), + [sym_string] = ACTIONS(3351), + [anon_sym_true] = ACTIONS(3353), + [anon_sym_false] = ACTIONS(3353), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_RBRACK] = ACTIONS(3351), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_DOT_DOT] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_SLASH] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_EQ_EQ] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_GT] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_GT_EQ] = ACTIONS(3351), + [anon_sym_LT_EQ] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3353), + [anon_sym_match] = ACTIONS(3353), + [anon_sym_EQ_GT] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3353), + [anon_sym_asyncfor] = ACTIONS(3351), + [anon_sym_transform] = ACTIONS(3353), + [anon_sym_filter] = ACTIONS(3353), + [anon_sym_find] = ACTIONS(3353), + [anon_sym_remove] = ACTIONS(3353), + [anon_sym_reduce] = ACTIONS(3353), + [anon_sym_select] = ACTIONS(3353), + [anon_sym_insert] = ACTIONS(3353), + [anon_sym_async] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(3353), + [anon_sym_table] = ACTIONS(3353), + [anon_sym_assert] = ACTIONS(3353), + [anon_sym_assert_equal] = ACTIONS(3353), + [anon_sym_download] = ACTIONS(3353), + [anon_sym_help] = ACTIONS(3353), + [anon_sym_length] = ACTIONS(3353), + [anon_sym_output] = ACTIONS(3353), + [anon_sym_output_error] = ACTIONS(3353), + [anon_sym_type] = ACTIONS(3353), + [anon_sym_append] = ACTIONS(3353), + [anon_sym_metadata] = ACTIONS(3353), + [anon_sym_move] = ACTIONS(3353), + [anon_sym_read] = ACTIONS(3353), + [anon_sym_workdir] = ACTIONS(3353), + [anon_sym_write] = ACTIONS(3353), + [anon_sym_from_json] = ACTIONS(3353), + [anon_sym_to_json] = ACTIONS(3353), + [anon_sym_to_string] = ACTIONS(3353), + [anon_sym_to_float] = ACTIONS(3353), + [anon_sym_bash] = ACTIONS(3353), + [anon_sym_fish] = ACTIONS(3353), + [anon_sym_raw] = ACTIONS(3353), + [anon_sym_sh] = ACTIONS(3353), + [anon_sym_zsh] = ACTIONS(3353), + [anon_sym_random] = ACTIONS(3353), + [anon_sym_random_boolean] = ACTIONS(3353), + [anon_sym_random_float] = ACTIONS(3353), + [anon_sym_random_integer] = ACTIONS(3353), + [anon_sym_columns] = ACTIONS(3353), + [anon_sym_rows] = ACTIONS(3353), + [anon_sym_reverse] = ACTIONS(3353), + }, + [839] = { + [ts_builtin_sym_end] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3395), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_RBRACE] = ACTIONS(3393), + [anon_sym_SEMI] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_RPAREN] = ACTIONS(3393), + [anon_sym_COMMA] = ACTIONS(3393), + [sym_integer] = ACTIONS(3395), + [sym_float] = ACTIONS(3393), + [sym_string] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_RBRACK] = ACTIONS(3393), + [anon_sym_COLON] = ACTIONS(3393), + [anon_sym_DOT_DOT] = ACTIONS(3393), + [anon_sym_PLUS] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_STAR] = ACTIONS(3393), + [anon_sym_SLASH] = ACTIONS(3393), + [anon_sym_PERCENT] = ACTIONS(3393), + [anon_sym_EQ_EQ] = ACTIONS(3393), + [anon_sym_BANG_EQ] = ACTIONS(3393), + [anon_sym_AMP_AMP] = ACTIONS(3393), + [anon_sym_PIPE_PIPE] = ACTIONS(3393), + [anon_sym_GT] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_GT_EQ] = ACTIONS(3393), + [anon_sym_LT_EQ] = ACTIONS(3393), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_match] = ACTIONS(3395), + [anon_sym_EQ_GT] = ACTIONS(3393), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_asyncfor] = ACTIONS(3393), + [anon_sym_transform] = ACTIONS(3395), + [anon_sym_filter] = ACTIONS(3395), + [anon_sym_find] = ACTIONS(3395), + [anon_sym_remove] = ACTIONS(3395), + [anon_sym_reduce] = ACTIONS(3395), + [anon_sym_select] = ACTIONS(3395), + [anon_sym_insert] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_PIPE] = ACTIONS(3395), + [anon_sym_table] = ACTIONS(3395), + [anon_sym_assert] = ACTIONS(3395), + [anon_sym_assert_equal] = ACTIONS(3395), + [anon_sym_download] = ACTIONS(3395), + [anon_sym_help] = ACTIONS(3395), + [anon_sym_length] = ACTIONS(3395), + [anon_sym_output] = ACTIONS(3395), + [anon_sym_output_error] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_append] = ACTIONS(3395), + [anon_sym_metadata] = ACTIONS(3395), + [anon_sym_move] = ACTIONS(3395), + [anon_sym_read] = ACTIONS(3395), + [anon_sym_workdir] = ACTIONS(3395), + [anon_sym_write] = ACTIONS(3395), + [anon_sym_from_json] = ACTIONS(3395), + [anon_sym_to_json] = ACTIONS(3395), + [anon_sym_to_string] = ACTIONS(3395), + [anon_sym_to_float] = ACTIONS(3395), + [anon_sym_bash] = ACTIONS(3395), + [anon_sym_fish] = ACTIONS(3395), + [anon_sym_raw] = ACTIONS(3395), + [anon_sym_sh] = ACTIONS(3395), + [anon_sym_zsh] = ACTIONS(3395), + [anon_sym_random] = ACTIONS(3395), + [anon_sym_random_boolean] = ACTIONS(3395), + [anon_sym_random_float] = ACTIONS(3395), + [anon_sym_random_integer] = ACTIONS(3395), + [anon_sym_columns] = ACTIONS(3395), + [anon_sym_rows] = ACTIONS(3395), + [anon_sym_reverse] = ACTIONS(3395), + }, + [840] = { + [ts_builtin_sym_end] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3417), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3415), + [anon_sym_RBRACE] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_LPAREN] = ACTIONS(3415), + [anon_sym_RPAREN] = ACTIONS(3415), + [anon_sym_COMMA] = ACTIONS(3415), + [sym_integer] = ACTIONS(3417), + [sym_float] = ACTIONS(3415), + [sym_string] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_RBRACK] = ACTIONS(3415), + [anon_sym_COLON] = ACTIONS(3415), + [anon_sym_DOT_DOT] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(3415), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_STAR] = ACTIONS(3415), + [anon_sym_SLASH] = ACTIONS(3415), + [anon_sym_PERCENT] = ACTIONS(3415), + [anon_sym_EQ_EQ] = ACTIONS(3415), + [anon_sym_BANG_EQ] = ACTIONS(3415), + [anon_sym_AMP_AMP] = ACTIONS(3415), + [anon_sym_PIPE_PIPE] = ACTIONS(3415), + [anon_sym_GT] = ACTIONS(3417), + [anon_sym_LT] = ACTIONS(3417), + [anon_sym_GT_EQ] = ACTIONS(3415), + [anon_sym_LT_EQ] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_match] = ACTIONS(3417), + [anon_sym_EQ_GT] = ACTIONS(3415), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_asyncfor] = ACTIONS(3415), + [anon_sym_transform] = ACTIONS(3417), + [anon_sym_filter] = ACTIONS(3417), + [anon_sym_find] = ACTIONS(3417), + [anon_sym_remove] = ACTIONS(3417), + [anon_sym_reduce] = ACTIONS(3417), + [anon_sym_select] = ACTIONS(3417), + [anon_sym_insert] = ACTIONS(3417), + [anon_sym_async] = ACTIONS(3417), + [anon_sym_PIPE] = ACTIONS(3417), + [anon_sym_table] = ACTIONS(3417), + [anon_sym_assert] = ACTIONS(3417), + [anon_sym_assert_equal] = ACTIONS(3417), + [anon_sym_download] = ACTIONS(3417), + [anon_sym_help] = ACTIONS(3417), + [anon_sym_length] = ACTIONS(3417), + [anon_sym_output] = ACTIONS(3417), + [anon_sym_output_error] = ACTIONS(3417), + [anon_sym_type] = ACTIONS(3417), + [anon_sym_append] = ACTIONS(3417), + [anon_sym_metadata] = ACTIONS(3417), + [anon_sym_move] = ACTIONS(3417), + [anon_sym_read] = ACTIONS(3417), + [anon_sym_workdir] = ACTIONS(3417), + [anon_sym_write] = ACTIONS(3417), + [anon_sym_from_json] = ACTIONS(3417), + [anon_sym_to_json] = ACTIONS(3417), + [anon_sym_to_string] = ACTIONS(3417), + [anon_sym_to_float] = ACTIONS(3417), + [anon_sym_bash] = ACTIONS(3417), + [anon_sym_fish] = ACTIONS(3417), + [anon_sym_raw] = ACTIONS(3417), + [anon_sym_sh] = ACTIONS(3417), + [anon_sym_zsh] = ACTIONS(3417), + [anon_sym_random] = ACTIONS(3417), + [anon_sym_random_boolean] = ACTIONS(3417), + [anon_sym_random_float] = ACTIONS(3417), + [anon_sym_random_integer] = ACTIONS(3417), + [anon_sym_columns] = ACTIONS(3417), + [anon_sym_rows] = ACTIONS(3417), + [anon_sym_reverse] = ACTIONS(3417), + }, + [841] = { + [ts_builtin_sym_end] = ACTIONS(3363), + [sym_identifier] = ACTIONS(3365), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3363), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_RPAREN] = ACTIONS(3363), + [anon_sym_COMMA] = ACTIONS(3363), + [sym_integer] = ACTIONS(3365), + [sym_float] = ACTIONS(3363), + [sym_string] = ACTIONS(3363), + [anon_sym_true] = ACTIONS(3365), + [anon_sym_false] = ACTIONS(3365), + [anon_sym_LBRACK] = ACTIONS(3363), + [anon_sym_RBRACK] = ACTIONS(3363), + [anon_sym_COLON] = ACTIONS(3363), + [anon_sym_DOT_DOT] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3365), + [anon_sym_STAR] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_PERCENT] = ACTIONS(3363), + [anon_sym_EQ_EQ] = ACTIONS(3363), + [anon_sym_BANG_EQ] = ACTIONS(3363), + [anon_sym_AMP_AMP] = ACTIONS(3363), + [anon_sym_PIPE_PIPE] = ACTIONS(3363), + [anon_sym_GT] = ACTIONS(3365), + [anon_sym_LT] = ACTIONS(3365), + [anon_sym_GT_EQ] = ACTIONS(3363), + [anon_sym_LT_EQ] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3365), + [anon_sym_match] = ACTIONS(3365), + [anon_sym_EQ_GT] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3365), + [anon_sym_for] = ACTIONS(3365), + [anon_sym_asyncfor] = ACTIONS(3363), + [anon_sym_transform] = ACTIONS(3365), + [anon_sym_filter] = ACTIONS(3365), + [anon_sym_find] = ACTIONS(3365), + [anon_sym_remove] = ACTIONS(3365), + [anon_sym_reduce] = ACTIONS(3365), + [anon_sym_select] = ACTIONS(3365), + [anon_sym_insert] = ACTIONS(3365), + [anon_sym_async] = ACTIONS(3365), + [anon_sym_PIPE] = ACTIONS(3365), + [anon_sym_table] = ACTIONS(3365), + [anon_sym_assert] = ACTIONS(3365), + [anon_sym_assert_equal] = ACTIONS(3365), + [anon_sym_download] = ACTIONS(3365), + [anon_sym_help] = ACTIONS(3365), + [anon_sym_length] = ACTIONS(3365), + [anon_sym_output] = ACTIONS(3365), + [anon_sym_output_error] = ACTIONS(3365), + [anon_sym_type] = ACTIONS(3365), + [anon_sym_append] = ACTIONS(3365), + [anon_sym_metadata] = ACTIONS(3365), + [anon_sym_move] = ACTIONS(3365), + [anon_sym_read] = ACTIONS(3365), + [anon_sym_workdir] = ACTIONS(3365), + [anon_sym_write] = ACTIONS(3365), + [anon_sym_from_json] = ACTIONS(3365), + [anon_sym_to_json] = ACTIONS(3365), + [anon_sym_to_string] = ACTIONS(3365), + [anon_sym_to_float] = ACTIONS(3365), + [anon_sym_bash] = ACTIONS(3365), + [anon_sym_fish] = ACTIONS(3365), + [anon_sym_raw] = ACTIONS(3365), + [anon_sym_sh] = ACTIONS(3365), + [anon_sym_zsh] = ACTIONS(3365), + [anon_sym_random] = ACTIONS(3365), + [anon_sym_random_boolean] = ACTIONS(3365), + [anon_sym_random_float] = ACTIONS(3365), + [anon_sym_random_integer] = ACTIONS(3365), + [anon_sym_columns] = ACTIONS(3365), + [anon_sym_rows] = ACTIONS(3365), + [anon_sym_reverse] = ACTIONS(3365), + }, + [842] = { + [sym_assignment_operator] = STATE(554), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), + }, + [843] = { + [sym_math_operator] = STATE(1142), + [sym_logic_operator] = STATE(1143), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_RPAREN] = ACTIONS(3244), + [sym_integer] = ACTIONS(3246), + [sym_float] = ACTIONS(3244), + [sym_string] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(1438), + [anon_sym_DOT_DOT] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_asyncfor] = ACTIONS(3244), + [anon_sym_transform] = ACTIONS(3246), + [anon_sym_filter] = ACTIONS(3246), + [anon_sym_find] = ACTIONS(3246), + [anon_sym_remove] = ACTIONS(3246), + [anon_sym_reduce] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_insert] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_table] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_assert_equal] = ACTIONS(3246), + [anon_sym_download] = ACTIONS(3246), + [anon_sym_help] = ACTIONS(3246), + [anon_sym_length] = ACTIONS(3246), + [anon_sym_output] = ACTIONS(3246), + [anon_sym_output_error] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_append] = ACTIONS(3246), + [anon_sym_metadata] = ACTIONS(3246), + [anon_sym_move] = ACTIONS(3246), + [anon_sym_read] = ACTIONS(3246), + [anon_sym_workdir] = ACTIONS(3246), + [anon_sym_write] = ACTIONS(3246), + [anon_sym_from_json] = ACTIONS(3246), + [anon_sym_to_json] = ACTIONS(3246), + [anon_sym_to_string] = ACTIONS(3246), + [anon_sym_to_float] = ACTIONS(3246), + [anon_sym_bash] = ACTIONS(3246), + [anon_sym_fish] = ACTIONS(3246), + [anon_sym_raw] = ACTIONS(3246), + [anon_sym_sh] = ACTIONS(3246), + [anon_sym_zsh] = ACTIONS(3246), + [anon_sym_random] = ACTIONS(3246), + [anon_sym_random_boolean] = ACTIONS(3246), + [anon_sym_random_float] = ACTIONS(3246), + [anon_sym_random_integer] = ACTIONS(3246), + [anon_sym_columns] = ACTIONS(3246), + [anon_sym_rows] = ACTIONS(3246), + [anon_sym_reverse] = ACTIONS(3246), + }, + [844] = { + [ts_builtin_sym_end] = ACTIONS(3409), + [sym_identifier] = ACTIONS(3411), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_RBRACE] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3409), + [anon_sym_RPAREN] = ACTIONS(3409), + [anon_sym_COMMA] = ACTIONS(3409), + [sym_integer] = ACTIONS(3411), + [sym_float] = ACTIONS(3409), + [sym_string] = ACTIONS(3409), + [anon_sym_true] = ACTIONS(3411), + [anon_sym_false] = ACTIONS(3411), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_RBRACK] = ACTIONS(3409), + [anon_sym_COLON] = ACTIONS(3409), + [anon_sym_DOT_DOT] = ACTIONS(3409), + [anon_sym_PLUS] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3411), + [anon_sym_STAR] = ACTIONS(3409), + [anon_sym_SLASH] = ACTIONS(3409), + [anon_sym_PERCENT] = ACTIONS(3409), + [anon_sym_EQ_EQ] = ACTIONS(3409), + [anon_sym_BANG_EQ] = ACTIONS(3409), + [anon_sym_AMP_AMP] = ACTIONS(3409), + [anon_sym_PIPE_PIPE] = ACTIONS(3409), + [anon_sym_GT] = ACTIONS(3411), + [anon_sym_LT] = ACTIONS(3411), + [anon_sym_GT_EQ] = ACTIONS(3409), + [anon_sym_LT_EQ] = ACTIONS(3409), + [anon_sym_if] = ACTIONS(3411), + [anon_sym_match] = ACTIONS(3411), + [anon_sym_EQ_GT] = ACTIONS(3409), + [anon_sym_while] = ACTIONS(3411), + [anon_sym_for] = ACTIONS(3411), + [anon_sym_asyncfor] = ACTIONS(3409), + [anon_sym_transform] = ACTIONS(3411), + [anon_sym_filter] = ACTIONS(3411), + [anon_sym_find] = ACTIONS(3411), + [anon_sym_remove] = ACTIONS(3411), + [anon_sym_reduce] = ACTIONS(3411), + [anon_sym_select] = ACTIONS(3411), + [anon_sym_insert] = ACTIONS(3411), + [anon_sym_async] = ACTIONS(3411), + [anon_sym_PIPE] = ACTIONS(3411), + [anon_sym_table] = ACTIONS(3411), + [anon_sym_assert] = ACTIONS(3411), + [anon_sym_assert_equal] = ACTIONS(3411), + [anon_sym_download] = ACTIONS(3411), + [anon_sym_help] = ACTIONS(3411), + [anon_sym_length] = ACTIONS(3411), + [anon_sym_output] = ACTIONS(3411), + [anon_sym_output_error] = ACTIONS(3411), + [anon_sym_type] = ACTIONS(3411), + [anon_sym_append] = ACTIONS(3411), + [anon_sym_metadata] = ACTIONS(3411), + [anon_sym_move] = ACTIONS(3411), + [anon_sym_read] = ACTIONS(3411), + [anon_sym_workdir] = ACTIONS(3411), + [anon_sym_write] = ACTIONS(3411), + [anon_sym_from_json] = ACTIONS(3411), + [anon_sym_to_json] = ACTIONS(3411), + [anon_sym_to_string] = ACTIONS(3411), + [anon_sym_to_float] = ACTIONS(3411), + [anon_sym_bash] = ACTIONS(3411), + [anon_sym_fish] = ACTIONS(3411), + [anon_sym_raw] = ACTIONS(3411), + [anon_sym_sh] = ACTIONS(3411), + [anon_sym_zsh] = ACTIONS(3411), + [anon_sym_random] = ACTIONS(3411), + [anon_sym_random_boolean] = ACTIONS(3411), + [anon_sym_random_float] = ACTIONS(3411), + [anon_sym_random_integer] = ACTIONS(3411), + [anon_sym_columns] = ACTIONS(3411), + [anon_sym_rows] = ACTIONS(3411), + [anon_sym_reverse] = ACTIONS(3411), + }, + [845] = { + [ts_builtin_sym_end] = ACTIONS(3405), + [sym_identifier] = ACTIONS(3407), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_RBRACE] = ACTIONS(3405), + [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_LPAREN] = ACTIONS(3405), + [anon_sym_RPAREN] = ACTIONS(3405), + [anon_sym_COMMA] = ACTIONS(3405), + [sym_integer] = ACTIONS(3407), + [sym_float] = ACTIONS(3405), + [sym_string] = ACTIONS(3405), + [anon_sym_true] = ACTIONS(3407), + [anon_sym_false] = ACTIONS(3407), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_RBRACK] = ACTIONS(3405), + [anon_sym_COLON] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(3405), + [anon_sym_PLUS] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(3405), + [anon_sym_SLASH] = ACTIONS(3405), + [anon_sym_PERCENT] = ACTIONS(3405), + [anon_sym_EQ_EQ] = ACTIONS(3405), + [anon_sym_BANG_EQ] = ACTIONS(3405), + [anon_sym_AMP_AMP] = ACTIONS(3405), + [anon_sym_PIPE_PIPE] = ACTIONS(3405), + [anon_sym_GT] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3407), + [anon_sym_GT_EQ] = ACTIONS(3405), + [anon_sym_LT_EQ] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3407), + [anon_sym_match] = ACTIONS(3407), + [anon_sym_EQ_GT] = ACTIONS(3405), + [anon_sym_while] = ACTIONS(3407), + [anon_sym_for] = ACTIONS(3407), + [anon_sym_asyncfor] = ACTIONS(3405), + [anon_sym_transform] = ACTIONS(3407), + [anon_sym_filter] = ACTIONS(3407), + [anon_sym_find] = ACTIONS(3407), + [anon_sym_remove] = ACTIONS(3407), + [anon_sym_reduce] = ACTIONS(3407), + [anon_sym_select] = ACTIONS(3407), + [anon_sym_insert] = ACTIONS(3407), + [anon_sym_async] = ACTIONS(3407), + [anon_sym_PIPE] = ACTIONS(3407), + [anon_sym_table] = ACTIONS(3407), + [anon_sym_assert] = ACTIONS(3407), + [anon_sym_assert_equal] = ACTIONS(3407), + [anon_sym_download] = ACTIONS(3407), + [anon_sym_help] = ACTIONS(3407), + [anon_sym_length] = ACTIONS(3407), + [anon_sym_output] = ACTIONS(3407), + [anon_sym_output_error] = ACTIONS(3407), + [anon_sym_type] = ACTIONS(3407), + [anon_sym_append] = ACTIONS(3407), + [anon_sym_metadata] = ACTIONS(3407), + [anon_sym_move] = ACTIONS(3407), + [anon_sym_read] = ACTIONS(3407), + [anon_sym_workdir] = ACTIONS(3407), + [anon_sym_write] = ACTIONS(3407), + [anon_sym_from_json] = ACTIONS(3407), + [anon_sym_to_json] = ACTIONS(3407), + [anon_sym_to_string] = ACTIONS(3407), + [anon_sym_to_float] = ACTIONS(3407), + [anon_sym_bash] = ACTIONS(3407), + [anon_sym_fish] = ACTIONS(3407), + [anon_sym_raw] = ACTIONS(3407), + [anon_sym_sh] = ACTIONS(3407), + [anon_sym_zsh] = ACTIONS(3407), + [anon_sym_random] = ACTIONS(3407), + [anon_sym_random_boolean] = ACTIONS(3407), + [anon_sym_random_float] = ACTIONS(3407), + [anon_sym_random_integer] = ACTIONS(3407), + [anon_sym_columns] = ACTIONS(3407), + [anon_sym_rows] = ACTIONS(3407), + [anon_sym_reverse] = ACTIONS(3407), + }, + [846] = { + [ts_builtin_sym_end] = ACTIONS(3307), + [sym_identifier] = ACTIONS(3309), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3307), + [anon_sym_RBRACE] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_RPAREN] = ACTIONS(3307), + [anon_sym_COMMA] = ACTIONS(3307), + [sym_integer] = ACTIONS(3309), + [sym_float] = ACTIONS(3307), + [sym_string] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(3309), + [anon_sym_false] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3307), + [anon_sym_RBRACK] = ACTIONS(3307), + [anon_sym_COLON] = ACTIONS(3307), + [anon_sym_DOT_DOT] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3307), + [anon_sym_SLASH] = ACTIONS(3307), + [anon_sym_PERCENT] = ACTIONS(3307), + [anon_sym_EQ_EQ] = ACTIONS(3307), + [anon_sym_BANG_EQ] = ACTIONS(3307), + [anon_sym_AMP_AMP] = ACTIONS(3307), + [anon_sym_PIPE_PIPE] = ACTIONS(3307), + [anon_sym_GT] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_GT_EQ] = ACTIONS(3307), + [anon_sym_LT_EQ] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_match] = ACTIONS(3309), + [anon_sym_EQ_GT] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_asyncfor] = ACTIONS(3307), + [anon_sym_transform] = ACTIONS(3309), + [anon_sym_filter] = ACTIONS(3309), + [anon_sym_find] = ACTIONS(3309), + [anon_sym_remove] = ACTIONS(3309), + [anon_sym_reduce] = ACTIONS(3309), + [anon_sym_select] = ACTIONS(3309), + [anon_sym_insert] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_table] = ACTIONS(3309), + [anon_sym_assert] = ACTIONS(3309), + [anon_sym_assert_equal] = ACTIONS(3309), + [anon_sym_download] = ACTIONS(3309), + [anon_sym_help] = ACTIONS(3309), + [anon_sym_length] = ACTIONS(3309), + [anon_sym_output] = ACTIONS(3309), + [anon_sym_output_error] = ACTIONS(3309), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_append] = ACTIONS(3309), + [anon_sym_metadata] = ACTIONS(3309), + [anon_sym_move] = ACTIONS(3309), + [anon_sym_read] = ACTIONS(3309), + [anon_sym_workdir] = ACTIONS(3309), + [anon_sym_write] = ACTIONS(3309), + [anon_sym_from_json] = ACTIONS(3309), + [anon_sym_to_json] = ACTIONS(3309), + [anon_sym_to_string] = ACTIONS(3309), + [anon_sym_to_float] = ACTIONS(3309), + [anon_sym_bash] = ACTIONS(3309), + [anon_sym_fish] = ACTIONS(3309), + [anon_sym_raw] = ACTIONS(3309), + [anon_sym_sh] = ACTIONS(3309), + [anon_sym_zsh] = ACTIONS(3309), + [anon_sym_random] = ACTIONS(3309), + [anon_sym_random_boolean] = ACTIONS(3309), + [anon_sym_random_float] = ACTIONS(3309), + [anon_sym_random_integer] = ACTIONS(3309), + [anon_sym_columns] = ACTIONS(3309), + [anon_sym_rows] = ACTIONS(3309), + [anon_sym_reverse] = ACTIONS(3309), + }, + [847] = { + [sym_math_operator] = STATE(1142), + [sym_logic_operator] = STATE(1143), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3248), + [sym_string] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_asyncfor] = ACTIONS(3248), + [anon_sym_transform] = ACTIONS(3250), + [anon_sym_filter] = ACTIONS(3250), + [anon_sym_find] = ACTIONS(3250), + [anon_sym_remove] = ACTIONS(3250), + [anon_sym_reduce] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_insert] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_table] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_assert_equal] = ACTIONS(3250), + [anon_sym_download] = ACTIONS(3250), + [anon_sym_help] = ACTIONS(3250), + [anon_sym_length] = ACTIONS(3250), + [anon_sym_output] = ACTIONS(3250), + [anon_sym_output_error] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_append] = ACTIONS(3250), + [anon_sym_metadata] = ACTIONS(3250), + [anon_sym_move] = ACTIONS(3250), + [anon_sym_read] = ACTIONS(3250), + [anon_sym_workdir] = ACTIONS(3250), + [anon_sym_write] = ACTIONS(3250), + [anon_sym_from_json] = ACTIONS(3250), + [anon_sym_to_json] = ACTIONS(3250), + [anon_sym_to_string] = ACTIONS(3250), + [anon_sym_to_float] = ACTIONS(3250), + [anon_sym_bash] = ACTIONS(3250), + [anon_sym_fish] = ACTIONS(3250), + [anon_sym_raw] = ACTIONS(3250), + [anon_sym_sh] = ACTIONS(3250), + [anon_sym_zsh] = ACTIONS(3250), + [anon_sym_random] = ACTIONS(3250), + [anon_sym_random_boolean] = ACTIONS(3250), + [anon_sym_random_float] = ACTIONS(3250), + [anon_sym_random_integer] = ACTIONS(3250), + [anon_sym_columns] = ACTIONS(3250), + [anon_sym_rows] = ACTIONS(3250), + [anon_sym_reverse] = ACTIONS(3250), + }, + [848] = { + [ts_builtin_sym_end] = ACTIONS(3371), + [sym_identifier] = ACTIONS(3373), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3371), + [anon_sym_RBRACE] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3371), + [anon_sym_RPAREN] = ACTIONS(3371), + [anon_sym_COMMA] = ACTIONS(3371), + [sym_integer] = ACTIONS(3373), + [sym_float] = ACTIONS(3371), + [sym_string] = ACTIONS(3371), + [anon_sym_true] = ACTIONS(3373), + [anon_sym_false] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3371), + [anon_sym_RBRACK] = ACTIONS(3371), + [anon_sym_COLON] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3373), + [anon_sym_STAR] = ACTIONS(3371), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_PERCENT] = ACTIONS(3371), + [anon_sym_EQ_EQ] = ACTIONS(3371), + [anon_sym_BANG_EQ] = ACTIONS(3371), + [anon_sym_AMP_AMP] = ACTIONS(3371), + [anon_sym_PIPE_PIPE] = ACTIONS(3371), + [anon_sym_GT] = ACTIONS(3373), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_GT_EQ] = ACTIONS(3371), + [anon_sym_LT_EQ] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3373), + [anon_sym_match] = ACTIONS(3373), + [anon_sym_EQ_GT] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3373), + [anon_sym_for] = ACTIONS(3373), + [anon_sym_asyncfor] = ACTIONS(3371), + [anon_sym_transform] = ACTIONS(3373), + [anon_sym_filter] = ACTIONS(3373), + [anon_sym_find] = ACTIONS(3373), + [anon_sym_remove] = ACTIONS(3373), + [anon_sym_reduce] = ACTIONS(3373), + [anon_sym_select] = ACTIONS(3373), + [anon_sym_insert] = ACTIONS(3373), + [anon_sym_async] = ACTIONS(3373), + [anon_sym_PIPE] = ACTIONS(3373), + [anon_sym_table] = ACTIONS(3373), + [anon_sym_assert] = ACTIONS(3373), + [anon_sym_assert_equal] = ACTIONS(3373), + [anon_sym_download] = ACTIONS(3373), + [anon_sym_help] = ACTIONS(3373), + [anon_sym_length] = ACTIONS(3373), + [anon_sym_output] = ACTIONS(3373), + [anon_sym_output_error] = ACTIONS(3373), + [anon_sym_type] = ACTIONS(3373), + [anon_sym_append] = ACTIONS(3373), + [anon_sym_metadata] = ACTIONS(3373), + [anon_sym_move] = ACTIONS(3373), + [anon_sym_read] = ACTIONS(3373), + [anon_sym_workdir] = ACTIONS(3373), + [anon_sym_write] = ACTIONS(3373), + [anon_sym_from_json] = ACTIONS(3373), + [anon_sym_to_json] = ACTIONS(3373), + [anon_sym_to_string] = ACTIONS(3373), + [anon_sym_to_float] = ACTIONS(3373), + [anon_sym_bash] = ACTIONS(3373), + [anon_sym_fish] = ACTIONS(3373), + [anon_sym_raw] = ACTIONS(3373), + [anon_sym_sh] = ACTIONS(3373), + [anon_sym_zsh] = ACTIONS(3373), + [anon_sym_random] = ACTIONS(3373), + [anon_sym_random_boolean] = ACTIONS(3373), + [anon_sym_random_float] = ACTIONS(3373), + [anon_sym_random_integer] = ACTIONS(3373), + [anon_sym_columns] = ACTIONS(3373), + [anon_sym_rows] = ACTIONS(3373), + [anon_sym_reverse] = ACTIONS(3373), + }, + [849] = { + [sym_math_operator] = STATE(1142), + [sym_logic_operator] = STATE(1143), + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3254), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3252), + [sym_integer] = ACTIONS(3254), + [sym_float] = ACTIONS(3252), + [sym_string] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_DOT_DOT] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_match] = ACTIONS(3254), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_asyncfor] = ACTIONS(3252), + [anon_sym_transform] = ACTIONS(3254), + [anon_sym_filter] = ACTIONS(3254), + [anon_sym_find] = ACTIONS(3254), + [anon_sym_remove] = ACTIONS(3254), + [anon_sym_reduce] = ACTIONS(3254), + [anon_sym_select] = ACTIONS(3254), + [anon_sym_insert] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_table] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_assert_equal] = ACTIONS(3254), + [anon_sym_download] = ACTIONS(3254), + [anon_sym_help] = ACTIONS(3254), + [anon_sym_length] = ACTIONS(3254), + [anon_sym_output] = ACTIONS(3254), + [anon_sym_output_error] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_append] = ACTIONS(3254), + [anon_sym_metadata] = ACTIONS(3254), + [anon_sym_move] = ACTIONS(3254), + [anon_sym_read] = ACTIONS(3254), + [anon_sym_workdir] = ACTIONS(3254), + [anon_sym_write] = ACTIONS(3254), + [anon_sym_from_json] = ACTIONS(3254), + [anon_sym_to_json] = ACTIONS(3254), + [anon_sym_to_string] = ACTIONS(3254), + [anon_sym_to_float] = ACTIONS(3254), + [anon_sym_bash] = ACTIONS(3254), + [anon_sym_fish] = ACTIONS(3254), + [anon_sym_raw] = ACTIONS(3254), + [anon_sym_sh] = ACTIONS(3254), + [anon_sym_zsh] = ACTIONS(3254), + [anon_sym_random] = ACTIONS(3254), + [anon_sym_random_boolean] = ACTIONS(3254), + [anon_sym_random_float] = ACTIONS(3254), + [anon_sym_random_integer] = ACTIONS(3254), + [anon_sym_columns] = ACTIONS(3254), + [anon_sym_rows] = ACTIONS(3254), + [anon_sym_reverse] = ACTIONS(3254), + }, + [850] = { + [sym_math_operator] = STATE(1142), + [sym_logic_operator] = STATE(1143), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3242), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [sym_integer] = ACTIONS(3242), + [sym_float] = ACTIONS(3240), + [sym_string] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(1438), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_asyncfor] = ACTIONS(3240), + [anon_sym_transform] = ACTIONS(3242), + [anon_sym_filter] = ACTIONS(3242), + [anon_sym_find] = ACTIONS(3242), + [anon_sym_remove] = ACTIONS(3242), + [anon_sym_reduce] = ACTIONS(3242), + [anon_sym_select] = ACTIONS(3242), + [anon_sym_insert] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_table] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_assert_equal] = ACTIONS(3242), + [anon_sym_download] = ACTIONS(3242), + [anon_sym_help] = ACTIONS(3242), + [anon_sym_length] = ACTIONS(3242), + [anon_sym_output] = ACTIONS(3242), + [anon_sym_output_error] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_append] = ACTIONS(3242), + [anon_sym_metadata] = ACTIONS(3242), + [anon_sym_move] = ACTIONS(3242), + [anon_sym_read] = ACTIONS(3242), + [anon_sym_workdir] = ACTIONS(3242), + [anon_sym_write] = ACTIONS(3242), + [anon_sym_from_json] = ACTIONS(3242), + [anon_sym_to_json] = ACTIONS(3242), + [anon_sym_to_string] = ACTIONS(3242), + [anon_sym_to_float] = ACTIONS(3242), + [anon_sym_bash] = ACTIONS(3242), + [anon_sym_fish] = ACTIONS(3242), + [anon_sym_raw] = ACTIONS(3242), + [anon_sym_sh] = ACTIONS(3242), + [anon_sym_zsh] = ACTIONS(3242), + [anon_sym_random] = ACTIONS(3242), + [anon_sym_random_boolean] = ACTIONS(3242), + [anon_sym_random_float] = ACTIONS(3242), + [anon_sym_random_integer] = ACTIONS(3242), + [anon_sym_columns] = ACTIONS(3242), + [anon_sym_rows] = ACTIONS(3242), + [anon_sym_reverse] = ACTIONS(3242), + }, + [851] = { + [ts_builtin_sym_end] = ACTIONS(3317), + [sym_identifier] = ACTIONS(3319), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_RPAREN] = ACTIONS(3317), + [anon_sym_COMMA] = ACTIONS(3317), + [sym_integer] = ACTIONS(3319), + [sym_float] = ACTIONS(3317), + [sym_string] = ACTIONS(3317), + [anon_sym_true] = ACTIONS(3319), + [anon_sym_false] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_RBRACK] = ACTIONS(3317), + [anon_sym_COLON] = ACTIONS(3317), + [anon_sym_DOT_DOT] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_PERCENT] = ACTIONS(3317), + [anon_sym_EQ_EQ] = ACTIONS(3317), + [anon_sym_BANG_EQ] = ACTIONS(3317), + [anon_sym_AMP_AMP] = ACTIONS(3317), + [anon_sym_PIPE_PIPE] = ACTIONS(3317), + [anon_sym_GT] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3317), + [anon_sym_LT_EQ] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_match] = ACTIONS(3319), + [anon_sym_EQ_GT] = ACTIONS(3317), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_asyncfor] = ACTIONS(3317), + [anon_sym_transform] = ACTIONS(3319), + [anon_sym_filter] = ACTIONS(3319), + [anon_sym_find] = ACTIONS(3319), + [anon_sym_remove] = ACTIONS(3319), + [anon_sym_reduce] = ACTIONS(3319), + [anon_sym_select] = ACTIONS(3319), + [anon_sym_insert] = ACTIONS(3319), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_PIPE] = ACTIONS(3319), + [anon_sym_table] = ACTIONS(3319), + [anon_sym_assert] = ACTIONS(3319), + [anon_sym_assert_equal] = ACTIONS(3319), + [anon_sym_download] = ACTIONS(3319), + [anon_sym_help] = ACTIONS(3319), + [anon_sym_length] = ACTIONS(3319), + [anon_sym_output] = ACTIONS(3319), + [anon_sym_output_error] = ACTIONS(3319), + [anon_sym_type] = ACTIONS(3319), + [anon_sym_append] = ACTIONS(3319), + [anon_sym_metadata] = ACTIONS(3319), + [anon_sym_move] = ACTIONS(3319), + [anon_sym_read] = ACTIONS(3319), + [anon_sym_workdir] = ACTIONS(3319), + [anon_sym_write] = ACTIONS(3319), + [anon_sym_from_json] = ACTIONS(3319), + [anon_sym_to_json] = ACTIONS(3319), + [anon_sym_to_string] = ACTIONS(3319), + [anon_sym_to_float] = ACTIONS(3319), + [anon_sym_bash] = ACTIONS(3319), + [anon_sym_fish] = ACTIONS(3319), + [anon_sym_raw] = ACTIONS(3319), + [anon_sym_sh] = ACTIONS(3319), + [anon_sym_zsh] = ACTIONS(3319), + [anon_sym_random] = ACTIONS(3319), + [anon_sym_random_boolean] = ACTIONS(3319), + [anon_sym_random_float] = ACTIONS(3319), + [anon_sym_random_integer] = ACTIONS(3319), + [anon_sym_columns] = ACTIONS(3319), + [anon_sym_rows] = ACTIONS(3319), + [anon_sym_reverse] = ACTIONS(3319), + }, + [852] = { + [sym_math_operator] = STATE(1142), + [sym_logic_operator] = STATE(1143), + [ts_builtin_sym_end] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3264), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [sym_integer] = ACTIONS(3264), + [sym_float] = ACTIONS(3262), + [sym_string] = ACTIONS(3262), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_DOT_DOT] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_match] = ACTIONS(3264), + [anon_sym_EQ_GT] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_asyncfor] = ACTIONS(3262), + [anon_sym_transform] = ACTIONS(3264), + [anon_sym_filter] = ACTIONS(3264), + [anon_sym_find] = ACTIONS(3264), + [anon_sym_remove] = ACTIONS(3264), + [anon_sym_reduce] = ACTIONS(3264), + [anon_sym_select] = ACTIONS(3264), + [anon_sym_insert] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_table] = ACTIONS(3264), + [anon_sym_assert] = ACTIONS(3264), + [anon_sym_assert_equal] = ACTIONS(3264), + [anon_sym_download] = ACTIONS(3264), + [anon_sym_help] = ACTIONS(3264), + [anon_sym_length] = ACTIONS(3264), + [anon_sym_output] = ACTIONS(3264), + [anon_sym_output_error] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_append] = ACTIONS(3264), + [anon_sym_metadata] = ACTIONS(3264), + [anon_sym_move] = ACTIONS(3264), + [anon_sym_read] = ACTIONS(3264), + [anon_sym_workdir] = ACTIONS(3264), + [anon_sym_write] = ACTIONS(3264), + [anon_sym_from_json] = ACTIONS(3264), + [anon_sym_to_json] = ACTIONS(3264), + [anon_sym_to_string] = ACTIONS(3264), + [anon_sym_to_float] = ACTIONS(3264), + [anon_sym_bash] = ACTIONS(3264), + [anon_sym_fish] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3264), + [anon_sym_sh] = ACTIONS(3264), + [anon_sym_zsh] = ACTIONS(3264), + [anon_sym_random] = ACTIONS(3264), + [anon_sym_random_boolean] = ACTIONS(3264), + [anon_sym_random_float] = ACTIONS(3264), + [anon_sym_random_integer] = ACTIONS(3264), + [anon_sym_columns] = ACTIONS(3264), + [anon_sym_rows] = ACTIONS(3264), + [anon_sym_reverse] = ACTIONS(3264), + }, + [853] = { + [sym_math_operator] = STATE(1142), + [sym_logic_operator] = STATE(1143), + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_COLON] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [854] = { + [sym_math_operator] = STATE(1142), + [sym_logic_operator] = STATE(1143), + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3283), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_RPAREN] = ACTIONS(3281), + [sym_integer] = ACTIONS(3283), + [sym_float] = ACTIONS(3281), + [sym_string] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_COLON] = ACTIONS(1438), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_EQ_GT] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_asyncfor] = ACTIONS(3281), + [anon_sym_transform] = ACTIONS(3283), + [anon_sym_filter] = ACTIONS(3283), + [anon_sym_find] = ACTIONS(3283), + [anon_sym_remove] = ACTIONS(3283), + [anon_sym_reduce] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_insert] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_table] = ACTIONS(3283), + [anon_sym_assert] = ACTIONS(3283), + [anon_sym_assert_equal] = ACTIONS(3283), + [anon_sym_download] = ACTIONS(3283), + [anon_sym_help] = ACTIONS(3283), + [anon_sym_length] = ACTIONS(3283), + [anon_sym_output] = ACTIONS(3283), + [anon_sym_output_error] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_append] = ACTIONS(3283), + [anon_sym_metadata] = ACTIONS(3283), + [anon_sym_move] = ACTIONS(3283), + [anon_sym_read] = ACTIONS(3283), + [anon_sym_workdir] = ACTIONS(3283), + [anon_sym_write] = ACTIONS(3283), + [anon_sym_from_json] = ACTIONS(3283), + [anon_sym_to_json] = ACTIONS(3283), + [anon_sym_to_string] = ACTIONS(3283), + [anon_sym_to_float] = ACTIONS(3283), + [anon_sym_bash] = ACTIONS(3283), + [anon_sym_fish] = ACTIONS(3283), + [anon_sym_raw] = ACTIONS(3283), + [anon_sym_sh] = ACTIONS(3283), + [anon_sym_zsh] = ACTIONS(3283), + [anon_sym_random] = ACTIONS(3283), + [anon_sym_random_boolean] = ACTIONS(3283), + [anon_sym_random_float] = ACTIONS(3283), + [anon_sym_random_integer] = ACTIONS(3283), + [anon_sym_columns] = ACTIONS(3283), + [anon_sym_rows] = ACTIONS(3283), + [anon_sym_reverse] = ACTIONS(3283), + }, + [855] = { + [sym_expression] = STATE(975), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(773), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_COMMA] = ACTIONS(2435), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [856] = { + [ts_builtin_sym_end] = ACTIONS(3432), + [sym_identifier] = ACTIONS(3434), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3432), + [anon_sym_RBRACE] = ACTIONS(3432), + [anon_sym_SEMI] = ACTIONS(3432), + [anon_sym_LPAREN] = ACTIONS(3432), + [anon_sym_RPAREN] = ACTIONS(3432), + [anon_sym_COMMA] = ACTIONS(3432), + [sym_integer] = ACTIONS(3434), + [sym_float] = ACTIONS(3432), + [sym_string] = ACTIONS(3432), + [anon_sym_true] = ACTIONS(3434), + [anon_sym_false] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3432), + [anon_sym_RBRACK] = ACTIONS(3432), + [anon_sym_COLON] = ACTIONS(3432), + [anon_sym_DOT_DOT] = ACTIONS(3432), + [anon_sym_PLUS] = ACTIONS(3432), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_STAR] = ACTIONS(3432), + [anon_sym_SLASH] = ACTIONS(3432), + [anon_sym_PERCENT] = ACTIONS(3432), + [anon_sym_EQ_EQ] = ACTIONS(3432), + [anon_sym_BANG_EQ] = ACTIONS(3432), + [anon_sym_AMP_AMP] = ACTIONS(3432), + [anon_sym_PIPE_PIPE] = ACTIONS(3432), + [anon_sym_GT] = ACTIONS(3434), + [anon_sym_LT] = ACTIONS(3434), + [anon_sym_GT_EQ] = ACTIONS(3432), + [anon_sym_LT_EQ] = ACTIONS(3432), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_match] = ACTIONS(3434), + [anon_sym_EQ_GT] = ACTIONS(3432), + [anon_sym_while] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_asyncfor] = ACTIONS(3432), + [anon_sym_transform] = ACTIONS(3434), + [anon_sym_filter] = ACTIONS(3434), + [anon_sym_find] = ACTIONS(3434), + [anon_sym_remove] = ACTIONS(3434), + [anon_sym_reduce] = ACTIONS(3434), + [anon_sym_select] = ACTIONS(3434), + [anon_sym_insert] = ACTIONS(3434), + [anon_sym_async] = ACTIONS(3434), + [anon_sym_PIPE] = ACTIONS(3434), + [anon_sym_table] = ACTIONS(3434), + [anon_sym_assert] = ACTIONS(3434), + [anon_sym_assert_equal] = ACTIONS(3434), + [anon_sym_download] = ACTIONS(3434), + [anon_sym_help] = ACTIONS(3434), + [anon_sym_length] = ACTIONS(3434), + [anon_sym_output] = ACTIONS(3434), + [anon_sym_output_error] = ACTIONS(3434), + [anon_sym_type] = ACTIONS(3434), + [anon_sym_append] = ACTIONS(3434), + [anon_sym_metadata] = ACTIONS(3434), + [anon_sym_move] = ACTIONS(3434), + [anon_sym_read] = ACTIONS(3434), + [anon_sym_workdir] = ACTIONS(3434), + [anon_sym_write] = ACTIONS(3434), + [anon_sym_from_json] = ACTIONS(3434), + [anon_sym_to_json] = ACTIONS(3434), + [anon_sym_to_string] = ACTIONS(3434), + [anon_sym_to_float] = ACTIONS(3434), + [anon_sym_bash] = ACTIONS(3434), + [anon_sym_fish] = ACTIONS(3434), + [anon_sym_raw] = ACTIONS(3434), + [anon_sym_sh] = ACTIONS(3434), + [anon_sym_zsh] = ACTIONS(3434), + [anon_sym_random] = ACTIONS(3434), + [anon_sym_random_boolean] = ACTIONS(3434), + [anon_sym_random_float] = ACTIONS(3434), + [anon_sym_random_integer] = ACTIONS(3434), + [anon_sym_columns] = ACTIONS(3434), + [anon_sym_rows] = ACTIONS(3434), + [anon_sym_reverse] = ACTIONS(3434), + }, + [857] = { + [ts_builtin_sym_end] = ACTIONS(3325), + [sym_identifier] = ACTIONS(3327), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_RPAREN] = ACTIONS(3325), + [anon_sym_COMMA] = ACTIONS(3325), + [sym_integer] = ACTIONS(3327), + [sym_float] = ACTIONS(3325), + [sym_string] = ACTIONS(3325), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_RBRACK] = ACTIONS(3325), + [anon_sym_COLON] = ACTIONS(3325), + [anon_sym_DOT_DOT] = ACTIONS(3325), + [anon_sym_PLUS] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_STAR] = ACTIONS(3325), + [anon_sym_SLASH] = ACTIONS(3325), + [anon_sym_PERCENT] = ACTIONS(3325), + [anon_sym_EQ_EQ] = ACTIONS(3325), + [anon_sym_BANG_EQ] = ACTIONS(3325), + [anon_sym_AMP_AMP] = ACTIONS(3325), + [anon_sym_PIPE_PIPE] = ACTIONS(3325), + [anon_sym_GT] = ACTIONS(3327), + [anon_sym_LT] = ACTIONS(3327), + [anon_sym_GT_EQ] = ACTIONS(3325), + [anon_sym_LT_EQ] = ACTIONS(3325), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_match] = ACTIONS(3327), + [anon_sym_EQ_GT] = ACTIONS(3325), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_asyncfor] = ACTIONS(3325), + [anon_sym_transform] = ACTIONS(3327), + [anon_sym_filter] = ACTIONS(3327), + [anon_sym_find] = ACTIONS(3327), + [anon_sym_remove] = ACTIONS(3327), + [anon_sym_reduce] = ACTIONS(3327), + [anon_sym_select] = ACTIONS(3327), + [anon_sym_insert] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_PIPE] = ACTIONS(3327), + [anon_sym_table] = ACTIONS(3327), + [anon_sym_assert] = ACTIONS(3327), + [anon_sym_assert_equal] = ACTIONS(3327), + [anon_sym_download] = ACTIONS(3327), + [anon_sym_help] = ACTIONS(3327), + [anon_sym_length] = ACTIONS(3327), + [anon_sym_output] = ACTIONS(3327), + [anon_sym_output_error] = ACTIONS(3327), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_append] = ACTIONS(3327), + [anon_sym_metadata] = ACTIONS(3327), + [anon_sym_move] = ACTIONS(3327), + [anon_sym_read] = ACTIONS(3327), + [anon_sym_workdir] = ACTIONS(3327), + [anon_sym_write] = ACTIONS(3327), + [anon_sym_from_json] = ACTIONS(3327), + [anon_sym_to_json] = ACTIONS(3327), + [anon_sym_to_string] = ACTIONS(3327), + [anon_sym_to_float] = ACTIONS(3327), + [anon_sym_bash] = ACTIONS(3327), + [anon_sym_fish] = ACTIONS(3327), + [anon_sym_raw] = ACTIONS(3327), + [anon_sym_sh] = ACTIONS(3327), + [anon_sym_zsh] = ACTIONS(3327), + [anon_sym_random] = ACTIONS(3327), + [anon_sym_random_boolean] = ACTIONS(3327), + [anon_sym_random_float] = ACTIONS(3327), + [anon_sym_random_integer] = ACTIONS(3327), + [anon_sym_columns] = ACTIONS(3327), + [anon_sym_rows] = ACTIONS(3327), + [anon_sym_reverse] = ACTIONS(3327), + }, + [858] = { + [ts_builtin_sym_end] = ACTIONS(3321), + [sym_identifier] = ACTIONS(3323), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_RPAREN] = ACTIONS(3321), + [anon_sym_COMMA] = ACTIONS(3321), + [sym_integer] = ACTIONS(3323), + [sym_float] = ACTIONS(3321), + [sym_string] = ACTIONS(3321), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_RBRACK] = ACTIONS(3321), + [anon_sym_COLON] = ACTIONS(3321), + [anon_sym_DOT_DOT] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3321), + [anon_sym_PERCENT] = ACTIONS(3321), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3323), + [anon_sym_LT] = ACTIONS(3323), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_match] = ACTIONS(3323), + [anon_sym_EQ_GT] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_asyncfor] = ACTIONS(3321), + [anon_sym_transform] = ACTIONS(3323), + [anon_sym_filter] = ACTIONS(3323), + [anon_sym_find] = ACTIONS(3323), + [anon_sym_remove] = ACTIONS(3323), + [anon_sym_reduce] = ACTIONS(3323), + [anon_sym_select] = ACTIONS(3323), + [anon_sym_insert] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_PIPE] = ACTIONS(3323), + [anon_sym_table] = ACTIONS(3323), + [anon_sym_assert] = ACTIONS(3323), + [anon_sym_assert_equal] = ACTIONS(3323), + [anon_sym_download] = ACTIONS(3323), + [anon_sym_help] = ACTIONS(3323), + [anon_sym_length] = ACTIONS(3323), + [anon_sym_output] = ACTIONS(3323), + [anon_sym_output_error] = ACTIONS(3323), + [anon_sym_type] = ACTIONS(3323), + [anon_sym_append] = ACTIONS(3323), + [anon_sym_metadata] = ACTIONS(3323), + [anon_sym_move] = ACTIONS(3323), + [anon_sym_read] = ACTIONS(3323), + [anon_sym_workdir] = ACTIONS(3323), + [anon_sym_write] = ACTIONS(3323), + [anon_sym_from_json] = ACTIONS(3323), + [anon_sym_to_json] = ACTIONS(3323), + [anon_sym_to_string] = ACTIONS(3323), + [anon_sym_to_float] = ACTIONS(3323), + [anon_sym_bash] = ACTIONS(3323), + [anon_sym_fish] = ACTIONS(3323), + [anon_sym_raw] = ACTIONS(3323), + [anon_sym_sh] = ACTIONS(3323), + [anon_sym_zsh] = ACTIONS(3323), + [anon_sym_random] = ACTIONS(3323), + [anon_sym_random_boolean] = ACTIONS(3323), + [anon_sym_random_float] = ACTIONS(3323), + [anon_sym_random_integer] = ACTIONS(3323), + [anon_sym_columns] = ACTIONS(3323), + [anon_sym_rows] = ACTIONS(3323), + [anon_sym_reverse] = ACTIONS(3323), + }, + [859] = { + [sym_math_operator] = STATE(1322), + [sym_logic_operator] = STATE(1321), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_elseif] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [860] = { + [ts_builtin_sym_end] = ACTIONS(3383), + [sym_identifier] = ACTIONS(3385), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_RBRACE] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3383), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_RPAREN] = ACTIONS(3383), + [anon_sym_COMMA] = ACTIONS(3383), + [sym_integer] = ACTIONS(3385), + [sym_float] = ACTIONS(3383), + [sym_string] = ACTIONS(3383), + [anon_sym_true] = ACTIONS(3385), + [anon_sym_false] = ACTIONS(3385), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_RBRACK] = ACTIONS(3383), + [anon_sym_COLON] = ACTIONS(3383), + [anon_sym_DOT_DOT] = ACTIONS(3383), + [anon_sym_PLUS] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3383), + [anon_sym_SLASH] = ACTIONS(3383), + [anon_sym_PERCENT] = ACTIONS(3383), + [anon_sym_EQ_EQ] = ACTIONS(3383), + [anon_sym_BANG_EQ] = ACTIONS(3383), + [anon_sym_AMP_AMP] = ACTIONS(3383), + [anon_sym_PIPE_PIPE] = ACTIONS(3383), + [anon_sym_GT] = ACTIONS(3385), + [anon_sym_LT] = ACTIONS(3385), + [anon_sym_GT_EQ] = ACTIONS(3383), + [anon_sym_LT_EQ] = ACTIONS(3383), + [anon_sym_if] = ACTIONS(3385), + [anon_sym_match] = ACTIONS(3385), + [anon_sym_EQ_GT] = ACTIONS(3383), + [anon_sym_while] = ACTIONS(3385), + [anon_sym_for] = ACTIONS(3385), + [anon_sym_asyncfor] = ACTIONS(3383), + [anon_sym_transform] = ACTIONS(3385), + [anon_sym_filter] = ACTIONS(3385), + [anon_sym_find] = ACTIONS(3385), + [anon_sym_remove] = ACTIONS(3385), + [anon_sym_reduce] = ACTIONS(3385), + [anon_sym_select] = ACTIONS(3385), + [anon_sym_insert] = ACTIONS(3385), + [anon_sym_async] = ACTIONS(3385), + [anon_sym_PIPE] = ACTIONS(3385), + [anon_sym_table] = ACTIONS(3385), + [anon_sym_assert] = ACTIONS(3385), + [anon_sym_assert_equal] = ACTIONS(3385), + [anon_sym_download] = ACTIONS(3385), + [anon_sym_help] = ACTIONS(3385), + [anon_sym_length] = ACTIONS(3385), + [anon_sym_output] = ACTIONS(3385), + [anon_sym_output_error] = ACTIONS(3385), + [anon_sym_type] = ACTIONS(3385), + [anon_sym_append] = ACTIONS(3385), + [anon_sym_metadata] = ACTIONS(3385), + [anon_sym_move] = ACTIONS(3385), + [anon_sym_read] = ACTIONS(3385), + [anon_sym_workdir] = ACTIONS(3385), + [anon_sym_write] = ACTIONS(3385), + [anon_sym_from_json] = ACTIONS(3385), + [anon_sym_to_json] = ACTIONS(3385), + [anon_sym_to_string] = ACTIONS(3385), + [anon_sym_to_float] = ACTIONS(3385), + [anon_sym_bash] = ACTIONS(3385), + [anon_sym_fish] = ACTIONS(3385), + [anon_sym_raw] = ACTIONS(3385), + [anon_sym_sh] = ACTIONS(3385), + [anon_sym_zsh] = ACTIONS(3385), + [anon_sym_random] = ACTIONS(3385), + [anon_sym_random_boolean] = ACTIONS(3385), + [anon_sym_random_float] = ACTIONS(3385), + [anon_sym_random_integer] = ACTIONS(3385), + [anon_sym_columns] = ACTIONS(3385), + [anon_sym_rows] = ACTIONS(3385), + [anon_sym_reverse] = ACTIONS(3385), + }, + [861] = { + [ts_builtin_sym_end] = ACTIONS(3329), + [sym_identifier] = ACTIONS(3331), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_RBRACE] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_RPAREN] = ACTIONS(3329), + [anon_sym_COMMA] = ACTIONS(3329), + [sym_integer] = ACTIONS(3331), + [sym_float] = ACTIONS(3329), + [sym_string] = ACTIONS(3329), + [anon_sym_true] = ACTIONS(3331), + [anon_sym_false] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_RBRACK] = ACTIONS(3329), + [anon_sym_COLON] = ACTIONS(3329), + [anon_sym_DOT_DOT] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3329), + [anon_sym_SLASH] = ACTIONS(3329), + [anon_sym_PERCENT] = ACTIONS(3329), + [anon_sym_EQ_EQ] = ACTIONS(3329), + [anon_sym_BANG_EQ] = ACTIONS(3329), + [anon_sym_AMP_AMP] = ACTIONS(3329), + [anon_sym_PIPE_PIPE] = ACTIONS(3329), + [anon_sym_GT] = ACTIONS(3331), + [anon_sym_LT] = ACTIONS(3331), + [anon_sym_GT_EQ] = ACTIONS(3329), + [anon_sym_LT_EQ] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_match] = ACTIONS(3331), + [anon_sym_EQ_GT] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_asyncfor] = ACTIONS(3329), + [anon_sym_transform] = ACTIONS(3331), + [anon_sym_filter] = ACTIONS(3331), + [anon_sym_find] = ACTIONS(3331), + [anon_sym_remove] = ACTIONS(3331), + [anon_sym_reduce] = ACTIONS(3331), + [anon_sym_select] = ACTIONS(3331), + [anon_sym_insert] = ACTIONS(3331), + [anon_sym_async] = ACTIONS(3331), + [anon_sym_PIPE] = ACTIONS(3331), + [anon_sym_table] = ACTIONS(3331), + [anon_sym_assert] = ACTIONS(3331), + [anon_sym_assert_equal] = ACTIONS(3331), + [anon_sym_download] = ACTIONS(3331), + [anon_sym_help] = ACTIONS(3331), + [anon_sym_length] = ACTIONS(3331), + [anon_sym_output] = ACTIONS(3331), + [anon_sym_output_error] = ACTIONS(3331), + [anon_sym_type] = ACTIONS(3331), + [anon_sym_append] = ACTIONS(3331), + [anon_sym_metadata] = ACTIONS(3331), + [anon_sym_move] = ACTIONS(3331), + [anon_sym_read] = ACTIONS(3331), + [anon_sym_workdir] = ACTIONS(3331), + [anon_sym_write] = ACTIONS(3331), + [anon_sym_from_json] = ACTIONS(3331), + [anon_sym_to_json] = ACTIONS(3331), + [anon_sym_to_string] = ACTIONS(3331), + [anon_sym_to_float] = ACTIONS(3331), + [anon_sym_bash] = ACTIONS(3331), + [anon_sym_fish] = ACTIONS(3331), + [anon_sym_raw] = ACTIONS(3331), + [anon_sym_sh] = ACTIONS(3331), + [anon_sym_zsh] = ACTIONS(3331), + [anon_sym_random] = ACTIONS(3331), + [anon_sym_random_boolean] = ACTIONS(3331), + [anon_sym_random_float] = ACTIONS(3331), + [anon_sym_random_integer] = ACTIONS(3331), + [anon_sym_columns] = ACTIONS(3331), + [anon_sym_rows] = ACTIONS(3331), + [anon_sym_reverse] = ACTIONS(3331), + }, + [862] = { + [ts_builtin_sym_end] = ACTIONS(3375), + [sym_identifier] = ACTIONS(3377), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_RPAREN] = ACTIONS(3375), + [anon_sym_COMMA] = ACTIONS(3375), + [sym_integer] = ACTIONS(3377), + [sym_float] = ACTIONS(3375), + [sym_string] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_RBRACK] = ACTIONS(3375), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_DOT_DOT] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_STAR] = ACTIONS(3375), + [anon_sym_SLASH] = ACTIONS(3375), + [anon_sym_PERCENT] = ACTIONS(3375), + [anon_sym_EQ_EQ] = ACTIONS(3375), + [anon_sym_BANG_EQ] = ACTIONS(3375), + [anon_sym_AMP_AMP] = ACTIONS(3375), + [anon_sym_PIPE_PIPE] = ACTIONS(3375), + [anon_sym_GT] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_GT_EQ] = ACTIONS(3375), + [anon_sym_LT_EQ] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3377), + [anon_sym_match] = ACTIONS(3377), + [anon_sym_EQ_GT] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3377), + [anon_sym_for] = ACTIONS(3377), + [anon_sym_asyncfor] = ACTIONS(3375), + [anon_sym_transform] = ACTIONS(3377), + [anon_sym_filter] = ACTIONS(3377), + [anon_sym_find] = ACTIONS(3377), + [anon_sym_remove] = ACTIONS(3377), + [anon_sym_reduce] = ACTIONS(3377), + [anon_sym_select] = ACTIONS(3377), + [anon_sym_insert] = ACTIONS(3377), + [anon_sym_async] = ACTIONS(3377), + [anon_sym_PIPE] = ACTIONS(3377), + [anon_sym_table] = ACTIONS(3377), + [anon_sym_assert] = ACTIONS(3377), + [anon_sym_assert_equal] = ACTIONS(3377), + [anon_sym_download] = ACTIONS(3377), + [anon_sym_help] = ACTIONS(3377), + [anon_sym_length] = ACTIONS(3377), + [anon_sym_output] = ACTIONS(3377), + [anon_sym_output_error] = ACTIONS(3377), + [anon_sym_type] = ACTIONS(3377), + [anon_sym_append] = ACTIONS(3377), + [anon_sym_metadata] = ACTIONS(3377), + [anon_sym_move] = ACTIONS(3377), + [anon_sym_read] = ACTIONS(3377), + [anon_sym_workdir] = ACTIONS(3377), + [anon_sym_write] = ACTIONS(3377), + [anon_sym_from_json] = ACTIONS(3377), + [anon_sym_to_json] = ACTIONS(3377), + [anon_sym_to_string] = ACTIONS(3377), + [anon_sym_to_float] = ACTIONS(3377), + [anon_sym_bash] = ACTIONS(3377), + [anon_sym_fish] = ACTIONS(3377), + [anon_sym_raw] = ACTIONS(3377), + [anon_sym_sh] = ACTIONS(3377), + [anon_sym_zsh] = ACTIONS(3377), + [anon_sym_random] = ACTIONS(3377), + [anon_sym_random_boolean] = ACTIONS(3377), + [anon_sym_random_float] = ACTIONS(3377), + [anon_sym_random_integer] = ACTIONS(3377), + [anon_sym_columns] = ACTIONS(3377), + [anon_sym_rows] = ACTIONS(3377), + [anon_sym_reverse] = ACTIONS(3377), + }, + [863] = { + [ts_builtin_sym_end] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3339), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_RPAREN] = ACTIONS(3337), + [anon_sym_COMMA] = ACTIONS(3337), + [sym_integer] = ACTIONS(3339), + [sym_float] = ACTIONS(3337), + [sym_string] = ACTIONS(3337), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_RBRACK] = ACTIONS(3337), + [anon_sym_COLON] = ACTIONS(3337), + [anon_sym_DOT_DOT] = ACTIONS(3337), + [anon_sym_PLUS] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3339), + [anon_sym_STAR] = ACTIONS(3337), + [anon_sym_SLASH] = ACTIONS(3337), + [anon_sym_PERCENT] = ACTIONS(3337), + [anon_sym_EQ_EQ] = ACTIONS(3337), + [anon_sym_BANG_EQ] = ACTIONS(3337), + [anon_sym_AMP_AMP] = ACTIONS(3337), + [anon_sym_PIPE_PIPE] = ACTIONS(3337), + [anon_sym_GT] = ACTIONS(3339), + [anon_sym_LT] = ACTIONS(3339), + [anon_sym_GT_EQ] = ACTIONS(3337), + [anon_sym_LT_EQ] = ACTIONS(3337), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_match] = ACTIONS(3339), + [anon_sym_EQ_GT] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_asyncfor] = ACTIONS(3337), + [anon_sym_transform] = ACTIONS(3339), + [anon_sym_filter] = ACTIONS(3339), + [anon_sym_find] = ACTIONS(3339), + [anon_sym_remove] = ACTIONS(3339), + [anon_sym_reduce] = ACTIONS(3339), + [anon_sym_select] = ACTIONS(3339), + [anon_sym_insert] = ACTIONS(3339), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_PIPE] = ACTIONS(3339), + [anon_sym_table] = ACTIONS(3339), + [anon_sym_assert] = ACTIONS(3339), + [anon_sym_assert_equal] = ACTIONS(3339), + [anon_sym_download] = ACTIONS(3339), + [anon_sym_help] = ACTIONS(3339), + [anon_sym_length] = ACTIONS(3339), + [anon_sym_output] = ACTIONS(3339), + [anon_sym_output_error] = ACTIONS(3339), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_append] = ACTIONS(3339), + [anon_sym_metadata] = ACTIONS(3339), + [anon_sym_move] = ACTIONS(3339), + [anon_sym_read] = ACTIONS(3339), + [anon_sym_workdir] = ACTIONS(3339), + [anon_sym_write] = ACTIONS(3339), + [anon_sym_from_json] = ACTIONS(3339), + [anon_sym_to_json] = ACTIONS(3339), + [anon_sym_to_string] = ACTIONS(3339), + [anon_sym_to_float] = ACTIONS(3339), + [anon_sym_bash] = ACTIONS(3339), + [anon_sym_fish] = ACTIONS(3339), + [anon_sym_raw] = ACTIONS(3339), + [anon_sym_sh] = ACTIONS(3339), + [anon_sym_zsh] = ACTIONS(3339), + [anon_sym_random] = ACTIONS(3339), + [anon_sym_random_boolean] = ACTIONS(3339), + [anon_sym_random_float] = ACTIONS(3339), + [anon_sym_random_integer] = ACTIONS(3339), + [anon_sym_columns] = ACTIONS(3339), + [anon_sym_rows] = ACTIONS(3339), + [anon_sym_reverse] = ACTIONS(3339), + }, + [864] = { + [ts_builtin_sym_end] = ACTIONS(3341), + [sym_identifier] = ACTIONS(3343), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_RPAREN] = ACTIONS(3341), + [anon_sym_COMMA] = ACTIONS(3341), + [sym_integer] = ACTIONS(3343), + [sym_float] = ACTIONS(3341), + [sym_string] = ACTIONS(3341), + [anon_sym_true] = ACTIONS(3343), + [anon_sym_false] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_RBRACK] = ACTIONS(3341), + [anon_sym_COLON] = ACTIONS(3341), + [anon_sym_DOT_DOT] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3343), + [anon_sym_STAR] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3341), + [anon_sym_PERCENT] = ACTIONS(3341), + [anon_sym_EQ_EQ] = ACTIONS(3341), + [anon_sym_BANG_EQ] = ACTIONS(3341), + [anon_sym_AMP_AMP] = ACTIONS(3341), + [anon_sym_PIPE_PIPE] = ACTIONS(3341), + [anon_sym_GT] = ACTIONS(3343), + [anon_sym_LT] = ACTIONS(3343), + [anon_sym_GT_EQ] = ACTIONS(3341), + [anon_sym_LT_EQ] = ACTIONS(3341), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_match] = ACTIONS(3343), + [anon_sym_EQ_GT] = ACTIONS(3341), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_asyncfor] = ACTIONS(3341), + [anon_sym_transform] = ACTIONS(3343), + [anon_sym_filter] = ACTIONS(3343), + [anon_sym_find] = ACTIONS(3343), + [anon_sym_remove] = ACTIONS(3343), + [anon_sym_reduce] = ACTIONS(3343), + [anon_sym_select] = ACTIONS(3343), + [anon_sym_insert] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_PIPE] = ACTIONS(3343), + [anon_sym_table] = ACTIONS(3343), + [anon_sym_assert] = ACTIONS(3343), + [anon_sym_assert_equal] = ACTIONS(3343), + [anon_sym_download] = ACTIONS(3343), + [anon_sym_help] = ACTIONS(3343), + [anon_sym_length] = ACTIONS(3343), + [anon_sym_output] = ACTIONS(3343), + [anon_sym_output_error] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3343), + [anon_sym_append] = ACTIONS(3343), + [anon_sym_metadata] = ACTIONS(3343), + [anon_sym_move] = ACTIONS(3343), + [anon_sym_read] = ACTIONS(3343), + [anon_sym_workdir] = ACTIONS(3343), + [anon_sym_write] = ACTIONS(3343), + [anon_sym_from_json] = ACTIONS(3343), + [anon_sym_to_json] = ACTIONS(3343), + [anon_sym_to_string] = ACTIONS(3343), + [anon_sym_to_float] = ACTIONS(3343), + [anon_sym_bash] = ACTIONS(3343), + [anon_sym_fish] = ACTIONS(3343), + [anon_sym_raw] = ACTIONS(3343), + [anon_sym_sh] = ACTIONS(3343), + [anon_sym_zsh] = ACTIONS(3343), + [anon_sym_random] = ACTIONS(3343), + [anon_sym_random_boolean] = ACTIONS(3343), + [anon_sym_random_float] = ACTIONS(3343), + [anon_sym_random_integer] = ACTIONS(3343), + [anon_sym_columns] = ACTIONS(3343), + [anon_sym_rows] = ACTIONS(3343), + [anon_sym_reverse] = ACTIONS(3343), + }, + [865] = { + [ts_builtin_sym_end] = ACTIONS(3303), + [sym_identifier] = ACTIONS(3305), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_RPAREN] = ACTIONS(3303), + [anon_sym_COMMA] = ACTIONS(3303), + [sym_integer] = ACTIONS(3305), + [sym_float] = ACTIONS(3303), + [sym_string] = ACTIONS(3303), + [anon_sym_true] = ACTIONS(3305), + [anon_sym_false] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_RBRACK] = ACTIONS(3303), + [anon_sym_COLON] = ACTIONS(3303), + [anon_sym_DOT_DOT] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3303), + [anon_sym_SLASH] = ACTIONS(3303), + [anon_sym_PERCENT] = ACTIONS(3303), + [anon_sym_EQ_EQ] = ACTIONS(3303), + [anon_sym_BANG_EQ] = ACTIONS(3303), + [anon_sym_AMP_AMP] = ACTIONS(3303), + [anon_sym_PIPE_PIPE] = ACTIONS(3303), + [anon_sym_GT] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_GT_EQ] = ACTIONS(3303), + [anon_sym_LT_EQ] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_match] = ACTIONS(3305), + [anon_sym_EQ_GT] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_asyncfor] = ACTIONS(3303), + [anon_sym_transform] = ACTIONS(3305), + [anon_sym_filter] = ACTIONS(3305), + [anon_sym_find] = ACTIONS(3305), + [anon_sym_remove] = ACTIONS(3305), + [anon_sym_reduce] = ACTIONS(3305), + [anon_sym_select] = ACTIONS(3305), + [anon_sym_insert] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_PIPE] = ACTIONS(3305), + [anon_sym_table] = ACTIONS(3305), + [anon_sym_assert] = ACTIONS(3305), + [anon_sym_assert_equal] = ACTIONS(3305), + [anon_sym_download] = ACTIONS(3305), + [anon_sym_help] = ACTIONS(3305), + [anon_sym_length] = ACTIONS(3305), + [anon_sym_output] = ACTIONS(3305), + [anon_sym_output_error] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_append] = ACTIONS(3305), + [anon_sym_metadata] = ACTIONS(3305), + [anon_sym_move] = ACTIONS(3305), + [anon_sym_read] = ACTIONS(3305), + [anon_sym_workdir] = ACTIONS(3305), + [anon_sym_write] = ACTIONS(3305), + [anon_sym_from_json] = ACTIONS(3305), + [anon_sym_to_json] = ACTIONS(3305), + [anon_sym_to_string] = ACTIONS(3305), + [anon_sym_to_float] = ACTIONS(3305), + [anon_sym_bash] = ACTIONS(3305), + [anon_sym_fish] = ACTIONS(3305), + [anon_sym_raw] = ACTIONS(3305), + [anon_sym_sh] = ACTIONS(3305), + [anon_sym_zsh] = ACTIONS(3305), + [anon_sym_random] = ACTIONS(3305), + [anon_sym_random_boolean] = ACTIONS(3305), + [anon_sym_random_float] = ACTIONS(3305), + [anon_sym_random_integer] = ACTIONS(3305), + [anon_sym_columns] = ACTIONS(3305), + [anon_sym_rows] = ACTIONS(3305), + [anon_sym_reverse] = ACTIONS(3305), + }, + [866] = { + [ts_builtin_sym_end] = ACTIONS(3401), + [sym_identifier] = ACTIONS(3403), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_RBRACE] = ACTIONS(3401), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_RPAREN] = ACTIONS(3401), + [anon_sym_COMMA] = ACTIONS(3401), + [sym_integer] = ACTIONS(3403), + [sym_float] = ACTIONS(3401), + [sym_string] = ACTIONS(3401), + [anon_sym_true] = ACTIONS(3403), + [anon_sym_false] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_RBRACK] = ACTIONS(3401), + [anon_sym_COLON] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_STAR] = ACTIONS(3401), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_PERCENT] = ACTIONS(3401), + [anon_sym_EQ_EQ] = ACTIONS(3401), + [anon_sym_BANG_EQ] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_PIPE_PIPE] = ACTIONS(3401), + [anon_sym_GT] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_GT_EQ] = ACTIONS(3401), + [anon_sym_LT_EQ] = ACTIONS(3401), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_match] = ACTIONS(3403), + [anon_sym_EQ_GT] = ACTIONS(3401), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_asyncfor] = ACTIONS(3401), + [anon_sym_transform] = ACTIONS(3403), + [anon_sym_filter] = ACTIONS(3403), + [anon_sym_find] = ACTIONS(3403), + [anon_sym_remove] = ACTIONS(3403), + [anon_sym_reduce] = ACTIONS(3403), + [anon_sym_select] = ACTIONS(3403), + [anon_sym_insert] = ACTIONS(3403), + [anon_sym_async] = ACTIONS(3403), + [anon_sym_PIPE] = ACTIONS(3403), + [anon_sym_table] = ACTIONS(3403), + [anon_sym_assert] = ACTIONS(3403), + [anon_sym_assert_equal] = ACTIONS(3403), + [anon_sym_download] = ACTIONS(3403), + [anon_sym_help] = ACTIONS(3403), + [anon_sym_length] = ACTIONS(3403), + [anon_sym_output] = ACTIONS(3403), + [anon_sym_output_error] = ACTIONS(3403), + [anon_sym_type] = ACTIONS(3403), + [anon_sym_append] = ACTIONS(3403), + [anon_sym_metadata] = ACTIONS(3403), + [anon_sym_move] = ACTIONS(3403), + [anon_sym_read] = ACTIONS(3403), + [anon_sym_workdir] = ACTIONS(3403), + [anon_sym_write] = ACTIONS(3403), + [anon_sym_from_json] = ACTIONS(3403), + [anon_sym_to_json] = ACTIONS(3403), + [anon_sym_to_string] = ACTIONS(3403), + [anon_sym_to_float] = ACTIONS(3403), + [anon_sym_bash] = ACTIONS(3403), + [anon_sym_fish] = ACTIONS(3403), + [anon_sym_raw] = ACTIONS(3403), + [anon_sym_sh] = ACTIONS(3403), + [anon_sym_zsh] = ACTIONS(3403), + [anon_sym_random] = ACTIONS(3403), + [anon_sym_random_boolean] = ACTIONS(3403), + [anon_sym_random_float] = ACTIONS(3403), + [anon_sym_random_integer] = ACTIONS(3403), + [anon_sym_columns] = ACTIONS(3403), + [anon_sym_rows] = ACTIONS(3403), + [anon_sym_reverse] = ACTIONS(3403), + }, + [867] = { + [sym_assignment_operator] = STATE(536), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2435), + [sym_string] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(2441), + [anon_sym_DASH_EQ] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_asyncfor] = ACTIONS(2435), + [anon_sym_transform] = ACTIONS(2437), + [anon_sym_filter] = ACTIONS(2437), + [anon_sym_find] = ACTIONS(2437), + [anon_sym_remove] = ACTIONS(2437), + [anon_sym_reduce] = ACTIONS(2437), + [anon_sym_select] = ACTIONS(2437), + [anon_sym_insert] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_table] = ACTIONS(2437), + [anon_sym_assert] = ACTIONS(2437), + [anon_sym_assert_equal] = ACTIONS(2437), + [anon_sym_download] = ACTIONS(2437), + [anon_sym_help] = ACTIONS(2437), + [anon_sym_length] = ACTIONS(2437), + [anon_sym_output] = ACTIONS(2437), + [anon_sym_output_error] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_append] = ACTIONS(2437), + [anon_sym_metadata] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_read] = ACTIONS(2437), + [anon_sym_workdir] = ACTIONS(2437), + [anon_sym_write] = ACTIONS(2437), + [anon_sym_from_json] = ACTIONS(2437), + [anon_sym_to_json] = ACTIONS(2437), + [anon_sym_to_string] = ACTIONS(2437), + [anon_sym_to_float] = ACTIONS(2437), + [anon_sym_bash] = ACTIONS(2437), + [anon_sym_fish] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_sh] = ACTIONS(2437), + [anon_sym_zsh] = ACTIONS(2437), + [anon_sym_random] = ACTIONS(2437), + [anon_sym_random_boolean] = ACTIONS(2437), + [anon_sym_random_float] = ACTIONS(2437), + [anon_sym_random_integer] = ACTIONS(2437), + [anon_sym_columns] = ACTIONS(2437), + [anon_sym_rows] = ACTIONS(2437), + [anon_sym_reverse] = ACTIONS(2437), + }, + [868] = { + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2541), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_RPAREN] = ACTIONS(2518), + [anon_sym_COMMA] = ACTIONS(2518), + [sym_integer] = ACTIONS(2541), + [sym_float] = ACTIONS(2518), + [sym_string] = ACTIONS(2518), + [anon_sym_true] = ACTIONS(2541), + [anon_sym_false] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym_RBRACK] = ACTIONS(2518), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_EQ_GT] = ACTIONS(2518), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_asyncfor] = ACTIONS(2518), + [anon_sym_transform] = ACTIONS(2541), + [anon_sym_filter] = ACTIONS(2541), + [anon_sym_find] = ACTIONS(2541), + [anon_sym_remove] = ACTIONS(2541), + [anon_sym_reduce] = ACTIONS(2541), + [anon_sym_select] = ACTIONS(2541), + [anon_sym_insert] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_table] = ACTIONS(2541), + [anon_sym_assert] = ACTIONS(2541), + [anon_sym_assert_equal] = ACTIONS(2541), + [anon_sym_download] = ACTIONS(2541), + [anon_sym_help] = ACTIONS(2541), + [anon_sym_length] = ACTIONS(2541), + [anon_sym_output] = ACTIONS(2541), + [anon_sym_output_error] = ACTIONS(2541), + [anon_sym_type] = ACTIONS(2541), + [anon_sym_append] = ACTIONS(2541), + [anon_sym_metadata] = ACTIONS(2541), + [anon_sym_move] = ACTIONS(2541), + [anon_sym_read] = ACTIONS(2541), + [anon_sym_workdir] = ACTIONS(2541), + [anon_sym_write] = ACTIONS(2541), + [anon_sym_from_json] = ACTIONS(2541), + [anon_sym_to_json] = ACTIONS(2541), + [anon_sym_to_string] = ACTIONS(2541), + [anon_sym_to_float] = ACTIONS(2541), + [anon_sym_bash] = ACTIONS(2541), + [anon_sym_fish] = ACTIONS(2541), + [anon_sym_raw] = ACTIONS(2541), + [anon_sym_sh] = ACTIONS(2541), + [anon_sym_zsh] = ACTIONS(2541), + [anon_sym_random] = ACTIONS(2541), + [anon_sym_random_boolean] = ACTIONS(2541), + [anon_sym_random_float] = ACTIONS(2541), + [anon_sym_random_integer] = ACTIONS(2541), + [anon_sym_columns] = ACTIONS(2541), + [anon_sym_rows] = ACTIONS(2541), + [anon_sym_reverse] = ACTIONS(2541), + }, + [869] = { + [sym_math_operator] = STATE(1142), + [sym_logic_operator] = STATE(1143), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3248), + [sym_string] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_asyncfor] = ACTIONS(3248), + [anon_sym_transform] = ACTIONS(3250), + [anon_sym_filter] = ACTIONS(3250), + [anon_sym_find] = ACTIONS(3250), + [anon_sym_remove] = ACTIONS(3250), + [anon_sym_reduce] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_insert] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_table] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_assert_equal] = ACTIONS(3250), + [anon_sym_download] = ACTIONS(3250), + [anon_sym_help] = ACTIONS(3250), + [anon_sym_length] = ACTIONS(3250), + [anon_sym_output] = ACTIONS(3250), + [anon_sym_output_error] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_append] = ACTIONS(3250), + [anon_sym_metadata] = ACTIONS(3250), + [anon_sym_move] = ACTIONS(3250), + [anon_sym_read] = ACTIONS(3250), + [anon_sym_workdir] = ACTIONS(3250), + [anon_sym_write] = ACTIONS(3250), + [anon_sym_from_json] = ACTIONS(3250), + [anon_sym_to_json] = ACTIONS(3250), + [anon_sym_to_string] = ACTIONS(3250), + [anon_sym_to_float] = ACTIONS(3250), + [anon_sym_bash] = ACTIONS(3250), + [anon_sym_fish] = ACTIONS(3250), + [anon_sym_raw] = ACTIONS(3250), + [anon_sym_sh] = ACTIONS(3250), + [anon_sym_zsh] = ACTIONS(3250), + [anon_sym_random] = ACTIONS(3250), + [anon_sym_random_boolean] = ACTIONS(3250), + [anon_sym_random_float] = ACTIONS(3250), + [anon_sym_random_integer] = ACTIONS(3250), + [anon_sym_columns] = ACTIONS(3250), + [anon_sym_rows] = ACTIONS(3250), + [anon_sym_reverse] = ACTIONS(3250), + }, + [870] = { + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_RBRACK] = ACTIONS(3275), + [anon_sym_COLON] = ACTIONS(3275), + [anon_sym_DOT_DOT] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_STAR] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_PERCENT] = ACTIONS(3275), + [anon_sym_EQ_EQ] = ACTIONS(3275), + [anon_sym_BANG_EQ] = ACTIONS(3275), + [anon_sym_AMP_AMP] = ACTIONS(3275), + [anon_sym_PIPE_PIPE] = ACTIONS(3275), + [anon_sym_GT] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_GT_EQ] = ACTIONS(3275), + [anon_sym_LT_EQ] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [871] = { + [ts_builtin_sym_end] = ACTIONS(3296), + [sym_identifier] = ACTIONS(3298), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_RPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3296), + [sym_integer] = ACTIONS(3298), + [sym_float] = ACTIONS(3296), + [sym_string] = ACTIONS(3296), + [anon_sym_true] = ACTIONS(3298), + [anon_sym_false] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3296), + [anon_sym_LT_EQ] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_match] = ACTIONS(3298), + [anon_sym_EQ_GT] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_asyncfor] = ACTIONS(3296), + [anon_sym_transform] = ACTIONS(3298), + [anon_sym_filter] = ACTIONS(3298), + [anon_sym_find] = ACTIONS(3298), + [anon_sym_remove] = ACTIONS(3298), + [anon_sym_reduce] = ACTIONS(3298), + [anon_sym_select] = ACTIONS(3298), + [anon_sym_insert] = ACTIONS(3298), + [anon_sym_async] = ACTIONS(3298), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_table] = ACTIONS(3298), + [anon_sym_assert] = ACTIONS(3298), + [anon_sym_assert_equal] = ACTIONS(3298), + [anon_sym_download] = ACTIONS(3298), + [anon_sym_help] = ACTIONS(3298), + [anon_sym_length] = ACTIONS(3298), + [anon_sym_output] = ACTIONS(3298), + [anon_sym_output_error] = ACTIONS(3298), + [anon_sym_type] = ACTIONS(3298), + [anon_sym_append] = ACTIONS(3298), + [anon_sym_metadata] = ACTIONS(3298), + [anon_sym_move] = ACTIONS(3298), + [anon_sym_read] = ACTIONS(3298), + [anon_sym_workdir] = ACTIONS(3298), + [anon_sym_write] = ACTIONS(3298), + [anon_sym_from_json] = ACTIONS(3298), + [anon_sym_to_json] = ACTIONS(3298), + [anon_sym_to_string] = ACTIONS(3298), + [anon_sym_to_float] = ACTIONS(3298), + [anon_sym_bash] = ACTIONS(3298), + [anon_sym_fish] = ACTIONS(3298), + [anon_sym_raw] = ACTIONS(3298), + [anon_sym_sh] = ACTIONS(3298), + [anon_sym_zsh] = ACTIONS(3298), + [anon_sym_random] = ACTIONS(3298), + [anon_sym_random_boolean] = ACTIONS(3298), + [anon_sym_random_float] = ACTIONS(3298), + [anon_sym_random_integer] = ACTIONS(3298), + [anon_sym_columns] = ACTIONS(3298), + [anon_sym_rows] = ACTIONS(3298), + [anon_sym_reverse] = ACTIONS(3298), + }, + [872] = { + [ts_builtin_sym_end] = ACTIONS(3333), + [sym_identifier] = ACTIONS(3335), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_RPAREN] = ACTIONS(3333), + [anon_sym_COMMA] = ACTIONS(3333), + [sym_integer] = ACTIONS(3335), + [sym_float] = ACTIONS(3333), + [sym_string] = ACTIONS(3333), + [anon_sym_true] = ACTIONS(3335), + [anon_sym_false] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_RBRACK] = ACTIONS(3333), + [anon_sym_COLON] = ACTIONS(3333), + [anon_sym_DOT_DOT] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3335), + [anon_sym_STAR] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3333), + [anon_sym_PERCENT] = ACTIONS(3333), + [anon_sym_EQ_EQ] = ACTIONS(3333), + [anon_sym_BANG_EQ] = ACTIONS(3333), + [anon_sym_AMP_AMP] = ACTIONS(3333), + [anon_sym_PIPE_PIPE] = ACTIONS(3333), + [anon_sym_GT] = ACTIONS(3335), + [anon_sym_LT] = ACTIONS(3335), + [anon_sym_GT_EQ] = ACTIONS(3333), + [anon_sym_LT_EQ] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_match] = ACTIONS(3335), + [anon_sym_EQ_GT] = ACTIONS(3333), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_asyncfor] = ACTIONS(3333), + [anon_sym_transform] = ACTIONS(3335), + [anon_sym_filter] = ACTIONS(3335), + [anon_sym_find] = ACTIONS(3335), + [anon_sym_remove] = ACTIONS(3335), + [anon_sym_reduce] = ACTIONS(3335), + [anon_sym_select] = ACTIONS(3335), + [anon_sym_insert] = ACTIONS(3335), + [anon_sym_async] = ACTIONS(3335), + [anon_sym_PIPE] = ACTIONS(3335), + [anon_sym_table] = ACTIONS(3335), + [anon_sym_assert] = ACTIONS(3335), + [anon_sym_assert_equal] = ACTIONS(3335), + [anon_sym_download] = ACTIONS(3335), + [anon_sym_help] = ACTIONS(3335), + [anon_sym_length] = ACTIONS(3335), + [anon_sym_output] = ACTIONS(3335), + [anon_sym_output_error] = ACTIONS(3335), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_append] = ACTIONS(3335), + [anon_sym_metadata] = ACTIONS(3335), + [anon_sym_move] = ACTIONS(3335), + [anon_sym_read] = ACTIONS(3335), + [anon_sym_workdir] = ACTIONS(3335), + [anon_sym_write] = ACTIONS(3335), + [anon_sym_from_json] = ACTIONS(3335), + [anon_sym_to_json] = ACTIONS(3335), + [anon_sym_to_string] = ACTIONS(3335), + [anon_sym_to_float] = ACTIONS(3335), + [anon_sym_bash] = ACTIONS(3335), + [anon_sym_fish] = ACTIONS(3335), + [anon_sym_raw] = ACTIONS(3335), + [anon_sym_sh] = ACTIONS(3335), + [anon_sym_zsh] = ACTIONS(3335), + [anon_sym_random] = ACTIONS(3335), + [anon_sym_random_boolean] = ACTIONS(3335), + [anon_sym_random_float] = ACTIONS(3335), + [anon_sym_random_integer] = ACTIONS(3335), + [anon_sym_columns] = ACTIONS(3335), + [anon_sym_rows] = ACTIONS(3335), + [anon_sym_reverse] = ACTIONS(3335), + }, + [873] = { + [ts_builtin_sym_end] = ACTIONS(3367), + [sym_identifier] = ACTIONS(3369), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_RPAREN] = ACTIONS(3367), + [anon_sym_COMMA] = ACTIONS(3367), + [sym_integer] = ACTIONS(3369), + [sym_float] = ACTIONS(3367), + [sym_string] = ACTIONS(3367), + [anon_sym_true] = ACTIONS(3369), + [anon_sym_false] = ACTIONS(3369), + [anon_sym_LBRACK] = ACTIONS(3367), + [anon_sym_RBRACK] = ACTIONS(3367), + [anon_sym_COLON] = ACTIONS(3367), + [anon_sym_DOT_DOT] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(3367), + [anon_sym_PERCENT] = ACTIONS(3367), + [anon_sym_EQ_EQ] = ACTIONS(3367), + [anon_sym_BANG_EQ] = ACTIONS(3367), + [anon_sym_AMP_AMP] = ACTIONS(3367), + [anon_sym_PIPE_PIPE] = ACTIONS(3367), + [anon_sym_GT] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3369), + [anon_sym_GT_EQ] = ACTIONS(3367), + [anon_sym_LT_EQ] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3369), + [anon_sym_match] = ACTIONS(3369), + [anon_sym_EQ_GT] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3369), + [anon_sym_for] = ACTIONS(3369), + [anon_sym_asyncfor] = ACTIONS(3367), + [anon_sym_transform] = ACTIONS(3369), + [anon_sym_filter] = ACTIONS(3369), + [anon_sym_find] = ACTIONS(3369), + [anon_sym_remove] = ACTIONS(3369), + [anon_sym_reduce] = ACTIONS(3369), + [anon_sym_select] = ACTIONS(3369), + [anon_sym_insert] = ACTIONS(3369), + [anon_sym_async] = ACTIONS(3369), + [anon_sym_PIPE] = ACTIONS(3369), + [anon_sym_table] = ACTIONS(3369), + [anon_sym_assert] = ACTIONS(3369), + [anon_sym_assert_equal] = ACTIONS(3369), + [anon_sym_download] = ACTIONS(3369), + [anon_sym_help] = ACTIONS(3369), + [anon_sym_length] = ACTIONS(3369), + [anon_sym_output] = ACTIONS(3369), + [anon_sym_output_error] = ACTIONS(3369), + [anon_sym_type] = ACTIONS(3369), + [anon_sym_append] = ACTIONS(3369), + [anon_sym_metadata] = ACTIONS(3369), + [anon_sym_move] = ACTIONS(3369), + [anon_sym_read] = ACTIONS(3369), + [anon_sym_workdir] = ACTIONS(3369), + [anon_sym_write] = ACTIONS(3369), + [anon_sym_from_json] = ACTIONS(3369), + [anon_sym_to_json] = ACTIONS(3369), + [anon_sym_to_string] = ACTIONS(3369), + [anon_sym_to_float] = ACTIONS(3369), + [anon_sym_bash] = ACTIONS(3369), + [anon_sym_fish] = ACTIONS(3369), + [anon_sym_raw] = ACTIONS(3369), + [anon_sym_sh] = ACTIONS(3369), + [anon_sym_zsh] = ACTIONS(3369), + [anon_sym_random] = ACTIONS(3369), + [anon_sym_random_boolean] = ACTIONS(3369), + [anon_sym_random_float] = ACTIONS(3369), + [anon_sym_random_integer] = ACTIONS(3369), + [anon_sym_columns] = ACTIONS(3369), + [anon_sym_rows] = ACTIONS(3369), + [anon_sym_reverse] = ACTIONS(3369), + }, + [874] = { + [ts_builtin_sym_end] = ACTIONS(3389), + [sym_identifier] = ACTIONS(3391), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3389), + [anon_sym_RPAREN] = ACTIONS(3389), + [anon_sym_COMMA] = ACTIONS(3389), + [sym_integer] = ACTIONS(3391), + [sym_float] = ACTIONS(3389), + [sym_string] = ACTIONS(3389), + [anon_sym_true] = ACTIONS(3391), + [anon_sym_false] = ACTIONS(3391), + [anon_sym_LBRACK] = ACTIONS(3389), + [anon_sym_RBRACK] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3391), + [anon_sym_STAR] = ACTIONS(3389), + [anon_sym_SLASH] = ACTIONS(3389), + [anon_sym_PERCENT] = ACTIONS(3389), + [anon_sym_EQ_EQ] = ACTIONS(3389), + [anon_sym_BANG_EQ] = ACTIONS(3389), + [anon_sym_AMP_AMP] = ACTIONS(3389), + [anon_sym_PIPE_PIPE] = ACTIONS(3389), + [anon_sym_GT] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3391), + [anon_sym_GT_EQ] = ACTIONS(3389), + [anon_sym_LT_EQ] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_match] = ACTIONS(3391), + [anon_sym_EQ_GT] = ACTIONS(3389), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_asyncfor] = ACTIONS(3389), + [anon_sym_transform] = ACTIONS(3391), + [anon_sym_filter] = ACTIONS(3391), + [anon_sym_find] = ACTIONS(3391), + [anon_sym_remove] = ACTIONS(3391), + [anon_sym_reduce] = ACTIONS(3391), + [anon_sym_select] = ACTIONS(3391), + [anon_sym_insert] = ACTIONS(3391), + [anon_sym_async] = ACTIONS(3391), + [anon_sym_PIPE] = ACTIONS(3391), + [anon_sym_table] = ACTIONS(3391), + [anon_sym_assert] = ACTIONS(3391), + [anon_sym_assert_equal] = ACTIONS(3391), + [anon_sym_download] = ACTIONS(3391), + [anon_sym_help] = ACTIONS(3391), + [anon_sym_length] = ACTIONS(3391), + [anon_sym_output] = ACTIONS(3391), + [anon_sym_output_error] = ACTIONS(3391), + [anon_sym_type] = ACTIONS(3391), + [anon_sym_append] = ACTIONS(3391), + [anon_sym_metadata] = ACTIONS(3391), + [anon_sym_move] = ACTIONS(3391), + [anon_sym_read] = ACTIONS(3391), + [anon_sym_workdir] = ACTIONS(3391), + [anon_sym_write] = ACTIONS(3391), + [anon_sym_from_json] = ACTIONS(3391), + [anon_sym_to_json] = ACTIONS(3391), + [anon_sym_to_string] = ACTIONS(3391), + [anon_sym_to_float] = ACTIONS(3391), + [anon_sym_bash] = ACTIONS(3391), + [anon_sym_fish] = ACTIONS(3391), + [anon_sym_raw] = ACTIONS(3391), + [anon_sym_sh] = ACTIONS(3391), + [anon_sym_zsh] = ACTIONS(3391), + [anon_sym_random] = ACTIONS(3391), + [anon_sym_random_boolean] = ACTIONS(3391), + [anon_sym_random_float] = ACTIONS(3391), + [anon_sym_random_integer] = ACTIONS(3391), + [anon_sym_columns] = ACTIONS(3391), + [anon_sym_rows] = ACTIONS(3391), + [anon_sym_reverse] = ACTIONS(3391), + }, + [875] = { + [ts_builtin_sym_end] = ACTIONS(3355), + [sym_identifier] = ACTIONS(3357), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_RBRACE] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_RPAREN] = ACTIONS(3355), + [anon_sym_COMMA] = ACTIONS(3355), + [sym_integer] = ACTIONS(3357), + [sym_float] = ACTIONS(3355), + [sym_string] = ACTIONS(3355), + [anon_sym_true] = ACTIONS(3357), + [anon_sym_false] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_RBRACK] = ACTIONS(3355), + [anon_sym_COLON] = ACTIONS(3355), + [anon_sym_DOT_DOT] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3355), + [anon_sym_SLASH] = ACTIONS(3355), + [anon_sym_PERCENT] = ACTIONS(3355), + [anon_sym_EQ_EQ] = ACTIONS(3355), + [anon_sym_BANG_EQ] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_GT] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_GT_EQ] = ACTIONS(3355), + [anon_sym_LT_EQ] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3357), + [anon_sym_match] = ACTIONS(3357), + [anon_sym_EQ_GT] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3357), + [anon_sym_asyncfor] = ACTIONS(3355), + [anon_sym_transform] = ACTIONS(3357), + [anon_sym_filter] = ACTIONS(3357), + [anon_sym_find] = ACTIONS(3357), + [anon_sym_remove] = ACTIONS(3357), + [anon_sym_reduce] = ACTIONS(3357), + [anon_sym_select] = ACTIONS(3357), + [anon_sym_insert] = ACTIONS(3357), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(3357), + [anon_sym_table] = ACTIONS(3357), + [anon_sym_assert] = ACTIONS(3357), + [anon_sym_assert_equal] = ACTIONS(3357), + [anon_sym_download] = ACTIONS(3357), + [anon_sym_help] = ACTIONS(3357), + [anon_sym_length] = ACTIONS(3357), + [anon_sym_output] = ACTIONS(3357), + [anon_sym_output_error] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3357), + [anon_sym_append] = ACTIONS(3357), + [anon_sym_metadata] = ACTIONS(3357), + [anon_sym_move] = ACTIONS(3357), + [anon_sym_read] = ACTIONS(3357), + [anon_sym_workdir] = ACTIONS(3357), + [anon_sym_write] = ACTIONS(3357), + [anon_sym_from_json] = ACTIONS(3357), + [anon_sym_to_json] = ACTIONS(3357), + [anon_sym_to_string] = ACTIONS(3357), + [anon_sym_to_float] = ACTIONS(3357), + [anon_sym_bash] = ACTIONS(3357), + [anon_sym_fish] = ACTIONS(3357), + [anon_sym_raw] = ACTIONS(3357), + [anon_sym_sh] = ACTIONS(3357), + [anon_sym_zsh] = ACTIONS(3357), + [anon_sym_random] = ACTIONS(3357), + [anon_sym_random_boolean] = ACTIONS(3357), + [anon_sym_random_float] = ACTIONS(3357), + [anon_sym_random_integer] = ACTIONS(3357), + [anon_sym_columns] = ACTIONS(3357), + [anon_sym_rows] = ACTIONS(3357), + [anon_sym_reverse] = ACTIONS(3357), + }, + [876] = { + [sym_math_operator] = STATE(1381), + [sym_logic_operator] = STATE(1380), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3235), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3622), + [sym_integer] = ACTIONS(3235), + [sym_float] = ACTIONS(3233), + [sym_string] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_asyncfor] = ACTIONS(3233), + [anon_sym_transform] = ACTIONS(3235), + [anon_sym_filter] = ACTIONS(3235), + [anon_sym_find] = ACTIONS(3235), + [anon_sym_remove] = ACTIONS(3235), + [anon_sym_reduce] = ACTIONS(3235), + [anon_sym_select] = ACTIONS(3235), + [anon_sym_insert] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_table] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_assert_equal] = ACTIONS(3235), + [anon_sym_download] = ACTIONS(3235), + [anon_sym_help] = ACTIONS(3235), + [anon_sym_length] = ACTIONS(3235), + [anon_sym_output] = ACTIONS(3235), + [anon_sym_output_error] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_append] = ACTIONS(3235), + [anon_sym_metadata] = ACTIONS(3235), + [anon_sym_move] = ACTIONS(3235), + [anon_sym_read] = ACTIONS(3235), + [anon_sym_workdir] = ACTIONS(3235), + [anon_sym_write] = ACTIONS(3235), + [anon_sym_from_json] = ACTIONS(3235), + [anon_sym_to_json] = ACTIONS(3235), + [anon_sym_to_string] = ACTIONS(3235), + [anon_sym_to_float] = ACTIONS(3235), + [anon_sym_bash] = ACTIONS(3235), + [anon_sym_fish] = ACTIONS(3235), + [anon_sym_raw] = ACTIONS(3235), + [anon_sym_sh] = ACTIONS(3235), + [anon_sym_zsh] = ACTIONS(3235), + [anon_sym_random] = ACTIONS(3235), + [anon_sym_random_boolean] = ACTIONS(3235), + [anon_sym_random_float] = ACTIONS(3235), + [anon_sym_random_integer] = ACTIONS(3235), + [anon_sym_columns] = ACTIONS(3235), + [anon_sym_rows] = ACTIONS(3235), + [anon_sym_reverse] = ACTIONS(3235), + }, + [877] = { + [sym_math_operator] = STATE(1472), + [sym_logic_operator] = STATE(1480), + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_COLON] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_elseif] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [878] = { + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [anon_sym_COMMA] = ACTIONS(3229), + [sym_integer] = ACTIONS(3231), + [sym_float] = ACTIONS(3229), + [sym_string] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_RBRACK] = ACTIONS(3229), + [anon_sym_COLON] = ACTIONS(3229), + [anon_sym_DOT_DOT] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_asyncfor] = ACTIONS(3229), + [anon_sym_transform] = ACTIONS(3231), + [anon_sym_filter] = ACTIONS(3231), + [anon_sym_find] = ACTIONS(3231), + [anon_sym_remove] = ACTIONS(3231), + [anon_sym_reduce] = ACTIONS(3231), + [anon_sym_select] = ACTIONS(3231), + [anon_sym_insert] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_table] = ACTIONS(3231), + [anon_sym_assert] = ACTIONS(3231), + [anon_sym_assert_equal] = ACTIONS(3231), + [anon_sym_download] = ACTIONS(3231), + [anon_sym_help] = ACTIONS(3231), + [anon_sym_length] = ACTIONS(3231), + [anon_sym_output] = ACTIONS(3231), + [anon_sym_output_error] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_append] = ACTIONS(3231), + [anon_sym_metadata] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_read] = ACTIONS(3231), + [anon_sym_workdir] = ACTIONS(3231), + [anon_sym_write] = ACTIONS(3231), + [anon_sym_from_json] = ACTIONS(3231), + [anon_sym_to_json] = ACTIONS(3231), + [anon_sym_to_string] = ACTIONS(3231), + [anon_sym_to_float] = ACTIONS(3231), + [anon_sym_bash] = ACTIONS(3231), + [anon_sym_fish] = ACTIONS(3231), + [anon_sym_raw] = ACTIONS(3231), + [anon_sym_sh] = ACTIONS(3231), + [anon_sym_zsh] = ACTIONS(3231), + [anon_sym_random] = ACTIONS(3231), + [anon_sym_random_boolean] = ACTIONS(3231), + [anon_sym_random_float] = ACTIONS(3231), + [anon_sym_random_integer] = ACTIONS(3231), + [anon_sym_columns] = ACTIONS(3231), + [anon_sym_rows] = ACTIONS(3231), + [anon_sym_reverse] = ACTIONS(3231), + }, + [879] = { + [ts_builtin_sym_end] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3421), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_RBRACE] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_RPAREN] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3419), + [sym_integer] = ACTIONS(3421), + [sym_float] = ACTIONS(3419), + [sym_string] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_RBRACK] = ACTIONS(3419), + [anon_sym_COLON] = ACTIONS(3419), + [anon_sym_DOT_DOT] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3421), + [anon_sym_STAR] = ACTIONS(3419), + [anon_sym_SLASH] = ACTIONS(3419), + [anon_sym_PERCENT] = ACTIONS(3419), + [anon_sym_EQ_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3419), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_LT_EQ] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3421), + [anon_sym_match] = ACTIONS(3421), + [anon_sym_EQ_GT] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3421), + [anon_sym_for] = ACTIONS(3421), + [anon_sym_asyncfor] = ACTIONS(3419), + [anon_sym_transform] = ACTIONS(3421), + [anon_sym_filter] = ACTIONS(3421), + [anon_sym_find] = ACTIONS(3421), + [anon_sym_remove] = ACTIONS(3421), + [anon_sym_reduce] = ACTIONS(3421), + [anon_sym_select] = ACTIONS(3421), + [anon_sym_insert] = ACTIONS(3421), + [anon_sym_async] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(3421), + [anon_sym_table] = ACTIONS(3421), + [anon_sym_assert] = ACTIONS(3421), + [anon_sym_assert_equal] = ACTIONS(3421), + [anon_sym_download] = ACTIONS(3421), + [anon_sym_help] = ACTIONS(3421), + [anon_sym_length] = ACTIONS(3421), + [anon_sym_output] = ACTIONS(3421), + [anon_sym_output_error] = ACTIONS(3421), + [anon_sym_type] = ACTIONS(3421), + [anon_sym_append] = ACTIONS(3421), + [anon_sym_metadata] = ACTIONS(3421), + [anon_sym_move] = ACTIONS(3421), + [anon_sym_read] = ACTIONS(3421), + [anon_sym_workdir] = ACTIONS(3421), + [anon_sym_write] = ACTIONS(3421), + [anon_sym_from_json] = ACTIONS(3421), + [anon_sym_to_json] = ACTIONS(3421), + [anon_sym_to_string] = ACTIONS(3421), + [anon_sym_to_float] = ACTIONS(3421), + [anon_sym_bash] = ACTIONS(3421), + [anon_sym_fish] = ACTIONS(3421), + [anon_sym_raw] = ACTIONS(3421), + [anon_sym_sh] = ACTIONS(3421), + [anon_sym_zsh] = ACTIONS(3421), + [anon_sym_random] = ACTIONS(3421), + [anon_sym_random_boolean] = ACTIONS(3421), + [anon_sym_random_float] = ACTIONS(3421), + [anon_sym_random_integer] = ACTIONS(3421), + [anon_sym_columns] = ACTIONS(3421), + [anon_sym_rows] = ACTIONS(3421), + [anon_sym_reverse] = ACTIONS(3421), + }, + [880] = { + [ts_builtin_sym_end] = ACTIONS(3379), + [sym_identifier] = ACTIONS(3381), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3379), + [anon_sym_RBRACE] = ACTIONS(3379), + [anon_sym_SEMI] = ACTIONS(3379), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3379), + [anon_sym_COMMA] = ACTIONS(3379), + [sym_integer] = ACTIONS(3381), + [sym_float] = ACTIONS(3379), + [sym_string] = ACTIONS(3379), + [anon_sym_true] = ACTIONS(3381), + [anon_sym_false] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3379), + [anon_sym_RBRACK] = ACTIONS(3379), + [anon_sym_COLON] = ACTIONS(3379), + [anon_sym_DOT_DOT] = ACTIONS(3379), + [anon_sym_PLUS] = ACTIONS(3379), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_SLASH] = ACTIONS(3379), + [anon_sym_PERCENT] = ACTIONS(3379), + [anon_sym_EQ_EQ] = ACTIONS(3379), + [anon_sym_BANG_EQ] = ACTIONS(3379), + [anon_sym_AMP_AMP] = ACTIONS(3379), + [anon_sym_PIPE_PIPE] = ACTIONS(3379), + [anon_sym_GT] = ACTIONS(3381), + [anon_sym_LT] = ACTIONS(3381), + [anon_sym_GT_EQ] = ACTIONS(3379), + [anon_sym_LT_EQ] = ACTIONS(3379), + [anon_sym_if] = ACTIONS(3381), + [anon_sym_match] = ACTIONS(3381), + [anon_sym_EQ_GT] = ACTIONS(3379), + [anon_sym_while] = ACTIONS(3381), + [anon_sym_for] = ACTIONS(3381), + [anon_sym_asyncfor] = ACTIONS(3379), + [anon_sym_transform] = ACTIONS(3381), + [anon_sym_filter] = ACTIONS(3381), + [anon_sym_find] = ACTIONS(3381), + [anon_sym_remove] = ACTIONS(3381), + [anon_sym_reduce] = ACTIONS(3381), + [anon_sym_select] = ACTIONS(3381), + [anon_sym_insert] = ACTIONS(3381), + [anon_sym_async] = ACTIONS(3381), + [anon_sym_PIPE] = ACTIONS(3381), + [anon_sym_table] = ACTIONS(3381), + [anon_sym_assert] = ACTIONS(3381), + [anon_sym_assert_equal] = ACTIONS(3381), + [anon_sym_download] = ACTIONS(3381), + [anon_sym_help] = ACTIONS(3381), + [anon_sym_length] = ACTIONS(3381), + [anon_sym_output] = ACTIONS(3381), + [anon_sym_output_error] = ACTIONS(3381), + [anon_sym_type] = ACTIONS(3381), + [anon_sym_append] = ACTIONS(3381), + [anon_sym_metadata] = ACTIONS(3381), + [anon_sym_move] = ACTIONS(3381), + [anon_sym_read] = ACTIONS(3381), + [anon_sym_workdir] = ACTIONS(3381), + [anon_sym_write] = ACTIONS(3381), + [anon_sym_from_json] = ACTIONS(3381), + [anon_sym_to_json] = ACTIONS(3381), + [anon_sym_to_string] = ACTIONS(3381), + [anon_sym_to_float] = ACTIONS(3381), + [anon_sym_bash] = ACTIONS(3381), + [anon_sym_fish] = ACTIONS(3381), + [anon_sym_raw] = ACTIONS(3381), + [anon_sym_sh] = ACTIONS(3381), + [anon_sym_zsh] = ACTIONS(3381), + [anon_sym_random] = ACTIONS(3381), + [anon_sym_random_boolean] = ACTIONS(3381), + [anon_sym_random_float] = ACTIONS(3381), + [anon_sym_random_integer] = ACTIONS(3381), + [anon_sym_columns] = ACTIONS(3381), + [anon_sym_rows] = ACTIONS(3381), + [anon_sym_reverse] = ACTIONS(3381), + }, + [881] = { + [ts_builtin_sym_end] = ACTIONS(3359), + [sym_identifier] = ACTIONS(3361), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3359), + [anon_sym_RBRACE] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3359), + [anon_sym_RPAREN] = ACTIONS(3359), + [anon_sym_COMMA] = ACTIONS(3359), + [sym_integer] = ACTIONS(3361), + [sym_float] = ACTIONS(3359), + [sym_string] = ACTIONS(3359), + [anon_sym_true] = ACTIONS(3361), + [anon_sym_false] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3359), + [anon_sym_RBRACK] = ACTIONS(3359), + [anon_sym_COLON] = ACTIONS(3359), + [anon_sym_DOT_DOT] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_STAR] = ACTIONS(3359), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_PERCENT] = ACTIONS(3359), + [anon_sym_EQ_EQ] = ACTIONS(3359), + [anon_sym_BANG_EQ] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [anon_sym_GT] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_GT_EQ] = ACTIONS(3359), + [anon_sym_LT_EQ] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_EQ_GT] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_asyncfor] = ACTIONS(3359), + [anon_sym_transform] = ACTIONS(3361), + [anon_sym_filter] = ACTIONS(3361), + [anon_sym_find] = ACTIONS(3361), + [anon_sym_remove] = ACTIONS(3361), + [anon_sym_reduce] = ACTIONS(3361), + [anon_sym_select] = ACTIONS(3361), + [anon_sym_insert] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_PIPE] = ACTIONS(3361), + [anon_sym_table] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_assert_equal] = ACTIONS(3361), + [anon_sym_download] = ACTIONS(3361), + [anon_sym_help] = ACTIONS(3361), + [anon_sym_length] = ACTIONS(3361), + [anon_sym_output] = ACTIONS(3361), + [anon_sym_output_error] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_append] = ACTIONS(3361), + [anon_sym_metadata] = ACTIONS(3361), + [anon_sym_move] = ACTIONS(3361), + [anon_sym_read] = ACTIONS(3361), + [anon_sym_workdir] = ACTIONS(3361), + [anon_sym_write] = ACTIONS(3361), + [anon_sym_from_json] = ACTIONS(3361), + [anon_sym_to_json] = ACTIONS(3361), + [anon_sym_to_string] = ACTIONS(3361), + [anon_sym_to_float] = ACTIONS(3361), + [anon_sym_bash] = ACTIONS(3361), + [anon_sym_fish] = ACTIONS(3361), + [anon_sym_raw] = ACTIONS(3361), + [anon_sym_sh] = ACTIONS(3361), + [anon_sym_zsh] = ACTIONS(3361), + [anon_sym_random] = ACTIONS(3361), + [anon_sym_random_boolean] = ACTIONS(3361), + [anon_sym_random_float] = ACTIONS(3361), + [anon_sym_random_integer] = ACTIONS(3361), + [anon_sym_columns] = ACTIONS(3361), + [anon_sym_rows] = ACTIONS(3361), + [anon_sym_reverse] = ACTIONS(3361), + }, + [882] = { + [sym_math_operator] = STATE(1153), + [sym_logic_operator] = STATE(1077), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3242), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [sym_integer] = ACTIONS(3242), + [sym_float] = ACTIONS(3240), + [sym_string] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_asyncfor] = ACTIONS(3240), + [anon_sym_transform] = ACTIONS(3242), + [anon_sym_filter] = ACTIONS(3242), + [anon_sym_find] = ACTIONS(3242), + [anon_sym_remove] = ACTIONS(3242), + [anon_sym_reduce] = ACTIONS(3242), + [anon_sym_select] = ACTIONS(3242), + [anon_sym_insert] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_table] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_assert_equal] = ACTIONS(3242), + [anon_sym_download] = ACTIONS(3242), + [anon_sym_help] = ACTIONS(3242), + [anon_sym_length] = ACTIONS(3242), + [anon_sym_output] = ACTIONS(3242), + [anon_sym_output_error] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_append] = ACTIONS(3242), + [anon_sym_metadata] = ACTIONS(3242), + [anon_sym_move] = ACTIONS(3242), + [anon_sym_read] = ACTIONS(3242), + [anon_sym_workdir] = ACTIONS(3242), + [anon_sym_write] = ACTIONS(3242), + [anon_sym_from_json] = ACTIONS(3242), + [anon_sym_to_json] = ACTIONS(3242), + [anon_sym_to_string] = ACTIONS(3242), + [anon_sym_to_float] = ACTIONS(3242), + [anon_sym_bash] = ACTIONS(3242), + [anon_sym_fish] = ACTIONS(3242), + [anon_sym_raw] = ACTIONS(3242), + [anon_sym_sh] = ACTIONS(3242), + [anon_sym_zsh] = ACTIONS(3242), + [anon_sym_random] = ACTIONS(3242), + [anon_sym_random_boolean] = ACTIONS(3242), + [anon_sym_random_float] = ACTIONS(3242), + [anon_sym_random_integer] = ACTIONS(3242), + [anon_sym_columns] = ACTIONS(3242), + [anon_sym_rows] = ACTIONS(3242), + [anon_sym_reverse] = ACTIONS(3242), + }, + [883] = { + [sym_expression] = STATE(1605), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(1005), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [884] = { + [sym_expression] = STATE(1030), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(894), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1762), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(726), + [sym_identifier] = ACTIONS(3576), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_RPAREN] = ACTIONS(2477), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_EQ_GT] = ACTIONS(3578), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3580), + [anon_sym_assert] = ACTIONS(3582), + [anon_sym_assert_equal] = ACTIONS(3582), + [anon_sym_download] = ACTIONS(3582), + [anon_sym_help] = ACTIONS(3582), + [anon_sym_length] = ACTIONS(3582), + [anon_sym_output] = ACTIONS(3582), + [anon_sym_output_error] = ACTIONS(3582), + [anon_sym_type] = ACTIONS(3582), + [anon_sym_append] = ACTIONS(3582), + [anon_sym_metadata] = ACTIONS(3582), + [anon_sym_move] = ACTIONS(3582), + [anon_sym_read] = ACTIONS(3582), + [anon_sym_workdir] = ACTIONS(3582), + [anon_sym_write] = ACTIONS(3582), + [anon_sym_from_json] = ACTIONS(3582), + [anon_sym_to_json] = ACTIONS(3582), + [anon_sym_to_string] = ACTIONS(3582), + [anon_sym_to_float] = ACTIONS(3582), + [anon_sym_bash] = ACTIONS(3582), + [anon_sym_fish] = ACTIONS(3582), + [anon_sym_raw] = ACTIONS(3582), + [anon_sym_sh] = ACTIONS(3582), + [anon_sym_zsh] = ACTIONS(3582), + [anon_sym_random] = ACTIONS(3582), + [anon_sym_random_boolean] = ACTIONS(3582), + [anon_sym_random_float] = ACTIONS(3582), + [anon_sym_random_integer] = ACTIONS(3582), + [anon_sym_columns] = ACTIONS(3582), + [anon_sym_rows] = ACTIONS(3582), + [anon_sym_reverse] = ACTIONS(3582), + }, + [885] = { + [sym_expression] = STATE(1608), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [886] = { + [sym_expression] = STATE(1620), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [887] = { + [sym_expression] = STATE(1596), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(891), + [ts_builtin_sym_end] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_asyncfor] = ACTIONS(2449), + [anon_sym_transform] = ACTIONS(2465), + [anon_sym_filter] = ACTIONS(2465), + [anon_sym_find] = ACTIONS(2465), + [anon_sym_remove] = ACTIONS(2465), + [anon_sym_reduce] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_insert] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [888] = { + [sym_math_operator] = STATE(1153), + [sym_logic_operator] = STATE(1077), + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_COLON] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [889] = { + [sym_math_operator] = STATE(1153), + [sym_logic_operator] = STATE(1077), + [ts_builtin_sym_end] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3264), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [sym_integer] = ACTIONS(3264), + [sym_float] = ACTIONS(3262), + [sym_string] = ACTIONS(3262), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_match] = ACTIONS(3264), + [anon_sym_EQ_GT] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_asyncfor] = ACTIONS(3262), + [anon_sym_transform] = ACTIONS(3264), + [anon_sym_filter] = ACTIONS(3264), + [anon_sym_find] = ACTIONS(3264), + [anon_sym_remove] = ACTIONS(3264), + [anon_sym_reduce] = ACTIONS(3264), + [anon_sym_select] = ACTIONS(3264), + [anon_sym_insert] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_table] = ACTIONS(3264), + [anon_sym_assert] = ACTIONS(3264), + [anon_sym_assert_equal] = ACTIONS(3264), + [anon_sym_download] = ACTIONS(3264), + [anon_sym_help] = ACTIONS(3264), + [anon_sym_length] = ACTIONS(3264), + [anon_sym_output] = ACTIONS(3264), + [anon_sym_output_error] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_append] = ACTIONS(3264), + [anon_sym_metadata] = ACTIONS(3264), + [anon_sym_move] = ACTIONS(3264), + [anon_sym_read] = ACTIONS(3264), + [anon_sym_workdir] = ACTIONS(3264), + [anon_sym_write] = ACTIONS(3264), + [anon_sym_from_json] = ACTIONS(3264), + [anon_sym_to_json] = ACTIONS(3264), + [anon_sym_to_string] = ACTIONS(3264), + [anon_sym_to_float] = ACTIONS(3264), + [anon_sym_bash] = ACTIONS(3264), + [anon_sym_fish] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3264), + [anon_sym_sh] = ACTIONS(3264), + [anon_sym_zsh] = ACTIONS(3264), + [anon_sym_random] = ACTIONS(3264), + [anon_sym_random_boolean] = ACTIONS(3264), + [anon_sym_random_float] = ACTIONS(3264), + [anon_sym_random_integer] = ACTIONS(3264), + [anon_sym_columns] = ACTIONS(3264), + [anon_sym_rows] = ACTIONS(3264), + [anon_sym_reverse] = ACTIONS(3264), + }, + [890] = { + [sym_math_operator] = STATE(1153), + [sym_logic_operator] = STATE(1077), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_RPAREN] = ACTIONS(3244), + [sym_integer] = ACTIONS(3246), + [sym_float] = ACTIONS(3244), + [sym_string] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_asyncfor] = ACTIONS(3244), + [anon_sym_transform] = ACTIONS(3246), + [anon_sym_filter] = ACTIONS(3246), + [anon_sym_find] = ACTIONS(3246), + [anon_sym_remove] = ACTIONS(3246), + [anon_sym_reduce] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_insert] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_table] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_assert_equal] = ACTIONS(3246), + [anon_sym_download] = ACTIONS(3246), + [anon_sym_help] = ACTIONS(3246), + [anon_sym_length] = ACTIONS(3246), + [anon_sym_output] = ACTIONS(3246), + [anon_sym_output_error] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_append] = ACTIONS(3246), + [anon_sym_metadata] = ACTIONS(3246), + [anon_sym_move] = ACTIONS(3246), + [anon_sym_read] = ACTIONS(3246), + [anon_sym_workdir] = ACTIONS(3246), + [anon_sym_write] = ACTIONS(3246), + [anon_sym_from_json] = ACTIONS(3246), + [anon_sym_to_json] = ACTIONS(3246), + [anon_sym_to_string] = ACTIONS(3246), + [anon_sym_to_float] = ACTIONS(3246), + [anon_sym_bash] = ACTIONS(3246), + [anon_sym_fish] = ACTIONS(3246), + [anon_sym_raw] = ACTIONS(3246), + [anon_sym_sh] = ACTIONS(3246), + [anon_sym_zsh] = ACTIONS(3246), + [anon_sym_random] = ACTIONS(3246), + [anon_sym_random_boolean] = ACTIONS(3246), + [anon_sym_random_float] = ACTIONS(3246), + [anon_sym_random_integer] = ACTIONS(3246), + [anon_sym_columns] = ACTIONS(3246), + [anon_sym_rows] = ACTIONS(3246), + [anon_sym_reverse] = ACTIONS(3246), + }, + [891] = { + [sym_expression] = STATE(1596), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(891), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2489), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2495), + [sym_string] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_asyncfor] = ACTIONS(2481), + [anon_sym_transform] = ACTIONS(2504), + [anon_sym_filter] = ACTIONS(2504), + [anon_sym_find] = ACTIONS(2504), + [anon_sym_remove] = ACTIONS(2504), + [anon_sym_reduce] = ACTIONS(2504), + [anon_sym_select] = ACTIONS(2504), + [anon_sym_insert] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(3616), + [anon_sym_table] = ACTIONS(2512), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_assert_equal] = ACTIONS(2515), + [anon_sym_download] = ACTIONS(2515), + [anon_sym_help] = ACTIONS(2515), + [anon_sym_length] = ACTIONS(2515), + [anon_sym_output] = ACTIONS(2515), + [anon_sym_output_error] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_append] = ACTIONS(2515), + [anon_sym_metadata] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_read] = ACTIONS(2515), + [anon_sym_workdir] = ACTIONS(2515), + [anon_sym_write] = ACTIONS(2515), + [anon_sym_from_json] = ACTIONS(2515), + [anon_sym_to_json] = ACTIONS(2515), + [anon_sym_to_string] = ACTIONS(2515), + [anon_sym_to_float] = ACTIONS(2515), + [anon_sym_bash] = ACTIONS(2515), + [anon_sym_fish] = ACTIONS(2515), + [anon_sym_raw] = ACTIONS(2515), + [anon_sym_sh] = ACTIONS(2515), + [anon_sym_zsh] = ACTIONS(2515), + [anon_sym_random] = ACTIONS(2515), + [anon_sym_random_boolean] = ACTIONS(2515), + [anon_sym_random_float] = ACTIONS(2515), + [anon_sym_random_integer] = ACTIONS(2515), + [anon_sym_columns] = ACTIONS(2515), + [anon_sym_rows] = ACTIONS(2515), + [anon_sym_reverse] = ACTIONS(2515), + }, + [892] = { + [sym_expression] = STATE(1607), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [893] = { + [sym_expression] = STATE(1577), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(312), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [894] = { + [sym_expression] = STATE(1030), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(894), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1762), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(726), + [sym_identifier] = ACTIONS(3542), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3545), + [anon_sym_LPAREN] = ACTIONS(3548), + [anon_sym_RPAREN] = ACTIONS(2518), + [sym_integer] = ACTIONS(3551), + [sym_float] = ACTIONS(3554), + [sym_string] = ACTIONS(3554), + [anon_sym_true] = ACTIONS(3557), + [anon_sym_false] = ACTIONS(3557), + [anon_sym_LBRACK] = ACTIONS(3560), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_EQ_GT] = ACTIONS(3563), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(3566), + [anon_sym_assert] = ACTIONS(3569), + [anon_sym_assert_equal] = ACTIONS(3569), + [anon_sym_download] = ACTIONS(3569), + [anon_sym_help] = ACTIONS(3569), + [anon_sym_length] = ACTIONS(3569), + [anon_sym_output] = ACTIONS(3569), + [anon_sym_output_error] = ACTIONS(3569), + [anon_sym_type] = ACTIONS(3569), + [anon_sym_append] = ACTIONS(3569), + [anon_sym_metadata] = ACTIONS(3569), + [anon_sym_move] = ACTIONS(3569), + [anon_sym_read] = ACTIONS(3569), + [anon_sym_workdir] = ACTIONS(3569), + [anon_sym_write] = ACTIONS(3569), + [anon_sym_from_json] = ACTIONS(3569), + [anon_sym_to_json] = ACTIONS(3569), + [anon_sym_to_string] = ACTIONS(3569), + [anon_sym_to_float] = ACTIONS(3569), + [anon_sym_bash] = ACTIONS(3569), + [anon_sym_fish] = ACTIONS(3569), + [anon_sym_raw] = ACTIONS(3569), + [anon_sym_sh] = ACTIONS(3569), + [anon_sym_zsh] = ACTIONS(3569), + [anon_sym_random] = ACTIONS(3569), + [anon_sym_random_boolean] = ACTIONS(3569), + [anon_sym_random_float] = ACTIONS(3569), + [anon_sym_random_integer] = ACTIONS(3569), + [anon_sym_columns] = ACTIONS(3569), + [anon_sym_rows] = ACTIONS(3569), + [anon_sym_reverse] = ACTIONS(3569), + }, + [895] = { + [sym_expression] = STATE(1592), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(277), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [896] = { + [sym_expression] = STATE(1596), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(887), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [897] = { + [sym_expression] = STATE(1611), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_COMMA] = ACTIONS(2449), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_asyncfor] = ACTIONS(2449), + [anon_sym_transform] = ACTIONS(2465), + [anon_sym_filter] = ACTIONS(2465), + [anon_sym_find] = ACTIONS(2465), + [anon_sym_remove] = ACTIONS(2465), + [anon_sym_reduce] = ACTIONS(2465), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_insert] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [898] = { + [sym_expression] = STATE(1575), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(373), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [899] = { + [sym_expression] = STATE(1030), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(894), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1762), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(726), + [sym_identifier] = ACTIONS(3576), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_RPAREN] = ACTIONS(2443), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_GT] = ACTIONS(3578), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3580), + [anon_sym_assert] = ACTIONS(3582), + [anon_sym_assert_equal] = ACTIONS(3582), + [anon_sym_download] = ACTIONS(3582), + [anon_sym_help] = ACTIONS(3582), + [anon_sym_length] = ACTIONS(3582), + [anon_sym_output] = ACTIONS(3582), + [anon_sym_output_error] = ACTIONS(3582), + [anon_sym_type] = ACTIONS(3582), + [anon_sym_append] = ACTIONS(3582), + [anon_sym_metadata] = ACTIONS(3582), + [anon_sym_move] = ACTIONS(3582), + [anon_sym_read] = ACTIONS(3582), + [anon_sym_workdir] = ACTIONS(3582), + [anon_sym_write] = ACTIONS(3582), + [anon_sym_from_json] = ACTIONS(3582), + [anon_sym_to_json] = ACTIONS(3582), + [anon_sym_to_string] = ACTIONS(3582), + [anon_sym_to_float] = ACTIONS(3582), + [anon_sym_bash] = ACTIONS(3582), + [anon_sym_fish] = ACTIONS(3582), + [anon_sym_raw] = ACTIONS(3582), + [anon_sym_sh] = ACTIONS(3582), + [anon_sym_zsh] = ACTIONS(3582), + [anon_sym_random] = ACTIONS(3582), + [anon_sym_random_boolean] = ACTIONS(3582), + [anon_sym_random_float] = ACTIONS(3582), + [anon_sym_random_integer] = ACTIONS(3582), + [anon_sym_columns] = ACTIONS(3582), + [anon_sym_rows] = ACTIONS(3582), + [anon_sym_reverse] = ACTIONS(3582), + }, + [900] = { + [sym_expression] = STATE(1586), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [901] = { + [sym_expression] = STATE(1627), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(306), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [902] = { + [sym_expression] = STATE(1593), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(342), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [903] = { + [sym_expression] = STATE(1601), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(281), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [904] = { + [sym_expression] = STATE(1587), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(327), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [905] = { + [sym_expression] = STATE(1609), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(356), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [906] = { + [sym_expression] = STATE(1611), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [907] = { + [sym_expression] = STATE(1624), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(837), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [908] = { + [sym_expression] = STATE(1611), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_logic] = STATE(1539), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(2483), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_COMMA] = ACTIONS(2481), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2495), + [sym_string] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_EQ_GT] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_asyncfor] = ACTIONS(2481), + [anon_sym_transform] = ACTIONS(2504), + [anon_sym_filter] = ACTIONS(2504), + [anon_sym_find] = ACTIONS(2504), + [anon_sym_remove] = ACTIONS(2504), + [anon_sym_reduce] = ACTIONS(2504), + [anon_sym_select] = ACTIONS(2504), + [anon_sym_insert] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(3616), + [anon_sym_table] = ACTIONS(2512), + [anon_sym_assert] = ACTIONS(2515), + [anon_sym_assert_equal] = ACTIONS(2515), + [anon_sym_download] = ACTIONS(2515), + [anon_sym_help] = ACTIONS(2515), + [anon_sym_length] = ACTIONS(2515), + [anon_sym_output] = ACTIONS(2515), + [anon_sym_output_error] = ACTIONS(2515), + [anon_sym_type] = ACTIONS(2515), + [anon_sym_append] = ACTIONS(2515), + [anon_sym_metadata] = ACTIONS(2515), + [anon_sym_move] = ACTIONS(2515), + [anon_sym_read] = ACTIONS(2515), + [anon_sym_workdir] = ACTIONS(2515), + [anon_sym_write] = ACTIONS(2515), + [anon_sym_from_json] = ACTIONS(2515), + [anon_sym_to_json] = ACTIONS(2515), + [anon_sym_to_string] = ACTIONS(2515), + [anon_sym_to_float] = ACTIONS(2515), + [anon_sym_bash] = ACTIONS(2515), + [anon_sym_fish] = ACTIONS(2515), + [anon_sym_raw] = ACTIONS(2515), + [anon_sym_sh] = ACTIONS(2515), + [anon_sym_zsh] = ACTIONS(2515), + [anon_sym_random] = ACTIONS(2515), + [anon_sym_random_boolean] = ACTIONS(2515), + [anon_sym_random_float] = ACTIONS(2515), + [anon_sym_random_integer] = ACTIONS(2515), + [anon_sym_columns] = ACTIONS(2515), + [anon_sym_rows] = ACTIONS(2515), + [anon_sym_reverse] = ACTIONS(2515), + }, + [909] = { + [sym_expression] = STATE(1590), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(318), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [910] = { + [sym_expression] = STATE(1579), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(291), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [911] = { + [sym_math_operator] = STATE(1153), + [sym_logic_operator] = STATE(1077), + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3254), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3252), + [sym_integer] = ACTIONS(3254), + [sym_float] = ACTIONS(3252), + [sym_string] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_match] = ACTIONS(3254), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_asyncfor] = ACTIONS(3252), + [anon_sym_transform] = ACTIONS(3254), + [anon_sym_filter] = ACTIONS(3254), + [anon_sym_find] = ACTIONS(3254), + [anon_sym_remove] = ACTIONS(3254), + [anon_sym_reduce] = ACTIONS(3254), + [anon_sym_select] = ACTIONS(3254), + [anon_sym_insert] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_table] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_assert_equal] = ACTIONS(3254), + [anon_sym_download] = ACTIONS(3254), + [anon_sym_help] = ACTIONS(3254), + [anon_sym_length] = ACTIONS(3254), + [anon_sym_output] = ACTIONS(3254), + [anon_sym_output_error] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_append] = ACTIONS(3254), + [anon_sym_metadata] = ACTIONS(3254), + [anon_sym_move] = ACTIONS(3254), + [anon_sym_read] = ACTIONS(3254), + [anon_sym_workdir] = ACTIONS(3254), + [anon_sym_write] = ACTIONS(3254), + [anon_sym_from_json] = ACTIONS(3254), + [anon_sym_to_json] = ACTIONS(3254), + [anon_sym_to_string] = ACTIONS(3254), + [anon_sym_to_float] = ACTIONS(3254), + [anon_sym_bash] = ACTIONS(3254), + [anon_sym_fish] = ACTIONS(3254), + [anon_sym_raw] = ACTIONS(3254), + [anon_sym_sh] = ACTIONS(3254), + [anon_sym_zsh] = ACTIONS(3254), + [anon_sym_random] = ACTIONS(3254), + [anon_sym_random_boolean] = ACTIONS(3254), + [anon_sym_random_float] = ACTIONS(3254), + [anon_sym_random_integer] = ACTIONS(3254), + [anon_sym_columns] = ACTIONS(3254), + [anon_sym_rows] = ACTIONS(3254), + [anon_sym_reverse] = ACTIONS(3254), + }, + [912] = { + [sym_expression] = STATE(1604), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(367), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [913] = { + [sym_expression] = STATE(1591), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(819), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [914] = { + [sym_expression] = STATE(1030), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(899), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1762), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(726), + [sym_identifier] = ACTIONS(3576), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_RPAREN] = ACTIONS(2473), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_DOT_DOT] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_EQ_GT] = ACTIONS(3578), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3580), + [anon_sym_assert] = ACTIONS(3582), + [anon_sym_assert_equal] = ACTIONS(3582), + [anon_sym_download] = ACTIONS(3582), + [anon_sym_help] = ACTIONS(3582), + [anon_sym_length] = ACTIONS(3582), + [anon_sym_output] = ACTIONS(3582), + [anon_sym_output_error] = ACTIONS(3582), + [anon_sym_type] = ACTIONS(3582), + [anon_sym_append] = ACTIONS(3582), + [anon_sym_metadata] = ACTIONS(3582), + [anon_sym_move] = ACTIONS(3582), + [anon_sym_read] = ACTIONS(3582), + [anon_sym_workdir] = ACTIONS(3582), + [anon_sym_write] = ACTIONS(3582), + [anon_sym_from_json] = ACTIONS(3582), + [anon_sym_to_json] = ACTIONS(3582), + [anon_sym_to_string] = ACTIONS(3582), + [anon_sym_to_float] = ACTIONS(3582), + [anon_sym_bash] = ACTIONS(3582), + [anon_sym_fish] = ACTIONS(3582), + [anon_sym_raw] = ACTIONS(3582), + [anon_sym_sh] = ACTIONS(3582), + [anon_sym_zsh] = ACTIONS(3582), + [anon_sym_random] = ACTIONS(3582), + [anon_sym_random_boolean] = ACTIONS(3582), + [anon_sym_random_float] = ACTIONS(3582), + [anon_sym_random_integer] = ACTIONS(3582), + [anon_sym_columns] = ACTIONS(3582), + [anon_sym_rows] = ACTIONS(3582), + [anon_sym_reverse] = ACTIONS(3582), + }, + [915] = { + [sym_expression] = STATE(1578), + [sym__expression_kind] = STATE(1539), + [sym_value] = STATE(1539), + [sym_boolean] = STATE(1550), + [sym_list] = STATE(1550), + [sym_map] = STATE(1550), + [sym_index] = STATE(1539), + [sym_math] = STATE(1539), + [sym_math_operator] = STATE(1348), + [sym_logic] = STATE(1539), + [sym_logic_operator] = STATE(1347), + [sym_identifier_list] = STATE(1837), + [sym_table] = STATE(1550), + [sym_function] = STATE(1550), + [sym_function_call] = STATE(1539), + [sym__context_defined_function] = STATE(1533), + [sym_built_in_function] = STATE(1533), + [sym__built_in_function_name] = STATE(928), + [aux_sym_match_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(2451), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2459), + [sym_string] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_assert_equal] = ACTIONS(2471), + [anon_sym_download] = ACTIONS(2471), + [anon_sym_help] = ACTIONS(2471), + [anon_sym_length] = ACTIONS(2471), + [anon_sym_output] = ACTIONS(2471), + [anon_sym_output_error] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_append] = ACTIONS(2471), + [anon_sym_metadata] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_read] = ACTIONS(2471), + [anon_sym_workdir] = ACTIONS(2471), + [anon_sym_write] = ACTIONS(2471), + [anon_sym_from_json] = ACTIONS(2471), + [anon_sym_to_json] = ACTIONS(2471), + [anon_sym_to_string] = ACTIONS(2471), + [anon_sym_to_float] = ACTIONS(2471), + [anon_sym_bash] = ACTIONS(2471), + [anon_sym_fish] = ACTIONS(2471), + [anon_sym_raw] = ACTIONS(2471), + [anon_sym_sh] = ACTIONS(2471), + [anon_sym_zsh] = ACTIONS(2471), + [anon_sym_random] = ACTIONS(2471), + [anon_sym_random_boolean] = ACTIONS(2471), + [anon_sym_random_float] = ACTIONS(2471), + [anon_sym_random_integer] = ACTIONS(2471), + [anon_sym_columns] = ACTIONS(2471), + [anon_sym_rows] = ACTIONS(2471), + [anon_sym_reverse] = ACTIONS(2471), + }, + [916] = { + [sym_math_operator] = STATE(1153), + [sym_logic_operator] = STATE(1077), + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3283), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_RPAREN] = ACTIONS(3281), + [sym_integer] = ACTIONS(3283), + [sym_float] = ACTIONS(3281), + [sym_string] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_EQ_GT] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_asyncfor] = ACTIONS(3281), + [anon_sym_transform] = ACTIONS(3283), + [anon_sym_filter] = ACTIONS(3283), + [anon_sym_find] = ACTIONS(3283), + [anon_sym_remove] = ACTIONS(3283), + [anon_sym_reduce] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_insert] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_table] = ACTIONS(3283), + [anon_sym_assert] = ACTIONS(3283), + [anon_sym_assert_equal] = ACTIONS(3283), + [anon_sym_download] = ACTIONS(3283), + [anon_sym_help] = ACTIONS(3283), + [anon_sym_length] = ACTIONS(3283), + [anon_sym_output] = ACTIONS(3283), + [anon_sym_output_error] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_append] = ACTIONS(3283), + [anon_sym_metadata] = ACTIONS(3283), + [anon_sym_move] = ACTIONS(3283), + [anon_sym_read] = ACTIONS(3283), + [anon_sym_workdir] = ACTIONS(3283), + [anon_sym_write] = ACTIONS(3283), + [anon_sym_from_json] = ACTIONS(3283), + [anon_sym_to_json] = ACTIONS(3283), + [anon_sym_to_string] = ACTIONS(3283), + [anon_sym_to_float] = ACTIONS(3283), + [anon_sym_bash] = ACTIONS(3283), + [anon_sym_fish] = ACTIONS(3283), + [anon_sym_raw] = ACTIONS(3283), + [anon_sym_sh] = ACTIONS(3283), + [anon_sym_zsh] = ACTIONS(3283), + [anon_sym_random] = ACTIONS(3283), + [anon_sym_random_boolean] = ACTIONS(3283), + [anon_sym_random_float] = ACTIONS(3283), + [anon_sym_random_integer] = ACTIONS(3283), + [anon_sym_columns] = ACTIONS(3283), + [anon_sym_rows] = ACTIONS(3283), + [anon_sym_reverse] = ACTIONS(3283), + }, + [917] = { + [sym_expression] = STATE(1030), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(884), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1762), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(726), + [sym_identifier] = ACTIONS(3576), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_RPAREN] = ACTIONS(2435), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_DOT_DOT] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3578), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3580), + [anon_sym_assert] = ACTIONS(3582), + [anon_sym_assert_equal] = ACTIONS(3582), + [anon_sym_download] = ACTIONS(3582), + [anon_sym_help] = ACTIONS(3582), + [anon_sym_length] = ACTIONS(3582), + [anon_sym_output] = ACTIONS(3582), + [anon_sym_output_error] = ACTIONS(3582), + [anon_sym_type] = ACTIONS(3582), + [anon_sym_append] = ACTIONS(3582), + [anon_sym_metadata] = ACTIONS(3582), + [anon_sym_move] = ACTIONS(3582), + [anon_sym_read] = ACTIONS(3582), + [anon_sym_workdir] = ACTIONS(3582), + [anon_sym_write] = ACTIONS(3582), + [anon_sym_from_json] = ACTIONS(3582), + [anon_sym_to_json] = ACTIONS(3582), + [anon_sym_to_string] = ACTIONS(3582), + [anon_sym_to_float] = ACTIONS(3582), + [anon_sym_bash] = ACTIONS(3582), + [anon_sym_fish] = ACTIONS(3582), + [anon_sym_raw] = ACTIONS(3582), + [anon_sym_sh] = ACTIONS(3582), + [anon_sym_zsh] = ACTIONS(3582), + [anon_sym_random] = ACTIONS(3582), + [anon_sym_random_boolean] = ACTIONS(3582), + [anon_sym_random_float] = ACTIONS(3582), + [anon_sym_random_integer] = ACTIONS(3582), + [anon_sym_columns] = ACTIONS(3582), + [anon_sym_rows] = ACTIONS(3582), + [anon_sym_reverse] = ACTIONS(3582), + }, + [918] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3630), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [919] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [920] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(920), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(3542), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3545), + [anon_sym_LPAREN] = ACTIONS(3548), + [anon_sym_RPAREN] = ACTIONS(2518), + [sym_integer] = ACTIONS(3551), + [sym_float] = ACTIONS(3554), + [sym_string] = ACTIONS(3554), + [anon_sym_true] = ACTIONS(3557), + [anon_sym_false] = ACTIONS(3557), + [anon_sym_LBRACK] = ACTIONS(3560), + [anon_sym_COLON] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2518), + [anon_sym_BANG_EQ] = ACTIONS(2518), + [anon_sym_AMP_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_GT_EQ] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2518), + [anon_sym_EQ_GT] = ACTIONS(3600), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_table] = ACTIONS(3603), + [anon_sym_assert] = ACTIONS(3606), + [anon_sym_assert_equal] = ACTIONS(3606), + [anon_sym_download] = ACTIONS(3606), + [anon_sym_help] = ACTIONS(3606), + [anon_sym_length] = ACTIONS(3606), + [anon_sym_output] = ACTIONS(3606), + [anon_sym_output_error] = ACTIONS(3606), + [anon_sym_type] = ACTIONS(3606), + [anon_sym_append] = ACTIONS(3606), + [anon_sym_metadata] = ACTIONS(3606), + [anon_sym_move] = ACTIONS(3606), + [anon_sym_read] = ACTIONS(3606), + [anon_sym_workdir] = ACTIONS(3606), + [anon_sym_write] = ACTIONS(3606), + [anon_sym_from_json] = ACTIONS(3606), + [anon_sym_to_json] = ACTIONS(3606), + [anon_sym_to_string] = ACTIONS(3606), + [anon_sym_to_float] = ACTIONS(3606), + [anon_sym_bash] = ACTIONS(3606), + [anon_sym_fish] = ACTIONS(3606), + [anon_sym_raw] = ACTIONS(3606), + [anon_sym_sh] = ACTIONS(3606), + [anon_sym_zsh] = ACTIONS(3606), + [anon_sym_random] = ACTIONS(3606), + [anon_sym_random_boolean] = ACTIONS(3606), + [anon_sym_random_float] = ACTIONS(3606), + [anon_sym_random_integer] = ACTIONS(3606), + [anon_sym_columns] = ACTIONS(3606), + [anon_sym_rows] = ACTIONS(3606), + [anon_sym_reverse] = ACTIONS(3606), + }, + [921] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3634), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [922] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3636), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [923] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [924] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3640), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [925] = { + [sym_math_operator] = STATE(1153), + [sym_logic_operator] = STATE(1077), + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym_LPAREN] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_COLON] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [926] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3644), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [927] = { + [sym_expression] = STATE(1030), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(884), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1762), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(726), + [sym_identifier] = ACTIONS(3576), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_DOT_DOT] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3580), + [anon_sym_assert] = ACTIONS(3582), + [anon_sym_assert_equal] = ACTIONS(3582), + [anon_sym_download] = ACTIONS(3582), + [anon_sym_help] = ACTIONS(3582), + [anon_sym_length] = ACTIONS(3582), + [anon_sym_output] = ACTIONS(3582), + [anon_sym_output_error] = ACTIONS(3582), + [anon_sym_type] = ACTIONS(3582), + [anon_sym_append] = ACTIONS(3582), + [anon_sym_metadata] = ACTIONS(3582), + [anon_sym_move] = ACTIONS(3582), + [anon_sym_read] = ACTIONS(3582), + [anon_sym_workdir] = ACTIONS(3582), + [anon_sym_write] = ACTIONS(3582), + [anon_sym_from_json] = ACTIONS(3582), + [anon_sym_to_json] = ACTIONS(3582), + [anon_sym_to_string] = ACTIONS(3582), + [anon_sym_to_float] = ACTIONS(3582), + [anon_sym_bash] = ACTIONS(3582), + [anon_sym_fish] = ACTIONS(3582), + [anon_sym_raw] = ACTIONS(3582), + [anon_sym_sh] = ACTIONS(3582), + [anon_sym_zsh] = ACTIONS(3582), + [anon_sym_random] = ACTIONS(3582), + [anon_sym_random_boolean] = ACTIONS(3582), + [anon_sym_random_float] = ACTIONS(3582), + [anon_sym_random_integer] = ACTIONS(3582), + [anon_sym_columns] = ACTIONS(3582), + [anon_sym_rows] = ACTIONS(3582), + [anon_sym_reverse] = ACTIONS(3582), + }, + [928] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(937), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(3576), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_RPAREN] = ACTIONS(2473), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [929] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3646), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [930] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3648), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [931] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3650), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [932] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3652), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [933] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3654), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [934] = { + [sym_math_operator] = STATE(1381), + [sym_logic_operator] = STATE(1380), + [sym_identifier] = ACTIONS(3277), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3275), + [sym_integer] = ACTIONS(3277), + [sym_float] = ACTIONS(3275), + [sym_string] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3277), + [anon_sym_false] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_asyncfor] = ACTIONS(3275), + [anon_sym_transform] = ACTIONS(3277), + [anon_sym_filter] = ACTIONS(3277), + [anon_sym_find] = ACTIONS(3277), + [anon_sym_remove] = ACTIONS(3277), + [anon_sym_reduce] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_insert] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_table] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_assert_equal] = ACTIONS(3277), + [anon_sym_download] = ACTIONS(3277), + [anon_sym_help] = ACTIONS(3277), + [anon_sym_length] = ACTIONS(3277), + [anon_sym_output] = ACTIONS(3277), + [anon_sym_output_error] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_append] = ACTIONS(3277), + [anon_sym_metadata] = ACTIONS(3277), + [anon_sym_move] = ACTIONS(3277), + [anon_sym_read] = ACTIONS(3277), + [anon_sym_workdir] = ACTIONS(3277), + [anon_sym_write] = ACTIONS(3277), + [anon_sym_from_json] = ACTIONS(3277), + [anon_sym_to_json] = ACTIONS(3277), + [anon_sym_to_string] = ACTIONS(3277), + [anon_sym_to_float] = ACTIONS(3277), + [anon_sym_bash] = ACTIONS(3277), + [anon_sym_fish] = ACTIONS(3277), + [anon_sym_raw] = ACTIONS(3277), + [anon_sym_sh] = ACTIONS(3277), + [anon_sym_zsh] = ACTIONS(3277), + [anon_sym_random] = ACTIONS(3277), + [anon_sym_random_boolean] = ACTIONS(3277), + [anon_sym_random_float] = ACTIONS(3277), + [anon_sym_random_integer] = ACTIONS(3277), + [anon_sym_columns] = ACTIONS(3277), + [anon_sym_rows] = ACTIONS(3277), + [anon_sym_reverse] = ACTIONS(3277), + }, + [935] = { + [sym_expression] = STATE(1030), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(884), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1762), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(726), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_DOT_DOT] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3578), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3580), + [anon_sym_assert] = ACTIONS(3582), + [anon_sym_assert_equal] = ACTIONS(3582), + [anon_sym_download] = ACTIONS(3582), + [anon_sym_help] = ACTIONS(3582), + [anon_sym_length] = ACTIONS(3582), + [anon_sym_output] = ACTIONS(3582), + [anon_sym_output_error] = ACTIONS(3582), + [anon_sym_type] = ACTIONS(3582), + [anon_sym_append] = ACTIONS(3582), + [anon_sym_metadata] = ACTIONS(3582), + [anon_sym_move] = ACTIONS(3582), + [anon_sym_read] = ACTIONS(3582), + [anon_sym_workdir] = ACTIONS(3582), + [anon_sym_write] = ACTIONS(3582), + [anon_sym_from_json] = ACTIONS(3582), + [anon_sym_to_json] = ACTIONS(3582), + [anon_sym_to_string] = ACTIONS(3582), + [anon_sym_to_float] = ACTIONS(3582), + [anon_sym_bash] = ACTIONS(3582), + [anon_sym_fish] = ACTIONS(3582), + [anon_sym_raw] = ACTIONS(3582), + [anon_sym_sh] = ACTIONS(3582), + [anon_sym_zsh] = ACTIONS(3582), + [anon_sym_random] = ACTIONS(3582), + [anon_sym_random_boolean] = ACTIONS(3582), + [anon_sym_random_float] = ACTIONS(3582), + [anon_sym_random_integer] = ACTIONS(3582), + [anon_sym_columns] = ACTIONS(3582), + [anon_sym_rows] = ACTIONS(3582), + [anon_sym_reverse] = ACTIONS(3582), + }, + [936] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3656), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [937] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(920), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(3576), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_RPAREN] = ACTIONS(2443), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_EQ_EQ] = ACTIONS(2443), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [anon_sym_AMP_AMP] = ACTIONS(2443), + [anon_sym_PIPE_PIPE] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [938] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3658), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [939] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3660), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [940] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3662), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [941] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(920), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(3576), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_RPAREN] = ACTIONS(2477), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2477), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_SLASH] = ACTIONS(2477), + [anon_sym_PERCENT] = ACTIONS(2477), + [anon_sym_EQ_EQ] = ACTIONS(2477), + [anon_sym_BANG_EQ] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_GT] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2477), + [anon_sym_LT_EQ] = ACTIONS(2477), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [942] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3664), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [943] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3666), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [944] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [945] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3670), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [946] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(3576), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_RPAREN] = ACTIONS(2435), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [947] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3672), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [948] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(2437), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [949] = { + [sym_expression] = STATE(1042), + [sym__expression_kind] = STATE(1002), + [aux_sym__expression_list] = STATE(941), + [sym_value] = STATE(1002), + [sym_boolean] = STATE(996), + [sym_list] = STATE(996), + [sym_map] = STATE(996), + [sym_index] = STATE(1002), + [sym_math] = STATE(1002), + [sym_logic] = STATE(1002), + [sym_identifier_list] = STATE(1980), + [sym_table] = STATE(996), + [sym_function] = STATE(996), + [sym_function_call] = STATE(1002), + [sym__context_defined_function] = STATE(1009), + [sym_built_in_function] = STATE(1009), + [sym__built_in_function_name] = STATE(780), + [sym_identifier] = ACTIONS(3576), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3505), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3509), + [sym_string] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_COLON] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_EQ_EQ] = ACTIONS(2435), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE_PIPE] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2435), + [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_EQ_GT] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(3517), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_assert_equal] = ACTIONS(3145), + [anon_sym_download] = ACTIONS(3145), + [anon_sym_help] = ACTIONS(3145), + [anon_sym_length] = ACTIONS(3145), + [anon_sym_output] = ACTIONS(3145), + [anon_sym_output_error] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_append] = ACTIONS(3145), + [anon_sym_metadata] = ACTIONS(3145), + [anon_sym_move] = ACTIONS(3145), + [anon_sym_read] = ACTIONS(3145), + [anon_sym_workdir] = ACTIONS(3145), + [anon_sym_write] = ACTIONS(3145), + [anon_sym_from_json] = ACTIONS(3145), + [anon_sym_to_json] = ACTIONS(3145), + [anon_sym_to_string] = ACTIONS(3145), + [anon_sym_to_float] = ACTIONS(3145), + [anon_sym_bash] = ACTIONS(3145), + [anon_sym_fish] = ACTIONS(3145), + [anon_sym_raw] = ACTIONS(3145), + [anon_sym_sh] = ACTIONS(3145), + [anon_sym_zsh] = ACTIONS(3145), + [anon_sym_random] = ACTIONS(3145), + [anon_sym_random_boolean] = ACTIONS(3145), + [anon_sym_random_float] = ACTIONS(3145), + [anon_sym_random_integer] = ACTIONS(3145), + [anon_sym_columns] = ACTIONS(3145), + [anon_sym_rows] = ACTIONS(3145), + [anon_sym_reverse] = ACTIONS(3145), + }, + [950] = { + [sym_math_operator] = STATE(1403), + [sym_logic_operator] = STATE(1402), + [sym_identifier] = ACTIONS(3242), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [sym_integer] = ACTIONS(3242), + [sym_float] = ACTIONS(3240), + [sym_string] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_EQ] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(3674), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_table] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_assert_equal] = ACTIONS(3242), + [anon_sym_download] = ACTIONS(3242), + [anon_sym_help] = ACTIONS(3242), + [anon_sym_length] = ACTIONS(3242), + [anon_sym_output] = ACTIONS(3242), + [anon_sym_output_error] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_append] = ACTIONS(3242), + [anon_sym_metadata] = ACTIONS(3242), + [anon_sym_move] = ACTIONS(3242), + [anon_sym_read] = ACTIONS(3242), + [anon_sym_workdir] = ACTIONS(3242), + [anon_sym_write] = ACTIONS(3242), + [anon_sym_from_json] = ACTIONS(3242), + [anon_sym_to_json] = ACTIONS(3242), + [anon_sym_to_string] = ACTIONS(3242), + [anon_sym_to_float] = ACTIONS(3242), + [anon_sym_bash] = ACTIONS(3242), + [anon_sym_fish] = ACTIONS(3242), + [anon_sym_raw] = ACTIONS(3242), + [anon_sym_sh] = ACTIONS(3242), + [anon_sym_zsh] = ACTIONS(3242), + [anon_sym_random] = ACTIONS(3242), + [anon_sym_random_boolean] = ACTIONS(3242), + [anon_sym_random_float] = ACTIONS(3242), + [anon_sym_random_integer] = ACTIONS(3242), + [anon_sym_columns] = ACTIONS(3242), + [anon_sym_rows] = ACTIONS(3242), + [anon_sym_reverse] = ACTIONS(3242), + }, + [951] = { + [sym_math_operator] = STATE(1403), + [sym_logic_operator] = STATE(1402), + [sym_identifier] = ACTIONS(3250), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_COMMA] = ACTIONS(3248), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3248), + [sym_string] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_table] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_assert_equal] = ACTIONS(3250), + [anon_sym_download] = ACTIONS(3250), + [anon_sym_help] = ACTIONS(3250), + [anon_sym_length] = ACTIONS(3250), + [anon_sym_output] = ACTIONS(3250), + [anon_sym_output_error] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_append] = ACTIONS(3250), + [anon_sym_metadata] = ACTIONS(3250), + [anon_sym_move] = ACTIONS(3250), + [anon_sym_read] = ACTIONS(3250), + [anon_sym_workdir] = ACTIONS(3250), + [anon_sym_write] = ACTIONS(3250), + [anon_sym_from_json] = ACTIONS(3250), + [anon_sym_to_json] = ACTIONS(3250), + [anon_sym_to_string] = ACTIONS(3250), + [anon_sym_to_float] = ACTIONS(3250), + [anon_sym_bash] = ACTIONS(3250), + [anon_sym_fish] = ACTIONS(3250), + [anon_sym_raw] = ACTIONS(3250), + [anon_sym_sh] = ACTIONS(3250), + [anon_sym_zsh] = ACTIONS(3250), + [anon_sym_random] = ACTIONS(3250), + [anon_sym_random_boolean] = ACTIONS(3250), + [anon_sym_random_float] = ACTIONS(3250), + [anon_sym_random_integer] = ACTIONS(3250), + [anon_sym_columns] = ACTIONS(3250), + [anon_sym_rows] = ACTIONS(3250), + [anon_sym_reverse] = ACTIONS(3250), + }, + [952] = { + [sym_math_operator] = STATE(1403), + [sym_logic_operator] = STATE(1402), + [sym_identifier] = ACTIONS(3254), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_COMMA] = ACTIONS(3252), + [sym_integer] = ACTIONS(3254), + [sym_float] = ACTIONS(3252), + [sym_string] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_EQ] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_DOT_DOT] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_PLUS_EQ] = ACTIONS(3252), + [anon_sym_DASH_EQ] = ACTIONS(3252), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_table] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_assert_equal] = ACTIONS(3254), + [anon_sym_download] = ACTIONS(3254), + [anon_sym_help] = ACTIONS(3254), + [anon_sym_length] = ACTIONS(3254), + [anon_sym_output] = ACTIONS(3254), + [anon_sym_output_error] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_append] = ACTIONS(3254), + [anon_sym_metadata] = ACTIONS(3254), + [anon_sym_move] = ACTIONS(3254), + [anon_sym_read] = ACTIONS(3254), + [anon_sym_workdir] = ACTIONS(3254), + [anon_sym_write] = ACTIONS(3254), + [anon_sym_from_json] = ACTIONS(3254), + [anon_sym_to_json] = ACTIONS(3254), + [anon_sym_to_string] = ACTIONS(3254), + [anon_sym_to_float] = ACTIONS(3254), + [anon_sym_bash] = ACTIONS(3254), + [anon_sym_fish] = ACTIONS(3254), + [anon_sym_raw] = ACTIONS(3254), + [anon_sym_sh] = ACTIONS(3254), + [anon_sym_zsh] = ACTIONS(3254), + [anon_sym_random] = ACTIONS(3254), + [anon_sym_random_boolean] = ACTIONS(3254), + [anon_sym_random_float] = ACTIONS(3254), + [anon_sym_random_integer] = ACTIONS(3254), + [anon_sym_columns] = ACTIONS(3254), + [anon_sym_rows] = ACTIONS(3254), + [anon_sym_reverse] = ACTIONS(3254), + }, + [953] = { + [sym_math_operator] = STATE(1403), + [sym_logic_operator] = STATE(1402), + [sym_identifier] = ACTIONS(3264), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [sym_integer] = ACTIONS(3264), + [sym_float] = ACTIONS(3262), + [sym_string] = ACTIONS(3262), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_DOT_DOT] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_PLUS_EQ] = ACTIONS(3262), + [anon_sym_DASH_EQ] = ACTIONS(3262), + [anon_sym_EQ_GT] = ACTIONS(3262), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_table] = ACTIONS(3264), + [anon_sym_assert] = ACTIONS(3264), + [anon_sym_assert_equal] = ACTIONS(3264), + [anon_sym_download] = ACTIONS(3264), + [anon_sym_help] = ACTIONS(3264), + [anon_sym_length] = ACTIONS(3264), + [anon_sym_output] = ACTIONS(3264), + [anon_sym_output_error] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_append] = ACTIONS(3264), + [anon_sym_metadata] = ACTIONS(3264), + [anon_sym_move] = ACTIONS(3264), + [anon_sym_read] = ACTIONS(3264), + [anon_sym_workdir] = ACTIONS(3264), + [anon_sym_write] = ACTIONS(3264), + [anon_sym_from_json] = ACTIONS(3264), + [anon_sym_to_json] = ACTIONS(3264), + [anon_sym_to_string] = ACTIONS(3264), + [anon_sym_to_float] = ACTIONS(3264), + [anon_sym_bash] = ACTIONS(3264), + [anon_sym_fish] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3264), + [anon_sym_sh] = ACTIONS(3264), + [anon_sym_zsh] = ACTIONS(3264), + [anon_sym_random] = ACTIONS(3264), + [anon_sym_random_boolean] = ACTIONS(3264), + [anon_sym_random_float] = ACTIONS(3264), + [anon_sym_random_integer] = ACTIONS(3264), + [anon_sym_columns] = ACTIONS(3264), + [anon_sym_rows] = ACTIONS(3264), + [anon_sym_reverse] = ACTIONS(3264), + }, + [954] = { + [sym_math_operator] = STATE(1403), + [sym_logic_operator] = STATE(1402), + [sym_identifier] = ACTIONS(3246), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_COMMA] = ACTIONS(3244), + [sym_integer] = ACTIONS(3246), + [sym_float] = ACTIONS(3244), + [sym_string] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3246), + [anon_sym_COLON] = ACTIONS(3674), + [anon_sym_DOT_DOT] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3244), + [anon_sym_DASH_EQ] = ACTIONS(3244), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_table] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_assert_equal] = ACTIONS(3246), + [anon_sym_download] = ACTIONS(3246), + [anon_sym_help] = ACTIONS(3246), + [anon_sym_length] = ACTIONS(3246), + [anon_sym_output] = ACTIONS(3246), + [anon_sym_output_error] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_append] = ACTIONS(3246), + [anon_sym_metadata] = ACTIONS(3246), + [anon_sym_move] = ACTIONS(3246), + [anon_sym_read] = ACTIONS(3246), + [anon_sym_workdir] = ACTIONS(3246), + [anon_sym_write] = ACTIONS(3246), + [anon_sym_from_json] = ACTIONS(3246), + [anon_sym_to_json] = ACTIONS(3246), + [anon_sym_to_string] = ACTIONS(3246), + [anon_sym_to_float] = ACTIONS(3246), + [anon_sym_bash] = ACTIONS(3246), + [anon_sym_fish] = ACTIONS(3246), + [anon_sym_raw] = ACTIONS(3246), + [anon_sym_sh] = ACTIONS(3246), + [anon_sym_zsh] = ACTIONS(3246), + [anon_sym_random] = ACTIONS(3246), + [anon_sym_random_boolean] = ACTIONS(3246), + [anon_sym_random_float] = ACTIONS(3246), + [anon_sym_random_integer] = ACTIONS(3246), + [anon_sym_columns] = ACTIONS(3246), + [anon_sym_rows] = ACTIONS(3246), + [anon_sym_reverse] = ACTIONS(3246), + }, + [955] = { + [sym_math_operator] = STATE(1403), + [sym_logic_operator] = STATE(1402), + [sym_identifier] = ACTIONS(3235), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3678), + [sym_integer] = ACTIONS(3235), + [sym_float] = ACTIONS(3233), + [sym_string] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_EQ] = ACTIONS(3235), + [anon_sym_COLON] = ACTIONS(3674), + [anon_sym_DOT_DOT] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3233), + [anon_sym_DASH_EQ] = ACTIONS(3233), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_table] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_assert_equal] = ACTIONS(3235), + [anon_sym_download] = ACTIONS(3235), + [anon_sym_help] = ACTIONS(3235), + [anon_sym_length] = ACTIONS(3235), + [anon_sym_output] = ACTIONS(3235), + [anon_sym_output_error] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_append] = ACTIONS(3235), + [anon_sym_metadata] = ACTIONS(3235), + [anon_sym_move] = ACTIONS(3235), + [anon_sym_read] = ACTIONS(3235), + [anon_sym_workdir] = ACTIONS(3235), + [anon_sym_write] = ACTIONS(3235), + [anon_sym_from_json] = ACTIONS(3235), + [anon_sym_to_json] = ACTIONS(3235), + [anon_sym_to_string] = ACTIONS(3235), + [anon_sym_to_float] = ACTIONS(3235), + [anon_sym_bash] = ACTIONS(3235), + [anon_sym_fish] = ACTIONS(3235), + [anon_sym_raw] = ACTIONS(3235), + [anon_sym_sh] = ACTIONS(3235), + [anon_sym_zsh] = ACTIONS(3235), + [anon_sym_random] = ACTIONS(3235), + [anon_sym_random_boolean] = ACTIONS(3235), + [anon_sym_random_float] = ACTIONS(3235), + [anon_sym_random_integer] = ACTIONS(3235), + [anon_sym_columns] = ACTIONS(3235), + [anon_sym_rows] = ACTIONS(3235), + [anon_sym_reverse] = ACTIONS(3235), + }, + [956] = { + [sym_math_operator] = STATE(1403), + [sym_logic_operator] = STATE(1402), + [sym_identifier] = ACTIONS(3250), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_COMMA] = ACTIONS(3248), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3248), + [sym_string] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_PLUS_EQ] = ACTIONS(3248), + [anon_sym_DASH_EQ] = ACTIONS(3248), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_table] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_assert_equal] = ACTIONS(3250), + [anon_sym_download] = ACTIONS(3250), + [anon_sym_help] = ACTIONS(3250), + [anon_sym_length] = ACTIONS(3250), + [anon_sym_output] = ACTIONS(3250), + [anon_sym_output_error] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_append] = ACTIONS(3250), + [anon_sym_metadata] = ACTIONS(3250), + [anon_sym_move] = ACTIONS(3250), + [anon_sym_read] = ACTIONS(3250), + [anon_sym_workdir] = ACTIONS(3250), + [anon_sym_write] = ACTIONS(3250), + [anon_sym_from_json] = ACTIONS(3250), + [anon_sym_to_json] = ACTIONS(3250), + [anon_sym_to_string] = ACTIONS(3250), + [anon_sym_to_float] = ACTIONS(3250), + [anon_sym_bash] = ACTIONS(3250), + [anon_sym_fish] = ACTIONS(3250), + [anon_sym_raw] = ACTIONS(3250), + [anon_sym_sh] = ACTIONS(3250), + [anon_sym_zsh] = ACTIONS(3250), + [anon_sym_random] = ACTIONS(3250), + [anon_sym_random_boolean] = ACTIONS(3250), + [anon_sym_random_float] = ACTIONS(3250), + [anon_sym_random_integer] = ACTIONS(3250), + [anon_sym_columns] = ACTIONS(3250), + [anon_sym_rows] = ACTIONS(3250), + [anon_sym_reverse] = ACTIONS(3250), + }, + [957] = { + [sym_math_operator] = STATE(1198), + [sym_logic_operator] = STATE(1199), + [sym_identifier] = ACTIONS(3246), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_RPAREN] = ACTIONS(3244), + [anon_sym_COMMA] = ACTIONS(3244), + [sym_integer] = ACTIONS(3246), + [sym_float] = ACTIONS(3244), + [sym_string] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_RBRACK] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3681), + [anon_sym_DOT_DOT] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_table] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_assert_equal] = ACTIONS(3246), + [anon_sym_download] = ACTIONS(3246), + [anon_sym_help] = ACTIONS(3246), + [anon_sym_length] = ACTIONS(3246), + [anon_sym_output] = ACTIONS(3246), + [anon_sym_output_error] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_append] = ACTIONS(3246), + [anon_sym_metadata] = ACTIONS(3246), + [anon_sym_move] = ACTIONS(3246), + [anon_sym_read] = ACTIONS(3246), + [anon_sym_workdir] = ACTIONS(3246), + [anon_sym_write] = ACTIONS(3246), + [anon_sym_from_json] = ACTIONS(3246), + [anon_sym_to_json] = ACTIONS(3246), + [anon_sym_to_string] = ACTIONS(3246), + [anon_sym_to_float] = ACTIONS(3246), + [anon_sym_bash] = ACTIONS(3246), + [anon_sym_fish] = ACTIONS(3246), + [anon_sym_raw] = ACTIONS(3246), + [anon_sym_sh] = ACTIONS(3246), + [anon_sym_zsh] = ACTIONS(3246), + [anon_sym_random] = ACTIONS(3246), + [anon_sym_random_boolean] = ACTIONS(3246), + [anon_sym_random_float] = ACTIONS(3246), + [anon_sym_random_integer] = ACTIONS(3246), + [anon_sym_columns] = ACTIONS(3246), + [anon_sym_rows] = ACTIONS(3246), + [anon_sym_reverse] = ACTIONS(3246), + }, + [958] = { + [sym_math_operator] = STATE(1198), + [sym_logic_operator] = STATE(1199), + [sym_identifier] = ACTIONS(3254), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_RPAREN] = ACTIONS(3252), + [anon_sym_COMMA] = ACTIONS(3252), + [sym_integer] = ACTIONS(3254), + [sym_float] = ACTIONS(3252), + [sym_string] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_RBRACK] = ACTIONS(3252), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_DOT_DOT] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_table] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_assert_equal] = ACTIONS(3254), + [anon_sym_download] = ACTIONS(3254), + [anon_sym_help] = ACTIONS(3254), + [anon_sym_length] = ACTIONS(3254), + [anon_sym_output] = ACTIONS(3254), + [anon_sym_output_error] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_append] = ACTIONS(3254), + [anon_sym_metadata] = ACTIONS(3254), + [anon_sym_move] = ACTIONS(3254), + [anon_sym_read] = ACTIONS(3254), + [anon_sym_workdir] = ACTIONS(3254), + [anon_sym_write] = ACTIONS(3254), + [anon_sym_from_json] = ACTIONS(3254), + [anon_sym_to_json] = ACTIONS(3254), + [anon_sym_to_string] = ACTIONS(3254), + [anon_sym_to_float] = ACTIONS(3254), + [anon_sym_bash] = ACTIONS(3254), + [anon_sym_fish] = ACTIONS(3254), + [anon_sym_raw] = ACTIONS(3254), + [anon_sym_sh] = ACTIONS(3254), + [anon_sym_zsh] = ACTIONS(3254), + [anon_sym_random] = ACTIONS(3254), + [anon_sym_random_boolean] = ACTIONS(3254), + [anon_sym_random_float] = ACTIONS(3254), + [anon_sym_random_integer] = ACTIONS(3254), + [anon_sym_columns] = ACTIONS(3254), + [anon_sym_rows] = ACTIONS(3254), + [anon_sym_reverse] = ACTIONS(3254), + }, + [959] = { + [sym_math_operator] = STATE(1198), + [sym_logic_operator] = STATE(1199), + [sym_identifier] = ACTIONS(3242), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [sym_integer] = ACTIONS(3242), + [sym_float] = ACTIONS(3240), + [sym_string] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(3681), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_table] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_assert_equal] = ACTIONS(3242), + [anon_sym_download] = ACTIONS(3242), + [anon_sym_help] = ACTIONS(3242), + [anon_sym_length] = ACTIONS(3242), + [anon_sym_output] = ACTIONS(3242), + [anon_sym_output_error] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_append] = ACTIONS(3242), + [anon_sym_metadata] = ACTIONS(3242), + [anon_sym_move] = ACTIONS(3242), + [anon_sym_read] = ACTIONS(3242), + [anon_sym_workdir] = ACTIONS(3242), + [anon_sym_write] = ACTIONS(3242), + [anon_sym_from_json] = ACTIONS(3242), + [anon_sym_to_json] = ACTIONS(3242), + [anon_sym_to_string] = ACTIONS(3242), + [anon_sym_to_float] = ACTIONS(3242), + [anon_sym_bash] = ACTIONS(3242), + [anon_sym_fish] = ACTIONS(3242), + [anon_sym_raw] = ACTIONS(3242), + [anon_sym_sh] = ACTIONS(3242), + [anon_sym_zsh] = ACTIONS(3242), + [anon_sym_random] = ACTIONS(3242), + [anon_sym_random_boolean] = ACTIONS(3242), + [anon_sym_random_float] = ACTIONS(3242), + [anon_sym_random_integer] = ACTIONS(3242), + [anon_sym_columns] = ACTIONS(3242), + [anon_sym_rows] = ACTIONS(3242), + [anon_sym_reverse] = ACTIONS(3242), + }, + [960] = { + [sym_math_operator] = STATE(1198), + [sym_logic_operator] = STATE(1199), + [sym_identifier] = ACTIONS(3250), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_COMMA] = ACTIONS(3248), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3248), + [sym_string] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3683), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_table] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_assert_equal] = ACTIONS(3250), + [anon_sym_download] = ACTIONS(3250), + [anon_sym_help] = ACTIONS(3250), + [anon_sym_length] = ACTIONS(3250), + [anon_sym_output] = ACTIONS(3250), + [anon_sym_output_error] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_append] = ACTIONS(3250), + [anon_sym_metadata] = ACTIONS(3250), + [anon_sym_move] = ACTIONS(3250), + [anon_sym_read] = ACTIONS(3250), + [anon_sym_workdir] = ACTIONS(3250), + [anon_sym_write] = ACTIONS(3250), + [anon_sym_from_json] = ACTIONS(3250), + [anon_sym_to_json] = ACTIONS(3250), + [anon_sym_to_string] = ACTIONS(3250), + [anon_sym_to_float] = ACTIONS(3250), + [anon_sym_bash] = ACTIONS(3250), + [anon_sym_fish] = ACTIONS(3250), + [anon_sym_raw] = ACTIONS(3250), + [anon_sym_sh] = ACTIONS(3250), + [anon_sym_zsh] = ACTIONS(3250), + [anon_sym_random] = ACTIONS(3250), + [anon_sym_random_boolean] = ACTIONS(3250), + [anon_sym_random_float] = ACTIONS(3250), + [anon_sym_random_integer] = ACTIONS(3250), + [anon_sym_columns] = ACTIONS(3250), + [anon_sym_rows] = ACTIONS(3250), + [anon_sym_reverse] = ACTIONS(3250), + }, + [961] = { + [sym_math_operator] = STATE(1289), + [sym_logic_operator] = STATE(1290), + [sym_identifier] = ACTIONS(3264), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [sym_integer] = ACTIONS(3264), + [sym_float] = ACTIONS(3262), + [sym_string] = ACTIONS(3262), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_PLUS_EQ] = ACTIONS(3262), + [anon_sym_DASH_EQ] = ACTIONS(3262), + [anon_sym_EQ_GT] = ACTIONS(3262), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_table] = ACTIONS(3264), + [anon_sym_assert] = ACTIONS(3264), + [anon_sym_assert_equal] = ACTIONS(3264), + [anon_sym_download] = ACTIONS(3264), + [anon_sym_help] = ACTIONS(3264), + [anon_sym_length] = ACTIONS(3264), + [anon_sym_output] = ACTIONS(3264), + [anon_sym_output_error] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_append] = ACTIONS(3264), + [anon_sym_metadata] = ACTIONS(3264), + [anon_sym_move] = ACTIONS(3264), + [anon_sym_read] = ACTIONS(3264), + [anon_sym_workdir] = ACTIONS(3264), + [anon_sym_write] = ACTIONS(3264), + [anon_sym_from_json] = ACTIONS(3264), + [anon_sym_to_json] = ACTIONS(3264), + [anon_sym_to_string] = ACTIONS(3264), + [anon_sym_to_float] = ACTIONS(3264), + [anon_sym_bash] = ACTIONS(3264), + [anon_sym_fish] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3264), + [anon_sym_sh] = ACTIONS(3264), + [anon_sym_zsh] = ACTIONS(3264), + [anon_sym_random] = ACTIONS(3264), + [anon_sym_random_boolean] = ACTIONS(3264), + [anon_sym_random_float] = ACTIONS(3264), + [anon_sym_random_integer] = ACTIONS(3264), + [anon_sym_columns] = ACTIONS(3264), + [anon_sym_rows] = ACTIONS(3264), + [anon_sym_reverse] = ACTIONS(3264), + }, + [962] = { + [sym_math_operator] = STATE(1289), + [sym_logic_operator] = STATE(1290), + [sym_identifier] = ACTIONS(3254), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_COMMA] = ACTIONS(3252), + [sym_integer] = ACTIONS(3254), + [sym_float] = ACTIONS(3252), + [sym_string] = ACTIONS(3252), + [anon_sym_true] = ACTIONS(3254), + [anon_sym_false] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_EQ] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_PLUS_EQ] = ACTIONS(3252), + [anon_sym_DASH_EQ] = ACTIONS(3252), + [anon_sym_EQ_GT] = ACTIONS(3252), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_table] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_assert_equal] = ACTIONS(3254), + [anon_sym_download] = ACTIONS(3254), + [anon_sym_help] = ACTIONS(3254), + [anon_sym_length] = ACTIONS(3254), + [anon_sym_output] = ACTIONS(3254), + [anon_sym_output_error] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_append] = ACTIONS(3254), + [anon_sym_metadata] = ACTIONS(3254), + [anon_sym_move] = ACTIONS(3254), + [anon_sym_read] = ACTIONS(3254), + [anon_sym_workdir] = ACTIONS(3254), + [anon_sym_write] = ACTIONS(3254), + [anon_sym_from_json] = ACTIONS(3254), + [anon_sym_to_json] = ACTIONS(3254), + [anon_sym_to_string] = ACTIONS(3254), + [anon_sym_to_float] = ACTIONS(3254), + [anon_sym_bash] = ACTIONS(3254), + [anon_sym_fish] = ACTIONS(3254), + [anon_sym_raw] = ACTIONS(3254), + [anon_sym_sh] = ACTIONS(3254), + [anon_sym_zsh] = ACTIONS(3254), + [anon_sym_random] = ACTIONS(3254), + [anon_sym_random_boolean] = ACTIONS(3254), + [anon_sym_random_float] = ACTIONS(3254), + [anon_sym_random_integer] = ACTIONS(3254), + [anon_sym_columns] = ACTIONS(3254), + [anon_sym_rows] = ACTIONS(3254), + [anon_sym_reverse] = ACTIONS(3254), + }, + [963] = { + [sym_math_operator] = STATE(1198), + [sym_logic_operator] = STATE(1199), + [sym_identifier] = ACTIONS(3264), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [sym_integer] = ACTIONS(3264), + [sym_float] = ACTIONS(3262), + [sym_string] = ACTIONS(3262), + [anon_sym_true] = ACTIONS(3264), + [anon_sym_false] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_RBRACK] = ACTIONS(3262), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_DOT_DOT] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_EQ_GT] = ACTIONS(3262), + [anon_sym_PIPE] = ACTIONS(3264), + [anon_sym_table] = ACTIONS(3264), + [anon_sym_assert] = ACTIONS(3264), + [anon_sym_assert_equal] = ACTIONS(3264), + [anon_sym_download] = ACTIONS(3264), + [anon_sym_help] = ACTIONS(3264), + [anon_sym_length] = ACTIONS(3264), + [anon_sym_output] = ACTIONS(3264), + [anon_sym_output_error] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_append] = ACTIONS(3264), + [anon_sym_metadata] = ACTIONS(3264), + [anon_sym_move] = ACTIONS(3264), + [anon_sym_read] = ACTIONS(3264), + [anon_sym_workdir] = ACTIONS(3264), + [anon_sym_write] = ACTIONS(3264), + [anon_sym_from_json] = ACTIONS(3264), + [anon_sym_to_json] = ACTIONS(3264), + [anon_sym_to_string] = ACTIONS(3264), + [anon_sym_to_float] = ACTIONS(3264), + [anon_sym_bash] = ACTIONS(3264), + [anon_sym_fish] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3264), + [anon_sym_sh] = ACTIONS(3264), + [anon_sym_zsh] = ACTIONS(3264), + [anon_sym_random] = ACTIONS(3264), + [anon_sym_random_boolean] = ACTIONS(3264), + [anon_sym_random_float] = ACTIONS(3264), + [anon_sym_random_integer] = ACTIONS(3264), + [anon_sym_columns] = ACTIONS(3264), + [anon_sym_rows] = ACTIONS(3264), + [anon_sym_reverse] = ACTIONS(3264), + }, + [964] = { + [sym_math_operator] = STATE(1289), + [sym_logic_operator] = STATE(1290), + [sym_identifier] = ACTIONS(3246), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_COMMA] = ACTIONS(3244), + [sym_integer] = ACTIONS(3246), + [sym_float] = ACTIONS(3244), + [sym_string] = ACTIONS(3244), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_EQ] = ACTIONS(3246), + [anon_sym_COLON] = ACTIONS(3685), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3244), + [anon_sym_DASH_EQ] = ACTIONS(3244), + [anon_sym_EQ_GT] = ACTIONS(3244), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_table] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_assert_equal] = ACTIONS(3246), + [anon_sym_download] = ACTIONS(3246), + [anon_sym_help] = ACTIONS(3246), + [anon_sym_length] = ACTIONS(3246), + [anon_sym_output] = ACTIONS(3246), + [anon_sym_output_error] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_append] = ACTIONS(3246), + [anon_sym_metadata] = ACTIONS(3246), + [anon_sym_move] = ACTIONS(3246), + [anon_sym_read] = ACTIONS(3246), + [anon_sym_workdir] = ACTIONS(3246), + [anon_sym_write] = ACTIONS(3246), + [anon_sym_from_json] = ACTIONS(3246), + [anon_sym_to_json] = ACTIONS(3246), + [anon_sym_to_string] = ACTIONS(3246), + [anon_sym_to_float] = ACTIONS(3246), + [anon_sym_bash] = ACTIONS(3246), + [anon_sym_fish] = ACTIONS(3246), + [anon_sym_raw] = ACTIONS(3246), + [anon_sym_sh] = ACTIONS(3246), + [anon_sym_zsh] = ACTIONS(3246), + [anon_sym_random] = ACTIONS(3246), + [anon_sym_random_boolean] = ACTIONS(3246), + [anon_sym_random_float] = ACTIONS(3246), + [anon_sym_random_integer] = ACTIONS(3246), + [anon_sym_columns] = ACTIONS(3246), + [anon_sym_rows] = ACTIONS(3246), + [anon_sym_reverse] = ACTIONS(3246), + }, + [965] = { + [sym_math_operator] = STATE(1289), + [sym_logic_operator] = STATE(1290), + [sym_identifier] = ACTIONS(3242), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [sym_integer] = ACTIONS(3242), + [sym_float] = ACTIONS(3240), + [sym_string] = ACTIONS(3240), + [anon_sym_true] = ACTIONS(3242), + [anon_sym_false] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_EQ] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(3685), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3240), + [anon_sym_DASH_EQ] = ACTIONS(3240), + [anon_sym_EQ_GT] = ACTIONS(3240), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_table] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_assert_equal] = ACTIONS(3242), + [anon_sym_download] = ACTIONS(3242), + [anon_sym_help] = ACTIONS(3242), + [anon_sym_length] = ACTIONS(3242), + [anon_sym_output] = ACTIONS(3242), + [anon_sym_output_error] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_append] = ACTIONS(3242), + [anon_sym_metadata] = ACTIONS(3242), + [anon_sym_move] = ACTIONS(3242), + [anon_sym_read] = ACTIONS(3242), + [anon_sym_workdir] = ACTIONS(3242), + [anon_sym_write] = ACTIONS(3242), + [anon_sym_from_json] = ACTIONS(3242), + [anon_sym_to_json] = ACTIONS(3242), + [anon_sym_to_string] = ACTIONS(3242), + [anon_sym_to_float] = ACTIONS(3242), + [anon_sym_bash] = ACTIONS(3242), + [anon_sym_fish] = ACTIONS(3242), + [anon_sym_raw] = ACTIONS(3242), + [anon_sym_sh] = ACTIONS(3242), + [anon_sym_zsh] = ACTIONS(3242), + [anon_sym_random] = ACTIONS(3242), + [anon_sym_random_boolean] = ACTIONS(3242), + [anon_sym_random_float] = ACTIONS(3242), + [anon_sym_random_integer] = ACTIONS(3242), + [anon_sym_columns] = ACTIONS(3242), + [anon_sym_rows] = ACTIONS(3242), + [anon_sym_reverse] = ACTIONS(3242), + }, + [966] = { + [sym_math_operator] = STATE(1289), + [sym_logic_operator] = STATE(1290), + [sym_identifier] = ACTIONS(3235), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3678), + [sym_integer] = ACTIONS(3235), + [sym_float] = ACTIONS(3233), + [sym_string] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_EQ] = ACTIONS(3235), + [anon_sym_COLON] = ACTIONS(3685), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(3233), + [anon_sym_DASH_EQ] = ACTIONS(3233), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_table] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_assert_equal] = ACTIONS(3235), + [anon_sym_download] = ACTIONS(3235), + [anon_sym_help] = ACTIONS(3235), + [anon_sym_length] = ACTIONS(3235), + [anon_sym_output] = ACTIONS(3235), + [anon_sym_output_error] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_append] = ACTIONS(3235), + [anon_sym_metadata] = ACTIONS(3235), + [anon_sym_move] = ACTIONS(3235), + [anon_sym_read] = ACTIONS(3235), + [anon_sym_workdir] = ACTIONS(3235), + [anon_sym_write] = ACTIONS(3235), + [anon_sym_from_json] = ACTIONS(3235), + [anon_sym_to_json] = ACTIONS(3235), + [anon_sym_to_string] = ACTIONS(3235), + [anon_sym_to_float] = ACTIONS(3235), + [anon_sym_bash] = ACTIONS(3235), + [anon_sym_fish] = ACTIONS(3235), + [anon_sym_raw] = ACTIONS(3235), + [anon_sym_sh] = ACTIONS(3235), + [anon_sym_zsh] = ACTIONS(3235), + [anon_sym_random] = ACTIONS(3235), + [anon_sym_random_boolean] = ACTIONS(3235), + [anon_sym_random_float] = ACTIONS(3235), + [anon_sym_random_integer] = ACTIONS(3235), + [anon_sym_columns] = ACTIONS(3235), + [anon_sym_rows] = ACTIONS(3235), + [anon_sym_reverse] = ACTIONS(3235), + }, + [967] = { + [sym_math_operator] = STATE(1198), + [sym_logic_operator] = STATE(1199), + [sym_identifier] = ACTIONS(3250), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_COMMA] = ACTIONS(3248), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3248), + [sym_string] = ACTIONS(3248), + [anon_sym_true] = ACTIONS(3250), + [anon_sym_false] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3248), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_EQ_GT] = ACTIONS(3248), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_table] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_assert_equal] = ACTIONS(3250), + [anon_sym_download] = ACTIONS(3250), + [anon_sym_help] = ACTIONS(3250), + [anon_sym_length] = ACTIONS(3250), + [anon_sym_output] = ACTIONS(3250), + [anon_sym_output_error] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_append] = ACTIONS(3250), + [anon_sym_metadata] = ACTIONS(3250), + [anon_sym_move] = ACTIONS(3250), + [anon_sym_read] = ACTIONS(3250), + [anon_sym_workdir] = ACTIONS(3250), + [anon_sym_write] = ACTIONS(3250), + [anon_sym_from_json] = ACTIONS(3250), + [anon_sym_to_json] = ACTIONS(3250), + [anon_sym_to_string] = ACTIONS(3250), + [anon_sym_to_float] = ACTIONS(3250), + [anon_sym_bash] = ACTIONS(3250), + [anon_sym_fish] = ACTIONS(3250), + [anon_sym_raw] = ACTIONS(3250), + [anon_sym_sh] = ACTIONS(3250), + [anon_sym_zsh] = ACTIONS(3250), + [anon_sym_random] = ACTIONS(3250), + [anon_sym_random_boolean] = ACTIONS(3250), + [anon_sym_random_float] = ACTIONS(3250), + [anon_sym_random_integer] = ACTIONS(3250), + [anon_sym_columns] = ACTIONS(3250), + [anon_sym_rows] = ACTIONS(3250), + [anon_sym_reverse] = ACTIONS(3250), + }, + [968] = { + [sym_math_operator] = STATE(1198), + [sym_logic_operator] = STATE(1199), + [sym_identifier] = ACTIONS(3235), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3687), + [sym_integer] = ACTIONS(3235), + [sym_float] = ACTIONS(3233), + [sym_string] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_RBRACK] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3681), + [anon_sym_DOT_DOT] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_PERCENT] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_table] = ACTIONS(3235), + [anon_sym_assert] = ACTIONS(3235), + [anon_sym_assert_equal] = ACTIONS(3235), + [anon_sym_download] = ACTIONS(3235), + [anon_sym_help] = ACTIONS(3235), + [anon_sym_length] = ACTIONS(3235), + [anon_sym_output] = ACTIONS(3235), + [anon_sym_output_error] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_append] = ACTIONS(3235), + [anon_sym_metadata] = ACTIONS(3235), + [anon_sym_move] = ACTIONS(3235), + [anon_sym_read] = ACTIONS(3235), + [anon_sym_workdir] = ACTIONS(3235), + [anon_sym_write] = ACTIONS(3235), + [anon_sym_from_json] = ACTIONS(3235), + [anon_sym_to_json] = ACTIONS(3235), + [anon_sym_to_string] = ACTIONS(3235), + [anon_sym_to_float] = ACTIONS(3235), + [anon_sym_bash] = ACTIONS(3235), + [anon_sym_fish] = ACTIONS(3235), + [anon_sym_raw] = ACTIONS(3235), + [anon_sym_sh] = ACTIONS(3235), + [anon_sym_zsh] = ACTIONS(3235), + [anon_sym_random] = ACTIONS(3235), + [anon_sym_random_boolean] = ACTIONS(3235), + [anon_sym_random_float] = ACTIONS(3235), + [anon_sym_random_integer] = ACTIONS(3235), + [anon_sym_columns] = ACTIONS(3235), + [anon_sym_rows] = ACTIONS(3235), + [anon_sym_reverse] = ACTIONS(3235), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 5, + [0] = 7, ACTIONS(3), 1, - sym_comment, - STATE(814), 1, + sym__comment, + ACTIONS(3690), 1, + anon_sym_elseif, + ACTIONS(3692), 1, + anon_sym_else, + STATE(1020), 1, + sym_else, + STATE(999), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(3229), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3231), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [79] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3432), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + ACTIONS(3434), 41, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [150] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(73), 1, + anon_sym_DASH, + ACTIONS(3694), 1, + anon_sym_COLON, + STATE(1399), 1, sym_math_operator, - STATE(815), 1, + STATE(1400), 1, sym_logic_operator, - ACTIONS(1930), 22, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3240), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + ACTIONS(3242), 36, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [235] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1399), 1, + sym_math_operator, + STATE(1400), 1, + sym_logic_operator, + ACTIONS(3252), 22, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -55225,7 +95879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - ACTIONS(1932), 39, + ACTIONS(3254), 39, sym_identifier, sym_integer, anon_sym_true, @@ -55265,33 +95919,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [75] = 10, + [310] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, + sym__comment, + ACTIONS(73), 1, anon_sym_DASH, - ACTIONS(2170), 1, + ACTIONS(3694), 1, anon_sym_COLON, - STATE(814), 1, + STATE(1399), 1, sym_math_operator, - STATE(815), 1, + STATE(1400), 1, sym_logic_operator, - ACTIONS(75), 2, + ACTIONS(79), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(69), 4, + ACTIONS(75), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(73), 6, + ACTIONS(77), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1947), 11, + ACTIONS(3244), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -55303,7 +95957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_EQ_GT, - ACTIONS(1949), 36, + ACTIONS(3246), 36, sym_identifier, sym_integer, anon_sym_true, @@ -55340,14 +95994,374 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [160] = 5, + [395] = 3, ACTIONS(3), 1, - sym_comment, - STATE(814), 1, + sym__comment, + ACTIONS(3359), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + ACTIONS(3361), 41, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [466] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(73), 1, + anon_sym_DASH, + ACTIONS(3687), 1, + anon_sym_COMMA, + ACTIONS(3694), 1, + anon_sym_COLON, + STATE(1399), 1, sym_math_operator, - STATE(815), 1, + STATE(1400), 1, sym_logic_operator, - ACTIONS(1934), 22, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3233), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + ACTIONS(3235), 36, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [553] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3696), 1, + anon_sym_elseif, + ACTIONS(3698), 1, + anon_sym_else, + STATE(1058), 1, + sym_else, + STATE(998), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(3229), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3231), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [632] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3690), 1, + anon_sym_elseif, + ACTIONS(3700), 1, + anon_sym_else, + STATE(1058), 1, + sym_else, + STATE(999), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(3229), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3231), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [711] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3690), 1, + anon_sym_elseif, + ACTIONS(3692), 1, + anon_sym_else, + STATE(1013), 1, + sym_else, + STATE(969), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(3219), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3221), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [790] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1399), 1, + sym_math_operator, + STATE(1400), 1, + sym_logic_operator, + ACTIONS(3262), 22, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -55370,7 +96384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - ACTIONS(1936), 39, + ACTIONS(3264), 39, sym_identifier, sym_integer, anon_sym_true, @@ -55410,33 +96424,1046 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [235] = 10, + [865] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DASH, - ACTIONS(2170), 1, + sym__comment, + ACTIONS(3690), 1, + anon_sym_elseif, + ACTIONS(3700), 1, + anon_sym_else, + STATE(1067), 1, + sym_else, + STATE(977), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(3219), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3221), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [944] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3409), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, anon_sym_COLON, - STATE(814), 1, - sym_math_operator, - STATE(815), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 4, - anon_sym_PLUS, + anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(73), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1951), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + ACTIONS(3411), 41, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1015] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3383), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + ACTIONS(3385), 41, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1086] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3696), 1, + anon_sym_elseif, + ACTIONS(3698), 1, + anon_sym_else, + STATE(1067), 1, + sym_else, + STATE(976), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(3219), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3221), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1165] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3405), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + ACTIONS(3407), 41, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1236] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3696), 1, + anon_sym_elseif, + ACTIONS(3702), 1, + anon_sym_else, + STATE(1013), 1, + sym_else, + STATE(988), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(3219), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3221), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1315] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3401), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + ACTIONS(3403), 41, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1386] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3333), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + ACTIONS(3335), 41, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1457] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3696), 1, + anon_sym_elseif, + ACTIONS(3702), 1, + anon_sym_else, + STATE(1020), 1, + sym_else, + STATE(998), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(3229), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3231), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1536] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3351), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + ACTIONS(3353), 41, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1607] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3389), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + ACTIONS(3391), 41, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1678] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3355), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + ACTIONS(3357), 41, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1749] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2518), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + ACTIONS(2541), 41, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1820] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3371), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + ACTIONS(3373), 41, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1891] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3375), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + ACTIONS(3377), 41, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1962] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3359), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -55447,12 +97474,27 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_EQ_GT, - ACTIONS(1953), 36, + ACTIONS(3361), 39, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, anon_sym_PIPE, anon_sym_table, anon_sym_assert, @@ -55485,928 +97527,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [320] = 11, + [2032] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DASH, - ACTIONS(2031), 1, - anon_sym_COMMA, - ACTIONS(2170), 1, - anon_sym_COLON, - STATE(814), 1, - sym_math_operator, - STATE(815), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1938), 10, + sym__comment, + ACTIONS(3409), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_EQ_GT, - ACTIONS(1940), 36, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [407] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2172), 1, - anon_sym_elseif, - ACTIONS(2174), 1, - anon_sym_else, - STATE(793), 1, - sym_else, - STATE(566), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1899), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1901), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [485] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2172), 1, - anon_sym_elseif, - ACTIONS(2176), 1, - anon_sym_else, - STATE(586), 1, - sym_else, - STATE(568), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1899), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1901), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [563] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, - anon_sym_elseif, - ACTIONS(2180), 1, - anon_sym_else, - STATE(712), 1, - sym_else, - STATE(570), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1885), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1887), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [641] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, - anon_sym_elseif, - ACTIONS(2182), 1, - anon_sym_else, - STATE(586), 1, - sym_else, - STATE(564), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1899), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1901), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [719] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, - anon_sym_elseif, - ACTIONS(2182), 1, - anon_sym_else, - STATE(584), 1, - sym_else, - STATE(570), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1885), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1887), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [797] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 1, - sym_identifier, - ACTIONS(1262), 1, - anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_LPAREN, - ACTIONS(1268), 1, - sym_integer, - ACTIONS(1277), 1, - anon_sym_LBRACK, - ACTIONS(1282), 1, - anon_sym_EQ_GT, - ACTIONS(1288), 1, - anon_sym_table, - ACTIONS(2124), 1, - anon_sym_PIPE, - STATE(538), 1, - sym__built_in_function_name, - STATE(565), 1, - aux_sym_match_repeat1, - STATE(962), 1, - sym_expression, - STATE(1044), 1, - sym_identifier_list, - ACTIONS(1271), 2, - sym_float, - sym_string, - ACTIONS(1274), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - ACTIONS(1257), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1291), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [901] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2172), 1, - anon_sym_elseif, - ACTIONS(2174), 1, - anon_sym_else, - STATE(712), 1, - sym_else, - STATE(572), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1885), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1887), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [979] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, - anon_sym_elseif, - ACTIONS(2180), 1, - anon_sym_else, - STATE(793), 1, - sym_else, - STATE(562), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1899), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1901), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1057] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2172), 1, - anon_sym_elseif, - ACTIONS(2176), 1, - anon_sym_else, - STATE(584), 1, - sym_else, - STATE(572), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1885), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1887), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1135] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1296), 1, - sym_identifier, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1312), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(565), 1, - aux_sym_match_repeat1, - STATE(962), 1, - sym_expression, - STATE(1044), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - ACTIONS(1294), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1239] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_elseif, - STATE(570), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1955), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1957), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1312] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DASH, - ACTIONS(2130), 1, - anon_sym_COMMA, - ACTIONS(2166), 1, anon_sym_COLON, - STATE(725), 1, - sym_logic_operator, - STATE(726), 1, - sym_math_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 4, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(73), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1938), 8, + anon_sym_EQ_GT, + ACTIONS(3411), 39, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [2102] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2518), 23, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_EQ_GT, - ACTIONS(1940), 36, + ACTIONS(2541), 39, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, anon_sym_PIPE, anon_sym_table, anon_sym_assert, @@ -56439,26 +97661,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [1397] = 5, + [2172] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, + sym__comment, + ACTIONS(3704), 1, anon_sym_elseif, - STATE(572), 2, + STATE(998), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(1955), 10, - ts_builtin_sym_end, + ACTIONS(3268), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_asyncfor, anon_sym_PIPE, - ACTIONS(1957), 48, + ACTIONS(3270), 48, sym_identifier, sym_integer, anon_sym_true, @@ -56507,2107 +97730,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [1470] = 11, + [2246] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DASH, - ACTIONS(2130), 1, - anon_sym_COMMA, - ACTIONS(2170), 1, - anon_sym_COLON, - STATE(814), 1, - sym_math_operator, - STATE(815), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1938), 7, + sym__comment, + ACTIONS(3707), 1, + anon_sym_elseif, + STATE(999), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(3268), 11, + ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3270), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [2320] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3355), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - ACTIONS(1940), 36, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1554] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2112), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2114), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1622] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2016), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2018), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1690] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2023), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2025), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1758] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2004), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2006), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1826] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2027), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2029), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1894] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2058), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1962] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_EQ_GT, - ACTIONS(1895), 1, - anon_sym_table, - ACTIONS(2190), 1, - anon_sym_RBRACK, - STATE(364), 1, - sym__built_in_function_name, - STATE(581), 1, - sym_expression, - STATE(596), 1, - aux_sym_list_repeat1, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2064] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DASH, - ACTIONS(2170), 1, - anon_sym_COLON, - ACTIONS(2196), 1, - anon_sym_COMMA, - STATE(814), 1, - sym_math_operator, - STATE(815), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2194), 7, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_EQ_GT, - ACTIONS(2192), 36, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2148] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_EQ_GT, - ACTIONS(1895), 1, - anon_sym_table, - ACTIONS(2198), 1, - anon_sym_RBRACK, - STATE(364), 1, - sym__built_in_function_name, - STATE(580), 1, - aux_sym_list_repeat1, - STATE(581), 1, - sym_expression, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2250] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2120), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2122), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2318] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2048), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2050), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2386] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_EQ_GT, - ACTIONS(1895), 1, - anon_sym_table, - ACTIONS(2200), 1, - anon_sym_RBRACK, - STATE(364), 1, - sym__built_in_function_name, - STATE(581), 1, - sym_expression, - STATE(596), 1, - aux_sym_list_repeat1, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2488] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1885), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1887), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2556] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2116), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2118), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2624] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2000), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2002), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2692] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2136), 1, - anon_sym_SEMI, - ACTIONS(1964), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1966), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2762] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2108), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2110), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2830] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2052), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2054), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2898] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_EQ_GT, - ACTIONS(1895), 1, - anon_sym_table, - ACTIONS(2202), 1, - anon_sym_RBRACK, - STATE(364), 1, - sym__built_in_function_name, - STATE(581), 1, - sym_expression, - STATE(596), 1, - aux_sym_list_repeat1, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3000] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2044), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2046), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3068] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2084), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2086), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3136] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2012), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2014), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3204] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2204), 1, - sym_identifier, - ACTIONS(2207), 1, - anon_sym_LBRACE, - ACTIONS(2210), 1, - anon_sym_LPAREN, - ACTIONS(2213), 1, - sym_integer, - ACTIONS(2222), 1, - anon_sym_LBRACK, - ACTIONS(2225), 1, - anon_sym_RBRACK, - ACTIONS(2227), 1, - anon_sym_EQ_GT, - ACTIONS(2230), 1, - anon_sym_PIPE, - ACTIONS(2233), 1, - anon_sym_table, - STATE(364), 1, - sym__built_in_function_name, - STATE(581), 1, - sym_expression, - STATE(596), 1, - aux_sym_list_repeat1, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(2216), 2, - sym_float, - sym_string, - ACTIONS(2219), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2236), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3306] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2008), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2010), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3374] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2034), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2036), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3442] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_EQ_GT, - ACTIONS(1895), 1, - anon_sym_table, - ACTIONS(2239), 1, - anon_sym_RBRACK, - STATE(364), 1, - sym__built_in_function_name, - STATE(581), 1, - sym_expression, - STATE(585), 1, - aux_sym_list_repeat1, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3544] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_EQ_GT, - ACTIONS(1895), 1, - anon_sym_table, - ACTIONS(2241), 1, - anon_sym_RBRACK, - STATE(364), 1, - sym__built_in_function_name, - STATE(581), 1, - sym_expression, - STATE(592), 1, - aux_sym_list_repeat1, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2040), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2042), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3714] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2243), 1, - anon_sym_DOT_DOT, - STATE(855), 1, - sym_math_operator, - STATE(856), 1, - sym_logic_operator, - ACTIONS(1913), 17, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - ACTIONS(1915), 39, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3787] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(855), 1, - sym_math_operator, - STATE(856), 1, - sym_logic_operator, - ACTIONS(1930), 18, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -58621,7 +97826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - ACTIONS(1932), 39, + ACTIONS(3357), 39, sym_identifier, sym_integer, anon_sym_true, @@ -58661,19 +97866,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [3858] = 5, + [2390] = 3, ACTIONS(3), 1, - sym_comment, - STATE(855), 1, - sym_math_operator, - STATE(856), 1, - sym_logic_operator, - ACTIONS(1913), 18, + sym__comment, + ACTIONS(3351), 23, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -58687,7 +97893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - ACTIONS(1915), 39, + ACTIONS(3353), 39, sym_identifier, sym_integer, anon_sym_true, @@ -58727,161 +97933,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [3929] = 10, + [2460] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DASH, - ACTIONS(2245), 1, - anon_sym_COLON, - STATE(855), 1, - sym_math_operator, - STATE(856), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1951), 7, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(1953), 36, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4010] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DASH, - ACTIONS(2245), 1, - anon_sym_COLON, - STATE(855), 1, - sym_math_operator, - STATE(856), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1947), 7, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(1949), 36, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4091] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(855), 1, - sym_math_operator, - STATE(856), 1, - sym_logic_operator, - ACTIONS(1934), 18, + sym__comment, + ACTIONS(3401), 23, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -58895,7 +97960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - ACTIONS(1936), 39, + ACTIONS(3403), 39, sym_identifier, sym_integer, anon_sym_true, @@ -58935,13275 +98000,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [4162] = 18, + [2530] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - sym_identifier, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(966), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4258] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(175), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(184), 1, - sym__built_in_function_name, - STATE(394), 1, - sym_expression, - STATE(1126), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(177), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4354] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(121), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4450] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(37), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4546] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(38), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4642] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(39), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4738] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(111), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4834] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(490), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4930] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(139), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5026] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(88), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5122] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(41), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5218] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(292), 1, - anon_sym_EQ_GT, - ACTIONS(314), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(214), 1, - sym__built_in_function_name, - STATE(449), 1, - sym_expression, - STATE(1234), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5314] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(292), 1, - anon_sym_EQ_GT, - ACTIONS(314), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(214), 1, - sym__built_in_function_name, - STATE(452), 1, - sym_expression, - STATE(1234), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5410] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(187), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(195), 1, - sym__built_in_function_name, - STATE(385), 1, - sym_expression, - STATE(1054), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(211), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5506] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(42), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5602] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(292), 1, - anon_sym_EQ_GT, - ACTIONS(314), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(214), 1, - sym__built_in_function_name, - STATE(446), 1, - sym_expression, - STATE(1234), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5698] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(148), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5794] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2257), 1, - sym_identifier, - ACTIONS(2259), 1, - anon_sym_EQ_GT, - ACTIONS(2261), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(937), 1, - sym_expression, - STATE(1119), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5890] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(147), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5986] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(55), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6082] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(145), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6178] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(57), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6274] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1790), 1, - anon_sym_EQ_GT, - ACTIONS(1812), 1, - anon_sym_table, - ACTIONS(2263), 1, - sym_identifier, - STATE(364), 1, - sym__built_in_function_name, - STATE(917), 1, - sym_expression, - STATE(1052), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6370] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1903), 1, - anon_sym_EQ_GT, - ACTIONS(1905), 1, - anon_sym_table, - STATE(352), 1, - sym__built_in_function_name, - STATE(554), 1, - sym_expression, - STATE(1055), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1907), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6466] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(292), 1, - anon_sym_EQ_GT, - ACTIONS(314), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(26), 1, - sym_expression, - STATE(214), 1, - sym__built_in_function_name, - STATE(1234), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6562] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_EQ_GT, - ACTIONS(421), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(201), 1, - sym__built_in_function_name, - STATE(441), 1, - sym_expression, - STATE(1071), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(423), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6658] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(40), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6754] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(61), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6850] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(63), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6946] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(64), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7042] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(66), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7138] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(67), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7234] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(65), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7330] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(187), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(195), 1, - sym__built_in_function_name, - STATE(434), 1, - sym_expression, - STATE(1054), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(211), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7426] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_EQ_GT, - ACTIONS(421), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(12), 1, - sym_expression, - STATE(201), 1, - sym__built_in_function_name, - STATE(1071), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(423), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7522] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2265), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(952), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7618] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(143), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7714] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2267), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(967), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7810] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(79), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7906] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2269), 1, - sym_identifier, - ACTIONS(2271), 1, - anon_sym_EQ_GT, - ACTIONS(2273), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(925), 1, - sym_expression, - STATE(1057), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8002] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(119), 1, - anon_sym_EQ_GT, - ACTIONS(141), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(182), 1, - sym__built_in_function_name, - STATE(363), 1, - sym_expression, - STATE(1040), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(143), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8098] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(46), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8194] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(187), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(195), 1, - sym__built_in_function_name, - STATE(412), 1, - sym_expression, - STATE(1054), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(211), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8290] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(80), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8386] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(52), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8482] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(74), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8578] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2269), 1, - sym_identifier, - ACTIONS(2271), 1, - anon_sym_EQ_GT, - ACTIONS(2273), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(922), 1, - sym_expression, - STATE(1057), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8674] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2257), 1, - sym_identifier, - ACTIONS(2259), 1, - anon_sym_EQ_GT, - ACTIONS(2261), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(969), 1, - sym_expression, - STATE(1119), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8770] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2257), 1, - sym_identifier, - ACTIONS(2259), 1, - anon_sym_EQ_GT, - ACTIONS(2261), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(970), 1, - sym_expression, - STATE(1119), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8866] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2277), 1, - sym_identifier, - ACTIONS(2279), 1, - anon_sym_EQ_GT, - ACTIONS(2281), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(921), 1, - sym_expression, - STATE(1053), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8962] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2267), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(944), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9058] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2257), 1, - sym_identifier, - ACTIONS(2259), 1, - anon_sym_EQ_GT, - ACTIONS(2261), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(963), 1, - sym_expression, - STATE(1119), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9154] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(187), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(195), 1, - sym__built_in_function_name, - STATE(382), 1, - sym_expression, - STATE(1054), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(211), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9250] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2267), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(964), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9346] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(187), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(195), 1, - sym__built_in_function_name, - STATE(413), 1, - sym_expression, - STATE(1054), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(211), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9442] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(59), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9538] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(292), 1, - anon_sym_EQ_GT, - ACTIONS(314), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(214), 1, - sym__built_in_function_name, - STATE(454), 1, - sym_expression, - STATE(1234), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9634] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(483), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9730] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(104), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9826] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(471), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9922] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(83), 1, - anon_sym_EQ_GT, - ACTIONS(107), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(168), 1, - sym__built_in_function_name, - STATE(346), 1, - sym_expression, - STATE(1201), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(109), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10018] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(62), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10114] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2283), 1, - anon_sym_EQ_GT, - ACTIONS(2285), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(604), 1, - sym_expression, - STATE(1056), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10210] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(83), 1, - anon_sym_EQ_GT, - ACTIONS(107), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(2), 1, - sym_expression, - STATE(168), 1, - sym__built_in_function_name, - STATE(1201), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(109), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10306] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2287), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(941), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10402] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(96), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10498] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(108), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10594] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(109), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10690] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(110), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10786] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(112), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10882] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(115), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10978] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(101), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11074] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2289), 1, - sym_identifier, - ACTIONS(2291), 1, - anon_sym_EQ_GT, - ACTIONS(2293), 1, - anon_sym_table, - STATE(352), 1, - sym__built_in_function_name, - STATE(895), 1, - sym_expression, - STATE(1059), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1907), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11170] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2295), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(939), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11266] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(509), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11362] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2297), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(940), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11458] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2299), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(965), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11554] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(116), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11650] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2034), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2036), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2027), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2029), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11782] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(92), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11878] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2023), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2025), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11944] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(119), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12040] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(144), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12136] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2016), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2018), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12202] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2289), 1, - sym_identifier, - ACTIONS(2291), 1, - anon_sym_EQ_GT, - ACTIONS(2293), 1, - anon_sym_table, - STATE(352), 1, - sym__built_in_function_name, - STATE(898), 1, - sym_expression, - STATE(1059), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1907), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12298] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2012), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2014), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2008), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2010), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12430] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2004), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2006), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2000), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2002), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2108), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2110), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12628] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(142), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12724] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1790), 1, - anon_sym_EQ_GT, - ACTIONS(1812), 1, - anon_sym_table, - ACTIONS(2263), 1, - sym_identifier, - STATE(364), 1, - sym__built_in_function_name, - STATE(915), 1, - sym_expression, - STATE(1052), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12820] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(221), 1, - sym__built_in_function_name, - STATE(514), 1, - sym_expression, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12916] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1790), 1, - anon_sym_EQ_GT, - ACTIONS(1812), 1, - anon_sym_table, - ACTIONS(2263), 1, - sym_identifier, - STATE(364), 1, - sym__built_in_function_name, - STATE(918), 1, - sym_expression, - STATE(1052), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13012] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1790), 1, - anon_sym_EQ_GT, - ACTIONS(1812), 1, - anon_sym_table, - ACTIONS(2263), 1, - sym_identifier, - STATE(364), 1, - sym__built_in_function_name, - STATE(916), 1, - sym_expression, - STATE(1052), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13108] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(137), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13204] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(35), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13300] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(106), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13396] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1790), 1, - anon_sym_EQ_GT, - ACTIONS(1812), 1, - anon_sym_table, - ACTIONS(2263), 1, - sym_identifier, - STATE(364), 1, - sym__built_in_function_name, - STATE(913), 1, - sym_expression, - STATE(1052), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13492] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2257), 1, - sym_identifier, - ACTIONS(2259), 1, - anon_sym_EQ_GT, - ACTIONS(2261), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(975), 1, - sym_expression, - STATE(1119), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(976), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13588] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(119), 1, - anon_sym_EQ_GT, - ACTIONS(141), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(182), 1, - sym__built_in_function_name, - STATE(365), 1, - sym_expression, - STATE(1040), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(143), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13684] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(84), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13780] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(464), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13876] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2048), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2050), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13942] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(82), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14038] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(107), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14134] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2267), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(947), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14230] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(187), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(5), 1, - sym_expression, - STATE(195), 1, - sym__built_in_function_name, - STATE(1054), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(211), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14326] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(134), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14422] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2040), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2042), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14488] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(146), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14584] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(152), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14680] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(151), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14776] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(76), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14872] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(149), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14968] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(47), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15064] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1903), 1, - anon_sym_EQ_GT, - ACTIONS(1905), 1, - anon_sym_table, - STATE(352), 1, - sym__built_in_function_name, - STATE(551), 1, - sym_expression, - STATE(1055), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1907), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15160] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1903), 1, - anon_sym_EQ_GT, - ACTIONS(1905), 1, - anon_sym_table, - STATE(352), 1, - sym__built_in_function_name, - STATE(552), 1, - sym_expression, - STATE(1055), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1907), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15256] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(457), 1, - anon_sym_EQ_GT, - ACTIONS(479), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(216), 1, - sym__built_in_function_name, - STATE(504), 1, - sym_expression, - STATE(1033), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(481), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15352] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1903), 1, - anon_sym_EQ_GT, - ACTIONS(1905), 1, - anon_sym_table, - STATE(352), 1, - sym__built_in_function_name, - STATE(548), 1, - sym_expression, - STATE(1055), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1907), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15448] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(48), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15544] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(119), 1, - anon_sym_EQ_GT, - ACTIONS(141), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(3), 1, - sym_expression, - STATE(182), 1, - sym__built_in_function_name, - STATE(1040), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(143), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15640] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(49), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15736] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(457), 1, - anon_sym_EQ_GT, - ACTIONS(479), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(216), 1, - sym__built_in_function_name, - STATE(507), 1, - sym_expression, - STATE(1033), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(481), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15832] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(457), 1, - anon_sym_EQ_GT, - ACTIONS(479), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(216), 1, - sym__built_in_function_name, - STATE(510), 1, - sym_expression, - STATE(1033), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(481), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15928] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(457), 1, - anon_sym_EQ_GT, - ACTIONS(479), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(216), 1, - sym__built_in_function_name, - STATE(505), 1, - sym_expression, - STATE(1033), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(481), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16024] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(90), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16120] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(119), 1, - anon_sym_EQ_GT, - ACTIONS(141), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(182), 1, - sym__built_in_function_name, - STATE(370), 1, - sym_expression, - STATE(1040), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(143), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16216] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(136), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16312] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(119), 1, - anon_sym_EQ_GT, - ACTIONS(141), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(182), 1, - sym__built_in_function_name, - STATE(367), 1, - sym_expression, - STATE(1040), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(143), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16408] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(497), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16504] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(50), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16600] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(132), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16696] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(141), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16792] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(150), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16888] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(221), 1, - sym__built_in_function_name, - STATE(535), 1, - sym_expression, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16984] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(103), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17080] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(98), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17176] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(19), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17272] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(457), 1, - anon_sym_EQ_GT, - ACTIONS(479), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(216), 1, - sym__built_in_function_name, - STATE(499), 1, - sym_expression, - STATE(1033), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(481), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17368] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(43), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17464] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(20), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17560] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_EQ_GT, - ACTIONS(421), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(201), 1, - sym__built_in_function_name, - STATE(436), 1, - sym_expression, - STATE(1071), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(423), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17656] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(51), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17752] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(36), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17848] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(126), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17944] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(128), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18040] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(53), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18136] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(125), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18232] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(119), 1, - anon_sym_EQ_GT, - ACTIONS(141), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(182), 1, - sym__built_in_function_name, - STATE(373), 1, - sym_expression, - STATE(1040), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(143), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18328] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(83), 1, - anon_sym_EQ_GT, - ACTIONS(107), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(168), 1, - sym__built_in_function_name, - STATE(358), 1, - sym_expression, - STATE(1201), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(109), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18424] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(123), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18520] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(122), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18616] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2277), 1, - sym_identifier, - ACTIONS(2279), 1, - anon_sym_EQ_GT, - ACTIONS(2281), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(919), 1, - sym_expression, - STATE(1053), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18712] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2277), 1, - sym_identifier, - ACTIONS(2279), 1, - anon_sym_EQ_GT, - ACTIONS(2281), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(933), 1, - sym_expression, - STATE(1053), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18808] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2277), 1, - sym_identifier, - ACTIONS(2279), 1, - anon_sym_EQ_GT, - ACTIONS(2281), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(929), 1, - sym_expression, - STATE(1053), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18904] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2277), 1, - sym_identifier, - ACTIONS(2279), 1, - anon_sym_EQ_GT, - ACTIONS(2281), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(923), 1, - sym_expression, - STATE(1053), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19000] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(34), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19096] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2052), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2054), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19162] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(45), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19258] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_EQ_GT, - ACTIONS(421), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(9), 1, - sym_expression, - STATE(201), 1, - sym__built_in_function_name, - STATE(1071), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(423), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19354] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(175), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(184), 1, - sym__built_in_function_name, - STATE(383), 1, - sym_expression, - STATE(1126), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(177), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19450] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2301), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(972), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19546] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(175), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(184), 1, - sym__built_in_function_name, - STATE(422), 1, - sym_expression, - STATE(1126), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(177), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19642] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_EQ_GT, - ACTIONS(421), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(201), 1, - sym__built_in_function_name, - STATE(439), 1, - sym_expression, - STATE(1071), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(423), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19738] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_EQ_GT, - ACTIONS(421), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(201), 1, - sym__built_in_function_name, - STATE(450), 1, - sym_expression, - STATE(1071), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(423), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19834] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2303), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(945), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19930] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(468), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2112), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2114), 47, + sym__comment, + ACTIONS(2483), 1, sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20092] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, + ACTIONS(2486), 1, anon_sym_LBRACE, - ACTIONS(1300), 1, + ACTIONS(2489), 1, anon_sym_LPAREN, - ACTIONS(1302), 1, + ACTIONS(2492), 1, sym_integer, - ACTIONS(1308), 1, + ACTIONS(2501), 1, anon_sym_LBRACK, - ACTIONS(2269), 1, - sym_identifier, - ACTIONS(2271), 1, + ACTIONS(2506), 1, anon_sym_EQ_GT, - ACTIONS(2273), 1, + ACTIONS(2512), 1, anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(930), 1, - sym_expression, - STATE(1057), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20188] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + ACTIONS(3616), 1, anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2269), 1, - sym_identifier, - ACTIONS(2271), 1, - anon_sym_EQ_GT, - ACTIONS(2273), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, STATE(928), 1, - sym_expression, - STATE(1057), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20284] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2269), 1, - sym_identifier, - ACTIONS(2271), 1, - anon_sym_EQ_GT, - ACTIONS(2273), 1, - anon_sym_table, - STATE(462), 1, sym__built_in_function_name, - STATE(931), 1, + STATE(1003), 1, + aux_sym_match_repeat1, + STATE(1605), 1, sym_expression, - STATE(1057), 1, + STATE(1837), 1, sym_identifier_list, - ACTIONS(1304), 2, + ACTIONS(2495), 2, sym_float, sym_string, - ACTIONS(1306), 2, + ACTIONS(2498), 2, anon_sym_true, anon_sym_false, - STATE(899), 2, + STATE(1533), 2, sym__context_defined_function, sym_built_in_function, - STATE(906), 5, + ACTIONS(2481), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(1550), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(907), 6, + STATE(1539), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(2275), 30, + ACTIONS(2515), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -72234,785 +98084,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [20380] = 18, + [2634] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(60), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20476] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2257), 1, - sym_identifier, - ACTIONS(2259), 1, - anon_sym_EQ_GT, - ACTIONS(2261), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(975), 1, - sym_expression, - STATE(1119), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(978), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20572] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(72), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20668] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(68), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20764] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(87), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20860] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_EQ_GT, - ACTIONS(421), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(201), 1, - sym__built_in_function_name, - STATE(435), 1, - sym_expression, - STATE(1071), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(423), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20956] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2084), 11, - ts_builtin_sym_end, + sym__comment, + ACTIONS(3371), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2086), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21022] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(175), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(184), 1, - sym__built_in_function_name, - STATE(432), 1, - sym_expression, - STATE(1126), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(177), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21118] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(175), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(184), 1, - sym__built_in_function_name, - STATE(398), 1, - sym_expression, - STATE(1126), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(177), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21214] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(175), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(184), 1, - sym__built_in_function_name, - STATE(431), 1, - sym_expression, - STATE(1126), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(177), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21310] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(829), 1, - sym_logic_operator, - STATE(830), 1, - sym_math_operator, - ACTIONS(1930), 17, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -73024,7 +98111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - ACTIONS(1932), 39, + ACTIONS(3373), 39, sym_identifier, sym_integer, anon_sym_true, @@ -73064,54 +98151,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [21380] = 18, + [2704] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, + sym__comment, ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, + anon_sym_PIPE, + ACTIONS(2451), 1, sym_identifier, - STATE(91), 1, - sym_expression, - STATE(221), 1, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + anon_sym_EQ_GT, + ACTIONS(2469), 1, + anon_sym_table, + STATE(928), 1, sym__built_in_function_name, - STATE(1172), 1, + STATE(1003), 1, + aux_sym_match_repeat1, + STATE(1605), 1, + sym_expression, + STATE(1837), 1, sym_identifier_list, - ACTIONS(13), 2, + ACTIONS(2459), 2, sym_float, sym_string, - ACTIONS(15), 2, + ACTIONS(2461), 2, anon_sym_true, anon_sym_false, - STATE(473), 2, + STATE(1533), 2, sym__context_defined_function, sym_built_in_function, - STATE(481), 5, + ACTIONS(2449), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(1550), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(466), 6, + STATE(1539), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(49), 30, + ACTIONS(2471), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -73142,1243 +98235,1635 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [21476] = 3, + [2808] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(1885), 11, - ts_builtin_sym_end, + sym__comment, + ACTIONS(3432), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1887), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21542] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(113), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21638] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(791), 1, - sym_expression, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21734] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2305), 1, - sym_identifier, - ACTIONS(2307), 1, - anon_sym_EQ_GT, - ACTIONS(2309), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(924), 1, - sym_expression, - STATE(1058), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21830] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2305), 1, - sym_identifier, - ACTIONS(2307), 1, - anon_sym_EQ_GT, - ACTIONS(2309), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(932), 1, - sym_expression, - STATE(1058), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21926] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2305), 1, - sym_identifier, - ACTIONS(2307), 1, - anon_sym_EQ_GT, - ACTIONS(2309), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(926), 1, - sym_expression, - STATE(1058), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22022] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(221), 1, - sym__built_in_function_name, - STATE(539), 1, - sym_expression, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22118] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(221), 1, - sym__built_in_function_name, - STATE(533), 1, - sym_expression, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22214] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(89), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22310] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(457), 1, - anon_sym_EQ_GT, - ACTIONS(479), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(216), 1, - sym__built_in_function_name, - STATE(456), 1, - sym_expression, - STATE(1033), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(481), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22406] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2120), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2122), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22472] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(221), 1, - sym__built_in_function_name, - STATE(528), 1, - sym_expression, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22568] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(56), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22664] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(58), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22760] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(292), 1, - anon_sym_EQ_GT, - ACTIONS(314), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(7), 1, - sym_expression, - STATE(214), 1, - sym__built_in_function_name, - STATE(1234), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22856] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2116), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2118), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22922] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DASH, - ACTIONS(2134), 1, + anon_sym_RBRACK, anon_sym_COLON, - STATE(829), 1, - sym_logic_operator, - STATE(830), 1, - sym_math_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 4, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(73), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1947), 6, + anon_sym_EQ_GT, + ACTIONS(3434), 39, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [2878] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3375), 23, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_EQ_GT, - ACTIONS(1949), 36, + ACTIONS(3377), 39, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [2948] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3383), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + ACTIONS(3385), 39, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3018] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3389), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + ACTIONS(3391), 39, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3088] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3405), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + ACTIONS(3407), 39, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3158] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3333), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + ACTIONS(3335), 39, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3228] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3367), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3369), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3297] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3229), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3231), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3366] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3296), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3298), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3435] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3341), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3343), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3504] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3337), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3339), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3573] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3329), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3331), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3642] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3423), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3425), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3711] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3379), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3381), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3780] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3325), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3327), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3849] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3317), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3319), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3918] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3393), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3395), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3987] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3626), 1, + anon_sym_SEMI, + ACTIONS(3275), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3277), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4058] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3415), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3417), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4127] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3321), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3323), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4196] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3419), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3421), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4265] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3303), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3305), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4334] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3432), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3434), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4403] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3307), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3309), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4472] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(73), 1, + anon_sym_DASH, + ACTIONS(3681), 1, + anon_sym_COLON, + ACTIONS(3710), 1, + anon_sym_COMMA, + STATE(1198), 1, + sym_math_operator, + STATE(1199), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3233), 8, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(3235), 36, sym_identifier, sym_integer, anon_sym_true, @@ -74415,9 +99900,3319 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [23002] = 18, + [4557] = 3, ACTIONS(3), 1, - sym_comment, + sym__comment, + ACTIONS(3397), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3399), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4626] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3363), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3365), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4695] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, + anon_sym_table, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3712), 1, + anon_sym_RBRACK, + STATE(780), 1, + sym__built_in_function_name, + STATE(1039), 1, + sym_expression, + STATE(1048), 1, + aux_sym_list_repeat1, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4797] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, + anon_sym_table, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3714), 1, + anon_sym_RBRACK, + STATE(780), 1, + sym__built_in_function_name, + STATE(1039), 1, + sym_expression, + STATE(1047), 1, + aux_sym_list_repeat1, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4899] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, + anon_sym_table, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3716), 1, + anon_sym_RBRACK, + STATE(780), 1, + sym__built_in_function_name, + STATE(1036), 1, + aux_sym_list_repeat1, + STATE(1039), 1, + sym_expression, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5001] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, + anon_sym_table, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3718), 1, + anon_sym_RBRACK, + STATE(780), 1, + sym__built_in_function_name, + STATE(1039), 1, + sym_expression, + STATE(1047), 1, + aux_sym_list_repeat1, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5103] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, + anon_sym_table, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3720), 1, + anon_sym_RBRACK, + STATE(780), 1, + sym__built_in_function_name, + STATE(1039), 1, + sym_expression, + STATE(1044), 1, + aux_sym_list_repeat1, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5205] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, + anon_sym_table, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3722), 1, + anon_sym_RBRACK, + STATE(780), 1, + sym__built_in_function_name, + STATE(1039), 1, + sym_expression, + STATE(1043), 1, + aux_sym_list_repeat1, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5307] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(73), 1, + anon_sym_DASH, + ACTIONS(3694), 1, + anon_sym_COLON, + ACTIONS(3728), 1, + anon_sym_COMMA, + STATE(1399), 1, + sym_math_operator, + STATE(1400), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3726), 7, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + ACTIONS(3724), 36, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5391] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, + anon_sym_table, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3730), 1, + anon_sym_RBRACK, + STATE(780), 1, + sym__built_in_function_name, + STATE(1039), 1, + sym_expression, + STATE(1047), 1, + aux_sym_list_repeat1, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5493] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, + anon_sym_table, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3732), 1, + anon_sym_RBRACK, + STATE(780), 1, + sym__built_in_function_name, + STATE(1034), 1, + aux_sym_list_repeat1, + STATE(1039), 1, + sym_expression, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5595] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(73), 1, + anon_sym_DASH, + ACTIONS(3694), 1, + anon_sym_COLON, + ACTIONS(3710), 1, + anon_sym_COMMA, + STATE(1399), 1, + sym_math_operator, + STATE(1400), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3233), 7, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + ACTIONS(3235), 36, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5679] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, + anon_sym_table, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3734), 1, + anon_sym_RBRACK, + STATE(780), 1, + sym__built_in_function_name, + STATE(1039), 1, + sym_expression, + STATE(1047), 1, + aux_sym_list_repeat1, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5781] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, + anon_sym_table, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3736), 1, + anon_sym_RBRACK, + STATE(780), 1, + sym__built_in_function_name, + STATE(1039), 1, + sym_expression, + STATE(1047), 1, + aux_sym_list_repeat1, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5883] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, + anon_sym_table, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3738), 1, + anon_sym_RBRACK, + STATE(780), 1, + sym__built_in_function_name, + STATE(1039), 1, + sym_expression, + STATE(1051), 1, + aux_sym_list_repeat1, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5985] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, + anon_sym_table, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3740), 1, + anon_sym_RBRACK, + STATE(780), 1, + sym__built_in_function_name, + STATE(1039), 1, + sym_expression, + STATE(1047), 1, + aux_sym_list_repeat1, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6087] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3742), 1, + sym_identifier, + ACTIONS(3745), 1, + anon_sym_LBRACE, + ACTIONS(3748), 1, + anon_sym_LPAREN, + ACTIONS(3751), 1, + sym_integer, + ACTIONS(3760), 1, + anon_sym_LBRACK, + ACTIONS(3763), 1, + anon_sym_RBRACK, + ACTIONS(3765), 1, + anon_sym_EQ_GT, + ACTIONS(3768), 1, + anon_sym_PIPE, + ACTIONS(3771), 1, + anon_sym_table, + STATE(780), 1, + sym__built_in_function_name, + STATE(1039), 1, + sym_expression, + STATE(1047), 1, + aux_sym_list_repeat1, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3754), 2, + sym_float, + sym_string, + ACTIONS(3757), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3774), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6189] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, + anon_sym_table, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3777), 1, + anon_sym_RBRACK, + STATE(780), 1, + sym__built_in_function_name, + STATE(1039), 1, + sym_expression, + STATE(1047), 1, + aux_sym_list_repeat1, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6291] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, + anon_sym_table, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3779), 1, + anon_sym_RBRACK, + STATE(780), 1, + sym__built_in_function_name, + STATE(1039), 1, + sym_expression, + STATE(1046), 1, + aux_sym_list_repeat1, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6393] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, + anon_sym_table, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3781), 1, + anon_sym_RBRACK, + STATE(780), 1, + sym__built_in_function_name, + STATE(1039), 1, + sym_expression, + STATE(1040), 1, + aux_sym_list_repeat1, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6495] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, + anon_sym_table, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3783), 1, + anon_sym_RBRACK, + STATE(780), 1, + sym__built_in_function_name, + STATE(1039), 1, + sym_expression, + STATE(1047), 1, + aux_sym_list_repeat1, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6597] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(73), 1, + anon_sym_DASH, + ACTIONS(3785), 1, + anon_sym_COLON, + STATE(1333), 1, + sym_math_operator, + STATE(1334), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3244), 7, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(3246), 36, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6678] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3367), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3369), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6745] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3296), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3298), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6812] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3329), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3331), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6879] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3341), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3343), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6946] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1333), 1, + sym_math_operator, + STATE(1334), 1, + sym_logic_operator, + ACTIONS(3248), 18, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + ACTIONS(3250), 39, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7017] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3325), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3327), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7084] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3317), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3319), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7151] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3337), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3339), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7218] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3307), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3309), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7285] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3379), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3381), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7352] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3787), 1, + anon_sym_DOT_DOT, + STATE(1333), 1, + sym_math_operator, + STATE(1334), 1, + sym_logic_operator, + ACTIONS(3248), 17, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + ACTIONS(3250), 39, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7425] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3303), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3305), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7492] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3432), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3434), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7559] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3393), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3395), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7626] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3229), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3231), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7693] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3363), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3365), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7760] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3321), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3323), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7827] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3415), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3417), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7894] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3419), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3421), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7961] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1333), 1, + sym_math_operator, + STATE(1334), 1, + sym_logic_operator, + ACTIONS(3252), 18, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + ACTIONS(3254), 39, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8032] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(73), 1, + anon_sym_DASH, + ACTIONS(3785), 1, + anon_sym_COLON, + STATE(1333), 1, + sym_math_operator, + STATE(1334), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3240), 7, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(3242), 36, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8113] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1333), 1, + sym_math_operator, + STATE(1334), 1, + sym_logic_operator, + ACTIONS(3262), 18, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + ACTIONS(3264), 39, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8184] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3642), 1, + anon_sym_SEMI, + ACTIONS(3275), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3277), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8253] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3789), 1, + sym_identifier, + ACTIONS(3791), 1, + anon_sym_EQ_GT, + ACTIONS(3793), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1629), 1, + sym_expression, + STATE(1917), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1637), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8349] = 18, + ACTIONS(3), 1, + sym__comment, ACTIONS(9), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -74426,19 +103221,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(23), 1, anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, anon_sym_table, - ACTIONS(1145), 1, + ACTIONS(2383), 1, anon_sym_LBRACE, - ACTIONS(1398), 1, + ACTIONS(2676), 1, + sym_identifier, + STATE(380), 1, + sym__built_in_function_name, + STATE(882), 1, + sym_expression, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8445] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, sym_identifier, STATE(78), 1, sym_expression, - STATE(221), 1, + STATE(380), 1, sym__built_in_function_name, - STATE(1172), 1, + STATE(1890), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -74446,23 +103319,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(473), 2, + STATE(874), 2, sym__context_defined_function, sym_built_in_function, - STATE(481), 5, + STATE(844), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(466), 6, + STATE(866), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(49), 30, + ACTIONS(51), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -74493,9 +103366,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [23098] = 18, + [8541] = 18, ACTIONS(3), 1, - sym_comment, + sym__comment, ACTIONS(9), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -74504,19 +103377,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(23), 1, anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, anon_sym_table, - ACTIONS(1145), 1, + ACTIONS(2383), 1, anon_sym_LBRACE, - ACTIONS(1398), 1, + ACTIONS(2676), 1, sym_identifier, - STATE(81), 1, + STATE(77), 1, sym_expression, - STATE(221), 1, + STATE(380), 1, sym__built_in_function_name, - STATE(1172), 1, + STATE(1890), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -74524,23 +103397,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(473), 2, + STATE(874), 2, sym__context_defined_function, sym_built_in_function, - STATE(481), 5, + STATE(844), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(466), 6, + STATE(866), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(49), 30, + ACTIONS(51), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -74571,690 +103444,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [23194] = 18, + [8637] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_EQ_GT, - ACTIONS(1895), 1, - anon_sym_table, - STATE(364), 1, - sym__built_in_function_name, - STATE(558), 1, - sym_expression, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23290] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1903), 1, - anon_sym_EQ_GT, - ACTIONS(1905), 1, - anon_sym_table, - STATE(352), 1, - sym__built_in_function_name, - STATE(549), 1, - sym_expression, - STATE(1055), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1907), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23386] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_EQ_GT, - ACTIONS(1895), 1, - anon_sym_table, - STATE(364), 1, - sym__built_in_function_name, - STATE(557), 1, - sym_expression, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23482] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_EQ_GT, - ACTIONS(1895), 1, - anon_sym_table, - STATE(364), 1, - sym__built_in_function_name, - STATE(556), 1, - sym_expression, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23578] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(829), 1, - sym_logic_operator, - STATE(830), 1, - sym_math_operator, - ACTIONS(1934), 17, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - ACTIONS(1936), 39, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23648] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(496), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23744] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DASH, - ACTIONS(2134), 1, - anon_sym_COLON, - STATE(829), 1, - sym_logic_operator, - STATE(830), 1, - sym_math_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1951), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - ACTIONS(1953), 36, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23824] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(292), 1, - anon_sym_EQ_GT, - ACTIONS(314), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(22), 1, - sym_expression, - STATE(214), 1, - sym__built_in_function_name, - STATE(1234), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23920] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(187), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(195), 1, - sym__built_in_function_name, - STATE(425), 1, - sym_expression, - STATE(1054), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(211), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24016] = 18, - ACTIONS(3), 1, - sym_comment, + sym__comment, ACTIONS(9), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -75263,19 +103455,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(23), 1, anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, anon_sym_table, - ACTIONS(1145), 1, + ACTIONS(2383), 1, anon_sym_LBRACE, - ACTIONS(1398), 1, + ACTIONS(2676), 1, sym_identifier, - STATE(83), 1, + STATE(76), 1, sym_expression, - STATE(221), 1, + STATE(380), 1, sym__built_in_function_name, - STATE(1172), 1, + STATE(1890), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -75283,23 +103475,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(473), 2, + STATE(874), 2, sym__context_defined_function, sym_built_in_function, - STATE(481), 5, + STATE(844), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(466), 6, + STATE(866), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(49), 30, + ACTIONS(51), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -75330,9 +103522,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [24112] = 18, + [8733] = 18, ACTIONS(3), 1, - sym_comment, + sym__comment, ACTIONS(9), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -75341,19 +103533,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(23), 1, anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, anon_sym_table, - ACTIONS(1145), 1, + ACTIONS(2383), 1, anon_sym_LBRACE, - ACTIONS(1398), 1, + ACTIONS(2676), 1, sym_identifier, STATE(75), 1, sym_expression, - STATE(221), 1, + STATE(380), 1, sym__built_in_function_name, - STATE(1172), 1, + STATE(1890), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -75361,23 +103553,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(473), 2, + STATE(874), 2, sym__context_defined_function, sym_built_in_function, - STATE(481), 5, + STATE(844), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(466), 6, + STATE(866), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(49), 30, + ACTIONS(51), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -75408,9 +103600,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [24208] = 18, + [8829] = 18, ACTIONS(3), 1, - sym_comment, + sym__comment, ACTIONS(9), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -75419,19 +103611,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(23), 1, anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, anon_sym_table, - ACTIONS(1145), 1, + ACTIONS(2383), 1, anon_sym_LBRACE, - ACTIONS(1398), 1, + ACTIONS(2676), 1, + sym_identifier, + STATE(74), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8925] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, sym_identifier, STATE(73), 1, sym_expression, - STATE(221), 1, + STATE(380), 1, sym__built_in_function_name, - STATE(1172), 1, + STATE(1890), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -75439,23 +103709,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(473), 2, + STATE(874), 2, sym__context_defined_function, sym_built_in_function, - STATE(481), 5, + STATE(844), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(466), 6, + STATE(866), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(49), 30, + ACTIONS(51), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -75486,9 +103756,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [24304] = 18, + [9021] = 18, ACTIONS(3), 1, - sym_comment, + sym__comment, ACTIONS(9), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -75497,97 +103767,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(23), 1, anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(140), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24400] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_EQ_GT, - ACTIONS(1895), 1, + ACTIONS(49), 1, anon_sym_table, - STATE(364), 1, - sym__built_in_function_name, - STATE(555), 1, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(72), 1, sym_expression, - STATE(1192), 1, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -75595,23 +103787,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(473), 2, + STATE(874), 2, sym__context_defined_function, sym_built_in_function, - STATE(481), 5, + STATE(844), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(466), 6, + STATE(866), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(1814), 30, + ACTIONS(51), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -75642,9 +103834,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [24496] = 18, + [9117] = 18, ACTIONS(3), 1, - sym_comment, + sym__comment, ACTIONS(9), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -75653,19 +103845,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(23), 1, anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, anon_sym_table, - ACTIONS(1145), 1, + ACTIONS(2383), 1, anon_sym_LBRACE, - ACTIONS(1398), 1, + ACTIONS(2676), 1, sym_identifier, - STATE(71), 1, + STATE(102), 1, sym_expression, - STATE(221), 1, + STATE(380), 1, sym__built_in_function_name, - STATE(1172), 1, + STATE(1890), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -75673,23 +103865,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(473), 2, + STATE(874), 2, sym__context_defined_function, sym_built_in_function, - STATE(481), 5, + STATE(844), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(466), 6, + STATE(866), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(49), 30, + ACTIONS(51), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -75720,9 +103912,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [24592] = 18, + [9213] = 18, ACTIONS(3), 1, - sym_comment, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3795), 1, + sym_identifier, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1616), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9309] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3801), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1580), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9405] = 18, + ACTIONS(3), 1, + sym__comment, ACTIONS(9), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -75731,19 +104079,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(23), 1, anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, anon_sym_table, - ACTIONS(1145), 1, + ACTIONS(2383), 1, anon_sym_LBRACE, - ACTIONS(1398), 1, + ACTIONS(2676), 1, sym_identifier, - STATE(70), 1, + STATE(103), 1, sym_expression, - STATE(221), 1, + STATE(380), 1, sym__built_in_function_name, - STATE(1172), 1, + STATE(1890), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -75751,23 +104099,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(473), 2, + STATE(874), 2, sym__context_defined_function, sym_built_in_function, - STATE(481), 5, + STATE(844), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(466), 6, + STATE(866), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(49), 30, + ACTIONS(51), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -75798,399 +104146,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [24688] = 18, + [9501] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1296), 1, - sym_identifier, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1312), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(943), 1, - sym_expression, - STATE(1044), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24784] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(809), 1, - sym_expression, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24880] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(816), 1, - sym_expression, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24976] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2283), 1, - anon_sym_EQ_GT, - ACTIONS(2285), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(602), 1, - sym_expression, - STATE(1056), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25072] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(818), 1, - sym_expression, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25168] = 18, - ACTIONS(3), 1, - sym_comment, + sym__comment, ACTIONS(9), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -76199,19 +104157,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(23), 1, anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, anon_sym_table, - ACTIONS(1145), 1, + ACTIONS(2383), 1, anon_sym_LBRACE, - ACTIONS(1398), 1, + ACTIONS(2676), 1, sym_identifier, - STATE(44), 1, + STATE(105), 1, sym_expression, - STATE(221), 1, + STATE(380), 1, sym__built_in_function_name, - STATE(1172), 1, + STATE(1890), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -76219,23 +104177,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(473), 2, + STATE(874), 2, sym__context_defined_function, sym_built_in_function, - STATE(481), 5, + STATE(844), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(466), 6, + STATE(866), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(49), 30, + ACTIONS(51), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -76266,9 +104224,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [25264] = 18, + [9597] = 18, ACTIONS(3), 1, - sym_comment, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3803), 1, + sym_identifier, + ACTIONS(3805), 1, + anon_sym_LBRACE, + ACTIONS(3807), 1, + anon_sym_LPAREN, + ACTIONS(3809), 1, + sym_integer, + ACTIONS(3815), 1, + anon_sym_LBRACK, + ACTIONS(3817), 1, + anon_sym_EQ_GT, + ACTIONS(3819), 1, + anon_sym_table, + STATE(673), 1, + sym__built_in_function_name, + STATE(1511), 1, + sym_expression, + STATE(1770), 1, + sym_identifier_list, + ACTIONS(3811), 2, + sym_float, + sym_string, + ACTIONS(3813), 2, + anon_sym_true, + anon_sym_false, + STATE(1525), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1526), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1527), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3454), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9693] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3436), 1, + sym_identifier, + ACTIONS(3438), 1, + anon_sym_LBRACE, + ACTIONS(3440), 1, + anon_sym_LPAREN, + ACTIONS(3442), 1, + sym_integer, + ACTIONS(3448), 1, + anon_sym_LBRACK, + ACTIONS(3523), 1, + anon_sym_EQ_GT, + ACTIONS(3525), 1, + anon_sym_table, + STATE(692), 1, + sym__built_in_function_name, + STATE(961), 1, + sym_expression, + STATE(2055), 1, + sym_identifier_list, + ACTIONS(3444), 2, + sym_float, + sym_string, + ACTIONS(3446), 2, + anon_sym_true, + anon_sym_false, + STATE(990), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(981), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(986), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3527), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9789] = 18, + ACTIONS(3), 1, + sym__comment, ACTIONS(9), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -76277,19 +104391,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(23), 1, anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, anon_sym_table, - ACTIONS(1145), 1, + ACTIONS(2383), 1, anon_sym_LBRACE, - ACTIONS(1398), 1, + ACTIONS(2676), 1, sym_identifier, - STATE(93), 1, + STATE(109), 1, sym_expression, - STATE(221), 1, + STATE(380), 1, sym__built_in_function_name, - STATE(1172), 1, + STATE(1890), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -76297,23 +104411,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(473), 2, + STATE(874), 2, sym__context_defined_function, sym_built_in_function, - STATE(481), 5, + STATE(844), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(466), 6, + STATE(866), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(49), 30, + ACTIONS(51), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -76344,54 +104458,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [25360] = 18, + [9885] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + sym__comment, + ACTIONS(47), 1, anon_sym_PIPE, - ACTIONS(1298), 1, + ACTIONS(2453), 1, anon_sym_LBRACE, - ACTIONS(1300), 1, + ACTIONS(2455), 1, anon_sym_LPAREN, - ACTIONS(1302), 1, + ACTIONS(2457), 1, sym_integer, - ACTIONS(1308), 1, + ACTIONS(2463), 1, anon_sym_LBRACK, - ACTIONS(2249), 1, + ACTIONS(3797), 1, anon_sym_EQ_GT, - ACTIONS(2251), 1, + ACTIONS(3799), 1, anon_sym_table, - ACTIONS(2311), 1, + ACTIONS(3821), 1, sym_identifier, - STATE(538), 1, + STATE(928), 1, sym__built_in_function_name, - STATE(946), 1, + STATE(1582), 1, sym_expression, - STATE(1072), 1, + STATE(1851), 1, sym_identifier_list, - ACTIONS(1304), 2, + ACTIONS(2459), 2, sym_float, sym_string, - ACTIONS(1306), 2, + ACTIONS(2461), 2, anon_sym_true, anon_sym_false, - STATE(899), 2, + STATE(1533), 2, sym__context_defined_function, sym_built_in_function, - STATE(906), 5, + STATE(1550), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(907), 6, + STATE(1539), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(1316), 30, + ACTIONS(2471), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -76422,54 +104536,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [25456] = 18, + [9981] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, + sym__comment, + ACTIONS(47), 1, anon_sym_PIPE, - ACTIONS(1145), 1, + ACTIONS(2453), 1, anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, anon_sym_EQ_GT, - ACTIONS(2255), 1, + ACTIONS(3799), 1, anon_sym_table, - STATE(485), 1, - sym_expression, - STATE(538), 1, + ACTIONS(3823), 1, + sym_identifier, + STATE(928), 1, sym__built_in_function_name, - STATE(1090), 1, + STATE(1584), 1, + sym_expression, + STATE(1851), 1, sym_identifier_list, - ACTIONS(13), 2, + ACTIONS(2459), 2, sym_float, sym_string, - ACTIONS(15), 2, + ACTIONS(2461), 2, anon_sym_true, anon_sym_false, - STATE(473), 2, + STATE(1533), 2, sym__context_defined_function, sym_built_in_function, - STATE(481), 5, + STATE(1550), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(466), 6, + STATE(1539), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(1316), 30, + ACTIONS(2471), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -76500,165 +104614,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [25552] = 18, + [10077] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(119), 1, - anon_sym_EQ_GT, - ACTIONS(141), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(10), 1, - sym_expression, - STATE(182), 1, - sym__built_in_function_name, - STATE(1040), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(143), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25648] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(83), 1, - anon_sym_EQ_GT, - ACTIONS(107), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(168), 1, - sym__built_in_function_name, - STATE(349), 1, - sym_expression, - STATE(1201), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(109), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25744] = 18, - ACTIONS(3), 1, - sym_comment, + sym__comment, ACTIONS(9), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -76667,19 +104625,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(23), 1, anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, anon_sym_table, - ACTIONS(1145), 1, + ACTIONS(2383), 1, anon_sym_LBRACE, - ACTIONS(1398), 1, + ACTIONS(2676), 1, sym_identifier, - STATE(85), 1, + STATE(79), 1, sym_expression, - STATE(221), 1, + STATE(380), 1, sym__built_in_function_name, - STATE(1172), 1, + STATE(1890), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -76687,23 +104645,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(473), 2, + STATE(874), 2, sym__context_defined_function, sym_built_in_function, - STATE(481), 5, + STATE(844), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(466), 6, + STATE(866), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(49), 30, + ACTIONS(51), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -76734,9 +104692,321 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [25840] = 18, + [10173] = 18, ACTIONS(3), 1, - sym_comment, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(249), 1, + anon_sym_EQ_GT, + ACTIONS(273), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(302), 1, + sym__built_in_function_name, + STATE(670), 1, + sym_expression, + STATE(1984), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(275), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10269] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3825), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1589), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10365] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3827), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1628), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10461] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(906), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10557] = 18, + ACTIONS(3), 1, + sym__comment, ACTIONS(9), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -76745,1501 +105015,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(23), 1, anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(86), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25936] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2289), 1, - sym_identifier, - ACTIONS(2291), 1, - anon_sym_EQ_GT, - ACTIONS(2293), 1, + ACTIONS(49), 1, anon_sym_table, - STATE(352), 1, - sym__built_in_function_name, - STATE(912), 1, - sym_expression, - STATE(1059), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1907), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26032] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, + ACTIONS(2383), 1, anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2289), 1, - sym_identifier, - ACTIONS(2291), 1, - anon_sym_EQ_GT, - ACTIONS(2293), 1, - anon_sym_table, - STATE(352), 1, - sym__built_in_function_name, - STATE(910), 1, - sym_expression, - STATE(1059), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1907), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26128] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2289), 1, - sym_identifier, - ACTIONS(2291), 1, - anon_sym_EQ_GT, - ACTIONS(2293), 1, - anon_sym_table, - STATE(352), 1, - sym__built_in_function_name, - STATE(911), 1, - sym_expression, - STATE(1059), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1907), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26224] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(83), 1, - anon_sym_EQ_GT, - ACTIONS(107), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(168), 1, - sym__built_in_function_name, - STATE(356), 1, - sym_expression, - STATE(1201), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(109), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26320] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(83), 1, - anon_sym_EQ_GT, - ACTIONS(107), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(168), 1, - sym__built_in_function_name, - STATE(351), 1, - sym_expression, - STATE(1201), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(109), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26416] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(83), 1, - anon_sym_EQ_GT, - ACTIONS(107), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(168), 1, - sym__built_in_function_name, - STATE(355), 1, - sym_expression, - STATE(1201), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(109), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26512] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2313), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(959), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26608] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(292), 1, - anon_sym_EQ_GT, - ACTIONS(314), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(214), 1, - sym__built_in_function_name, - STATE(453), 1, - sym_expression, - STATE(1234), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26704] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2305), 1, - sym_identifier, - ACTIONS(2307), 1, - anon_sym_EQ_GT, - ACTIONS(2309), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(927), 1, - sym_expression, - STATE(1058), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26800] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1296), 1, - sym_identifier, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1312), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(953), 1, - sym_expression, - STATE(1044), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26896] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1296), 1, - sym_identifier, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1312), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(957), 1, - sym_expression, - STATE(1044), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26992] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2315), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(956), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27088] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(94), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27184] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2283), 1, - anon_sym_EQ_GT, - ACTIONS(2285), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(605), 1, - sym_expression, - STATE(1056), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27280] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2283), 1, - anon_sym_EQ_GT, - ACTIONS(2285), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(607), 1, - sym_expression, - STATE(1056), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27376] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2283), 1, - anon_sym_EQ_GT, - ACTIONS(2285), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(606), 1, - sym_expression, - STATE(1056), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27472] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(95), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27568] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(69), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27664] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, + ACTIONS(2676), 1, sym_identifier, STATE(97), 1, sym_expression, - STATE(221), 1, + STATE(380), 1, sym__built_in_function_name, - STATE(1172), 1, + STATE(1890), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -78247,23 +105035,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(473), 2, + STATE(874), 2, sym__context_defined_function, sym_built_in_function, - STATE(481), 5, + STATE(844), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(466), 6, + STATE(866), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(49), 30, + ACTIONS(51), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -78294,9 +105082,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [27760] = 18, + [10653] = 18, ACTIONS(3), 1, - sym_comment, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(111), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(265), 1, + sym__built_in_function_name, + STATE(564), 1, + sym_expression, + STATE(1817), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(113), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10749] = 18, + ACTIONS(3), 1, + sym__comment, ACTIONS(9), 1, anon_sym_LPAREN, ACTIONS(11), 1, @@ -78305,19 +105171,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(23), 1, anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, anon_sym_table, - ACTIONS(1145), 1, + ACTIONS(2383), 1, anon_sym_LBRACE, - ACTIONS(1398), 1, + ACTIONS(2676), 1, sym_identifier, - STATE(99), 1, + STATE(98), 1, sym_expression, - STATE(221), 1, + STATE(380), 1, sym__built_in_function_name, - STATE(1172), 1, + STATE(1890), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -78325,23 +105191,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(473), 2, + STATE(874), 2, sym__context_defined_function, sym_built_in_function, - STATE(481), 5, + STATE(844), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(466), 6, + STATE(866), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(49), 30, + ACTIONS(51), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -78372,15 +105238,31153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [27856] = 4, + [10845] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(2164), 1, - anon_sym_SEMI, - ACTIONS(1964), 10, - ts_builtin_sym_end, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3833), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1581), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10941] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3835), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1583), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11037] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3436), 1, + sym_identifier, + ACTIONS(3438), 1, + anon_sym_LBRACE, + ACTIONS(3440), 1, + anon_sym_LPAREN, + ACTIONS(3442), 1, + sym_integer, + ACTIONS(3448), 1, + anon_sym_LBRACK, + ACTIONS(3450), 1, + anon_sym_EQ_GT, + ACTIONS(3452), 1, + anon_sym_table, + STATE(673), 1, + sym__built_in_function_name, + STATE(956), 1, + sym_expression, + STATE(1920), 1, + sym_identifier_list, + ACTIONS(3444), 2, + sym_float, + sym_string, + ACTIONS(3446), 2, + anon_sym_true, + anon_sym_false, + STATE(990), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(981), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(986), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3454), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11133] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(201), 1, + anon_sym_EQ_GT, + ACTIONS(225), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(286), 1, + sym__built_in_function_name, + STATE(634), 1, + sym_expression, + STATE(1776), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(227), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11229] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3837), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1585), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11325] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(847), 1, + anon_sym_EQ_GT, + ACTIONS(871), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(341), 1, + sym__built_in_function_name, + STATE(752), 1, + sym_expression, + STATE(1860), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(873), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11421] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(99), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11517] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3839), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1588), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11613] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3436), 1, + sym_identifier, + ACTIONS(3438), 1, + anon_sym_LBRACE, + ACTIONS(3440), 1, + anon_sym_LPAREN, + ACTIONS(3442), 1, + sym_integer, + ACTIONS(3448), 1, + anon_sym_LBRACK, + ACTIONS(3450), 1, + anon_sym_EQ_GT, + ACTIONS(3452), 1, + anon_sym_table, + STATE(673), 1, + sym__built_in_function_name, + STATE(951), 1, + sym_expression, + STATE(1920), 1, + sym_identifier_list, + ACTIONS(3444), 2, + sym_float, + sym_string, + ACTIONS(3446), 2, + anon_sym_true, + anon_sym_false, + STATE(990), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(981), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(986), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3454), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11709] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(119), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11805] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3841), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1594), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11901] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3843), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1597), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11997] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(847), 1, + anon_sym_EQ_GT, + ACTIONS(871), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(341), 1, + sym__built_in_function_name, + STATE(785), 1, + sym_expression, + STATE(1860), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(873), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12093] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3789), 1, + sym_identifier, + ACTIONS(3791), 1, + anon_sym_EQ_GT, + ACTIONS(3793), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1629), 1, + sym_expression, + STATE(1917), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1634), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12189] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3845), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1599), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12285] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(167), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12381] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(898), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12477] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3847), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1600), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12573] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(165), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12669] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(69), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12765] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3849), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1603), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12861] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(896), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12957] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3851), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1606), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13053] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(70), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13149] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3853), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1626), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13245] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(902), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13341] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3855), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1610), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13437] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(144), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13533] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(112), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13629] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(113), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13725] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3857), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1625), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13821] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(912), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13917] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(115), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14013] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3859), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1613), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14109] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(915), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14205] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(315), 1, + anon_sym_EQ_GT, + ACTIONS(339), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(296), 1, + sym__built_in_function_name, + STATE(672), 1, + sym_expression, + STATE(1998), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(341), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14301] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(315), 1, + anon_sym_EQ_GT, + ACTIONS(339), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(296), 1, + sym__built_in_function_name, + STATE(661), 1, + sym_expression, + STATE(1998), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(341), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14397] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1442), 1, + anon_sym_EQ_GT, + ACTIONS(1466), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(366), 1, + sym__built_in_function_name, + STATE(843), 1, + sym_expression, + STATE(1823), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1468), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14493] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_EQ_GT, + ACTIONS(191), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(284), 1, + sym__built_in_function_name, + STATE(635), 1, + sym_expression, + STATE(1910), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(193), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14589] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1442), 1, + anon_sym_EQ_GT, + ACTIONS(1466), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(366), 1, + sym__built_in_function_name, + STATE(849), 1, + sym_expression, + STATE(1823), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1468), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14685] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1442), 1, + anon_sym_EQ_GT, + ACTIONS(1466), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(366), 1, + sym__built_in_function_name, + STATE(850), 1, + sym_expression, + STATE(1823), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1468), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14781] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(157), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14877] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(116), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14973] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(117), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15069] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(118), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15165] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(380), 1, + sym__built_in_function_name, + STATE(890), 1, + sym_expression, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15261] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_EQ_GT, + ACTIONS(523), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(320), 1, + sym__built_in_function_name, + STATE(693), 1, + sym_expression, + STATE(1866), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(525), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15357] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(156), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15453] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(155), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15549] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(154), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15645] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(380), 1, + sym__built_in_function_name, + STATE(911), 1, + sym_expression, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15741] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(152), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15837] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(151), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15933] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(40), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16029] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1442), 1, + anon_sym_EQ_GT, + ACTIONS(1466), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(366), 1, + sym__built_in_function_name, + STATE(854), 1, + sym_expression, + STATE(1823), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1468), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16125] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(114), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16221] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(111), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(265), 1, + sym__built_in_function_name, + STATE(569), 1, + sym_expression, + STATE(1817), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(113), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16317] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(123), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16413] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(124), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16509] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(236), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16605] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3789), 1, + sym_identifier, + ACTIONS(3791), 1, + anon_sym_EQ_GT, + ACTIONS(3793), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1629), 1, + sym_expression, + STATE(1917), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1636), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16701] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(149), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16797] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(127), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16893] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3861), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1595), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16989] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(281), 1, + anon_sym_EQ_GT, + ACTIONS(305), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(311), 1, + sym__built_in_function_name, + STATE(651), 1, + sym_expression, + STATE(1813), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(307), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17085] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(148), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17181] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(246), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17277] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(132), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17373] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(179), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17469] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(1288), 1, + anon_sym_EQ_GT, + ACTIONS(1312), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(351), 1, + sym__built_in_function_name, + STATE(836), 1, + sym_expression, + STATE(1926), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1314), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17565] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(177), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17661] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(175), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17757] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(173), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17853] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(172), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17949] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(162), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18045] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(63), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18141] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3863), 1, + sym_identifier, + ACTIONS(3865), 1, + anon_sym_EQ_GT, + ACTIONS(3867), 1, + anon_sym_table, + STATE(914), 1, + sym__built_in_function_name, + STATE(1558), 1, + sym_expression, + STATE(1922), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3869), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18237] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3863), 1, + sym_identifier, + ACTIONS(3865), 1, + anon_sym_EQ_GT, + ACTIONS(3867), 1, + anon_sym_table, + STATE(914), 1, + sym__built_in_function_name, + STATE(1569), 1, + sym_expression, + STATE(1922), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3869), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18333] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3863), 1, + sym_identifier, + ACTIONS(3865), 1, + anon_sym_EQ_GT, + ACTIONS(3867), 1, + anon_sym_table, + STATE(914), 1, + sym__built_in_function_name, + STATE(1557), 1, + sym_expression, + STATE(1922), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3869), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18429] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(892), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18525] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_EQ_GT, + ACTIONS(191), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(284), 1, + sym__built_in_function_name, + STATE(643), 1, + sym_expression, + STATE(1910), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(193), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18621] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(886), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18717] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(128), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18813] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(901), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18909] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(1288), 1, + anon_sym_EQ_GT, + ACTIONS(1312), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(28), 1, + sym_expression, + STATE(351), 1, + sym__built_in_function_name, + STATE(1926), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1314), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19005] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(847), 1, + anon_sym_EQ_GT, + ACTIONS(871), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(341), 1, + sym__built_in_function_name, + STATE(815), 1, + sym_expression, + STATE(1860), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(873), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19101] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(885), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19197] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(47), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19293] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(910), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19389] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(380), 1, + sym__built_in_function_name, + STATE(916), 1, + sym_expression, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19485] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(900), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19581] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(904), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19677] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(160), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19773] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(80), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19869] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3578), 1, + anon_sym_EQ_GT, + ACTIONS(3580), 1, + anon_sym_table, + STATE(726), 1, + sym__built_in_function_name, + STATE(957), 1, + sym_expression, + STATE(1762), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3582), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19965] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3578), 1, + anon_sym_EQ_GT, + ACTIONS(3580), 1, + anon_sym_table, + STATE(726), 1, + sym__built_in_function_name, + STATE(958), 1, + sym_expression, + STATE(1762), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3582), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20061] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3578), 1, + anon_sym_EQ_GT, + ACTIONS(3580), 1, + anon_sym_table, + STATE(726), 1, + sym__built_in_function_name, + STATE(959), 1, + sym_expression, + STATE(1762), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3582), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20157] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(121), 1, + anon_sym_EQ_GT, + ACTIONS(145), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(271), 1, + sym__built_in_function_name, + STATE(575), 1, + sym_expression, + STATE(2030), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(147), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20253] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(81), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20349] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(82), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20445] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_EQ_GT, + ACTIONS(191), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(4), 1, + sym_expression, + STATE(284), 1, + sym__built_in_function_name, + STATE(1910), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(193), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20541] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(83), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20637] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(84), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20733] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(85), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20829] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(86), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20925] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(217), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21021] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(249), 1, + anon_sym_EQ_GT, + ACTIONS(273), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(302), 1, + sym__built_in_function_name, + STATE(666), 1, + sym_expression, + STATE(1984), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(275), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21117] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(903), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21213] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(215), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21309] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(214), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21405] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(913), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21501] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(213), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21597] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(210), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21693] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(895), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21789] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(87), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21885] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(178), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21981] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(281), 1, + anon_sym_EQ_GT, + ACTIONS(305), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(311), 1, + sym__built_in_function_name, + STATE(681), 1, + sym_expression, + STATE(1813), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(307), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22077] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(281), 1, + anon_sym_EQ_GT, + ACTIONS(305), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(311), 1, + sym__built_in_function_name, + STATE(682), 1, + sym_expression, + STATE(1813), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(307), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22173] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3871), 1, + sym_identifier, + ACTIONS(3873), 1, + anon_sym_EQ_GT, + ACTIONS(3875), 1, + anon_sym_table, + STATE(726), 1, + sym__built_in_function_name, + STATE(1538), 1, + sym_expression, + STATE(1804), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3582), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22269] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3789), 1, + sym_identifier, + ACTIONS(3791), 1, + anon_sym_EQ_GT, + ACTIONS(3793), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1629), 1, + sym_expression, + STATE(1917), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1630), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22365] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(153), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22461] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3877), 1, + sym_identifier, + ACTIONS(3879), 1, + anon_sym_EQ_GT, + ACTIONS(3881), 1, + anon_sym_table, + STATE(914), 1, + sym__built_in_function_name, + STATE(1564), 1, + sym_expression, + STATE(1784), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3869), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22557] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3877), 1, + sym_identifier, + ACTIONS(3879), 1, + anon_sym_EQ_GT, + ACTIONS(3881), 1, + anon_sym_table, + STATE(914), 1, + sym__built_in_function_name, + STATE(1572), 1, + sym_expression, + STATE(1784), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3869), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22653] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3877), 1, + sym_identifier, + ACTIONS(3879), 1, + anon_sym_EQ_GT, + ACTIONS(3881), 1, + anon_sym_table, + STATE(914), 1, + sym__built_in_function_name, + STATE(1562), 1, + sym_expression, + STATE(1784), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3869), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22749] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_EQ_GT, + ACTIONS(3885), 1, + anon_sym_table, + STATE(914), 1, + sym__built_in_function_name, + STATE(1057), 1, + sym_expression, + STATE(1773), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3869), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22845] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1442), 1, + anon_sym_EQ_GT, + ACTIONS(1466), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(366), 1, + sym__built_in_function_name, + STATE(869), 1, + sym_expression, + STATE(1823), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1468), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22941] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(137), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23037] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(915), 1, + anon_sym_EQ_GT, + ACTIONS(939), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(325), 1, + sym__built_in_function_name, + STATE(814), 1, + sym_expression, + STATE(2015), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(941), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23133] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(183), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23229] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(226), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23325] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(232), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23421] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(237), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23517] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(251), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23613] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(655), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(315), 1, + sym__built_in_function_name, + STATE(740), 1, + sym_expression, + STATE(1841), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(657), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23709] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(252), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23805] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(209), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23901] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(122), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23997] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(130), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24093] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(847), 1, + anon_sym_EQ_GT, + ACTIONS(871), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(341), 1, + sym__built_in_function_name, + STATE(791), 1, + sym_expression, + STATE(1860), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(873), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24189] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(847), 1, + anon_sym_EQ_GT, + ACTIONS(871), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(341), 1, + sym__built_in_function_name, + STATE(800), 1, + sym_expression, + STATE(1860), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(873), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24285] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(847), 1, + anon_sym_EQ_GT, + ACTIONS(871), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(341), 1, + sym__built_in_function_name, + STATE(794), 1, + sym_expression, + STATE(1860), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(873), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24381] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(68), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24477] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(71), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24573] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(241), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24669] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3803), 1, + sym_identifier, + ACTIONS(3805), 1, + anon_sym_LBRACE, + ACTIONS(3807), 1, + anon_sym_LPAREN, + ACTIONS(3809), 1, + sym_integer, + ACTIONS(3815), 1, + anon_sym_LBRACK, + ACTIONS(3817), 1, + anon_sym_EQ_GT, + ACTIONS(3819), 1, + anon_sym_table, + STATE(673), 1, + sym__built_in_function_name, + STATE(1515), 1, + sym_expression, + STATE(1770), 1, + sym_identifier_list, + ACTIONS(3811), 2, + sym_float, + sym_string, + ACTIONS(3813), 2, + anon_sym_true, + anon_sym_false, + STATE(1525), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1526), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1527), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3454), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24765] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(242), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24861] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(164), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24957] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(125), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25053] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(92), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25149] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(893), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25245] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(163), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25341] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3789), 1, + sym_identifier, + ACTIONS(3791), 1, + anon_sym_EQ_GT, + ACTIONS(3793), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1629), 1, + sym_expression, + STATE(1917), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1633), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25437] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(243), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25533] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3887), 1, + sym_identifier, + ACTIONS(3889), 1, + anon_sym_EQ_GT, + ACTIONS(3891), 1, + anon_sym_table, + STATE(914), 1, + sym__built_in_function_name, + STATE(1566), 1, + sym_expression, + STATE(1794), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3869), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25629] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3887), 1, + sym_identifier, + ACTIONS(3889), 1, + anon_sym_EQ_GT, + ACTIONS(3891), 1, + anon_sym_table, + STATE(914), 1, + sym__built_in_function_name, + STATE(1574), 1, + sym_expression, + STATE(1794), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3869), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25725] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3887), 1, + sym_identifier, + ACTIONS(3889), 1, + anon_sym_EQ_GT, + ACTIONS(3891), 1, + anon_sym_table, + STATE(914), 1, + sym__built_in_function_name, + STATE(1567), 1, + sym_expression, + STATE(1794), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3869), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25821] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(250), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25917] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(915), 1, + anon_sym_EQ_GT, + ACTIONS(939), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(325), 1, + sym__built_in_function_name, + STATE(797), 1, + sym_expression, + STATE(2015), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(941), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26013] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(281), 1, + anon_sym_EQ_GT, + ACTIONS(305), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(311), 1, + sym__built_in_function_name, + STATE(671), 1, + sym_expression, + STATE(1813), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(307), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26109] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(915), 1, + anon_sym_EQ_GT, + ACTIONS(939), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(325), 1, + sym__built_in_function_name, + STATE(798), 1, + sym_expression, + STATE(2015), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(941), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26205] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3871), 1, + sym_identifier, + ACTIONS(3873), 1, + anon_sym_EQ_GT, + ACTIONS(3875), 1, + anon_sym_table, + STATE(726), 1, + sym__built_in_function_name, + STATE(1542), 1, + sym_expression, + STATE(1804), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3582), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26301] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(247), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26397] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(244), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26493] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(281), 1, + anon_sym_EQ_GT, + ACTIONS(305), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(311), 1, + sym__built_in_function_name, + STATE(684), 1, + sym_expression, + STATE(1813), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(307), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26589] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3578), 1, + anon_sym_EQ_GT, + ACTIONS(3580), 1, + anon_sym_table, + STATE(726), 1, + sym__built_in_function_name, + STATE(967), 1, + sym_expression, + STATE(1762), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3582), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26685] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(111), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(2), 1, + sym_expression, + STATE(265), 1, + sym__built_in_function_name, + STATE(1817), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(113), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26781] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(883), 1, + anon_sym_EQ_GT, + ACTIONS(907), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(338), 1, + sym__built_in_function_name, + STATE(786), 1, + sym_expression, + STATE(1752), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(909), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26877] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(915), 1, + anon_sym_EQ_GT, + ACTIONS(939), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(325), 1, + sym__built_in_function_name, + STATE(771), 1, + sym_expression, + STATE(2015), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(941), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26973] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(229), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27069] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(219), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27165] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(212), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27261] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(133), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27357] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3805), 1, + anon_sym_LBRACE, + ACTIONS(3807), 1, + anon_sym_LPAREN, + ACTIONS(3809), 1, + sym_integer, + ACTIONS(3815), 1, + anon_sym_LBRACK, + ACTIONS(3893), 1, + sym_identifier, + ACTIONS(3895), 1, + anon_sym_EQ_GT, + ACTIONS(3897), 1, + anon_sym_table, + STATE(692), 1, + sym__built_in_function_name, + STATE(1519), 1, + sym_expression, + STATE(2020), 1, + sym_identifier_list, + ACTIONS(3811), 2, + sym_float, + sym_string, + ACTIONS(3813), 2, + anon_sym_true, + anon_sym_false, + STATE(1525), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1526), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1527), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3527), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27453] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(315), 1, + anon_sym_EQ_GT, + ACTIONS(339), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(296), 1, + sym__built_in_function_name, + STATE(659), 1, + sym_expression, + STATE(1998), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(341), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27549] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(315), 1, + anon_sym_EQ_GT, + ACTIONS(339), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(296), 1, + sym__built_in_function_name, + STATE(658), 1, + sym_expression, + STATE(1998), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(341), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27645] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(211), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27741] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(106), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27837] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(134), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27933] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(136), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28029] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3805), 1, + anon_sym_LBRACE, + ACTIONS(3807), 1, + anon_sym_LPAREN, + ACTIONS(3809), 1, + sym_integer, + ACTIONS(3815), 1, + anon_sym_LBRACK, + ACTIONS(3893), 1, + sym_identifier, + ACTIONS(3895), 1, + anon_sym_EQ_GT, + ACTIONS(3897), 1, + anon_sym_table, + STATE(692), 1, + sym__built_in_function_name, + STATE(1518), 1, + sym_expression, + STATE(2020), 1, + sym_identifier_list, + ACTIONS(3811), 2, + sym_float, + sym_string, + ACTIONS(3813), 2, + anon_sym_true, + anon_sym_false, + STATE(1525), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1526), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1527), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3527), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28125] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3805), 1, + anon_sym_LBRACE, + ACTIONS(3807), 1, + anon_sym_LPAREN, + ACTIONS(3809), 1, + sym_integer, + ACTIONS(3815), 1, + anon_sym_LBRACK, + ACTIONS(3893), 1, + sym_identifier, + ACTIONS(3895), 1, + anon_sym_EQ_GT, + ACTIONS(3897), 1, + anon_sym_table, + STATE(692), 1, + sym__built_in_function_name, + STATE(1516), 1, + sym_expression, + STATE(2020), 1, + sym_identifier_list, + ACTIONS(3811), 2, + sym_float, + sym_string, + ACTIONS(3813), 2, + anon_sym_true, + anon_sym_false, + STATE(1525), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1526), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1527), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3527), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28221] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3805), 1, + anon_sym_LBRACE, + ACTIONS(3807), 1, + anon_sym_LPAREN, + ACTIONS(3809), 1, + sym_integer, + ACTIONS(3815), 1, + anon_sym_LBRACK, + ACTIONS(3893), 1, + sym_identifier, + ACTIONS(3895), 1, + anon_sym_EQ_GT, + ACTIONS(3897), 1, + anon_sym_table, + STATE(692), 1, + sym__built_in_function_name, + STATE(1517), 1, + sym_expression, + STATE(2020), 1, + sym_identifier_list, + ACTIONS(3811), 2, + sym_float, + sym_string, + ACTIONS(3813), 2, + anon_sym_true, + anon_sym_false, + STATE(1525), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1526), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1527), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3527), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28317] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_EQ_GT, + ACTIONS(191), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(284), 1, + sym__built_in_function_name, + STATE(640), 1, + sym_expression, + STATE(1910), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(193), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28413] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(139), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28509] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(140), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28605] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3436), 1, + sym_identifier, + ACTIONS(3438), 1, + anon_sym_LBRACE, + ACTIONS(3440), 1, + anon_sym_LPAREN, + ACTIONS(3442), 1, + sym_integer, + ACTIONS(3448), 1, + anon_sym_LBRACK, + ACTIONS(3523), 1, + anon_sym_EQ_GT, + ACTIONS(3525), 1, + anon_sym_table, + STATE(692), 1, + sym__built_in_function_name, + STATE(964), 1, + sym_expression, + STATE(2055), 1, + sym_identifier_list, + ACTIONS(3444), 2, + sym_float, + sym_string, + ACTIONS(3446), 2, + anon_sym_true, + anon_sym_false, + STATE(990), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(981), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(986), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3527), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28701] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3436), 1, + sym_identifier, + ACTIONS(3438), 1, + anon_sym_LBRACE, + ACTIONS(3440), 1, + anon_sym_LPAREN, + ACTIONS(3442), 1, + sym_integer, + ACTIONS(3448), 1, + anon_sym_LBRACK, + ACTIONS(3523), 1, + anon_sym_EQ_GT, + ACTIONS(3525), 1, + anon_sym_table, + STATE(692), 1, + sym__built_in_function_name, + STATE(962), 1, + sym_expression, + STATE(2055), 1, + sym_identifier_list, + ACTIONS(3444), 2, + sym_float, + sym_string, + ACTIONS(3446), 2, + anon_sym_true, + anon_sym_false, + STATE(990), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(981), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(986), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3527), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28797] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3436), 1, + sym_identifier, + ACTIONS(3438), 1, + anon_sym_LBRACE, + ACTIONS(3440), 1, + anon_sym_LPAREN, + ACTIONS(3442), 1, + sym_integer, + ACTIONS(3448), 1, + anon_sym_LBRACK, + ACTIONS(3523), 1, + anon_sym_EQ_GT, + ACTIONS(3525), 1, + anon_sym_table, + STATE(692), 1, + sym__built_in_function_name, + STATE(965), 1, + sym_expression, + STATE(2055), 1, + sym_identifier_list, + ACTIONS(3444), 2, + sym_float, + sym_string, + ACTIONS(3446), 2, + anon_sym_true, + anon_sym_false, + STATE(990), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(981), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(986), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3527), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28893] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(141), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28989] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(138), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [29085] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_EQ_GT, + ACTIONS(523), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(320), 1, + sym__built_in_function_name, + STATE(721), 1, + sym_expression, + STATE(1866), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(525), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [29181] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(184), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [29277] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(909), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [29373] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(104), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [29469] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3789), 1, + sym_identifier, + ACTIONS(3791), 1, + anon_sym_EQ_GT, + ACTIONS(3793), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1629), 1, + sym_expression, + STATE(1917), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [29565] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(145), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [29661] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(180), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [29757] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(240), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [29853] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(108), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [29949] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(135), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [30045] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(111), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [30141] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(883), 1, + anon_sym_EQ_GT, + ACTIONS(907), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(338), 1, + sym__built_in_function_name, + STATE(774), 1, + sym_expression, + STATE(1752), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(909), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [30237] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(883), 1, + anon_sym_EQ_GT, + ACTIONS(907), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(338), 1, + sym__built_in_function_name, + STATE(790), 1, + sym_expression, + STATE(1752), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(909), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [30333] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(883), 1, + anon_sym_EQ_GT, + ACTIONS(907), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(338), 1, + sym__built_in_function_name, + STATE(775), 1, + sym_expression, + STATE(1752), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(909), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [30429] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(221), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [30525] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(146), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [30621] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1204), 1, + anon_sym_EQ_GT, + ACTIONS(1228), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(52), 1, + sym_expression, + STATE(360), 1, + sym__built_in_function_name, + STATE(2042), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1230), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [30717] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(883), 1, + anon_sym_EQ_GT, + ACTIONS(907), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(338), 1, + sym__built_in_function_name, + STATE(784), 1, + sym_expression, + STATE(1752), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(909), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [30813] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(249), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [30909] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(111), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(265), 1, + sym__built_in_function_name, + STATE(562), 1, + sym_expression, + STATE(1817), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(113), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [31005] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(111), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(265), 1, + sym__built_in_function_name, + STATE(565), 1, + sym_expression, + STATE(1817), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(113), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [31101] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(111), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(265), 1, + sym__built_in_function_name, + STATE(563), 1, + sym_expression, + STATE(1817), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(113), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [31197] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(248), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [31293] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_EQ_GT, + ACTIONS(191), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(284), 1, + sym__built_in_function_name, + STATE(590), 1, + sym_expression, + STATE(1910), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(193), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [31389] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_EQ_GT, + ACTIONS(191), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(284), 1, + sym__built_in_function_name, + STATE(644), 1, + sym_expression, + STATE(1910), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(193), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [31485] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3887), 1, + sym_identifier, + ACTIONS(3889), 1, + anon_sym_EQ_GT, + ACTIONS(3891), 1, + anon_sym_table, + STATE(914), 1, + sym__built_in_function_name, + STATE(1559), 1, + sym_expression, + STATE(1794), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3869), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [31581] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3119), 1, + anon_sym_EQ_GT, + ACTIONS(3143), 1, + anon_sym_table, + ACTIONS(3899), 1, + sym_identifier, + STATE(780), 1, + sym__built_in_function_name, + STATE(1555), 1, + sym_expression, + STATE(1793), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [31677] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(111), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(265), 1, + sym__built_in_function_name, + STATE(572), 1, + sym_expression, + STATE(1817), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(113), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [31773] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(655), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(315), 1, + sym__built_in_function_name, + STATE(715), 1, + sym_expression, + STATE(1841), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(657), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [31869] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(655), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(315), 1, + sym__built_in_function_name, + STATE(743), 1, + sym_expression, + STATE(1841), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(657), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [31965] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(655), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(34), 1, + sym_expression, + STATE(315), 1, + sym__built_in_function_name, + STATE(1841), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(657), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [32061] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(249), 1, + anon_sym_EQ_GT, + ACTIONS(273), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(302), 1, + sym__built_in_function_name, + STATE(665), 1, + sym_expression, + STATE(1984), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(275), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [32157] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(223), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [32253] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(905), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [32349] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3877), 1, + sym_identifier, + ACTIONS(3879), 1, + anon_sym_EQ_GT, + ACTIONS(3881), 1, + anon_sym_table, + STATE(914), 1, + sym__built_in_function_name, + STATE(1565), 1, + sym_expression, + STATE(1784), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3869), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [32445] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(655), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(315), 1, + sym__built_in_function_name, + STATE(714), 1, + sym_expression, + STATE(1841), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(657), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [32541] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1347), 1, + sym_logic_operator, + STATE(1348), 1, + sym_math_operator, + ACTIONS(3262), 17, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + ACTIONS(3264), 39, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [32611] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1329), 1, + sym_expression, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [32707] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(220), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [32803] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_EQ_GT, + ACTIONS(3885), 1, + anon_sym_table, + STATE(914), 1, + sym__built_in_function_name, + STATE(1052), 1, + sym_expression, + STATE(1773), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3869), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [32899] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_EQ_GT, + ACTIONS(3885), 1, + anon_sym_table, + STATE(914), 1, + sym__built_in_function_name, + STATE(1072), 1, + sym_expression, + STATE(1773), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3869), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [32995] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_EQ_GT, + ACTIONS(3885), 1, + anon_sym_table, + STATE(914), 1, + sym__built_in_function_name, + STATE(1073), 1, + sym_expression, + STATE(1773), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3869), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [33091] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3789), 1, + sym_identifier, + ACTIONS(3791), 1, + anon_sym_EQ_GT, + ACTIONS(3793), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1629), 1, + sym_expression, + STATE(1917), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1632), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [33187] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(167), 1, + anon_sym_EQ_GT, + ACTIONS(191), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(284), 1, + sym__built_in_function_name, + STATE(597), 1, + sym_expression, + STATE(1910), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(193), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [33283] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3119), 1, + anon_sym_EQ_GT, + ACTIONS(3143), 1, + anon_sym_table, + ACTIONS(3899), 1, + sym_identifier, + STATE(780), 1, + sym__built_in_function_name, + STATE(1552), 1, + sym_expression, + STATE(1793), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [33379] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3119), 1, + anon_sym_EQ_GT, + ACTIONS(3143), 1, + anon_sym_table, + ACTIONS(3899), 1, + sym_identifier, + STATE(780), 1, + sym__built_in_function_name, + STATE(1551), 1, + sym_expression, + STATE(1793), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [33475] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(315), 1, + anon_sym_EQ_GT, + ACTIONS(339), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(8), 1, + sym_expression, + STATE(296), 1, + sym__built_in_function_name, + STATE(1998), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(341), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [33571] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_EQ_GT, + ACTIONS(3885), 1, + anon_sym_table, + STATE(914), 1, + sym__built_in_function_name, + STATE(1063), 1, + sym_expression, + STATE(1773), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3869), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [33667] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3119), 1, + anon_sym_EQ_GT, + ACTIONS(3143), 1, + anon_sym_table, + ACTIONS(3899), 1, + sym_identifier, + STATE(780), 1, + sym__built_in_function_name, + STATE(1556), 1, + sym_expression, + STATE(1793), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [33763] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(380), 1, + sym__built_in_function_name, + STATE(889), 1, + sym_expression, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [33859] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(73), 1, + anon_sym_DASH, + ACTIONS(3628), 1, + anon_sym_COLON, + STATE(1347), 1, + sym_logic_operator, + STATE(1348), 1, + sym_math_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3240), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + ACTIONS(3242), 36, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [33939] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1347), 1, + sym_logic_operator, + STATE(1348), 1, + sym_math_operator, + ACTIONS(3252), 17, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + ACTIONS(3254), 39, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [34009] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(73), 1, + anon_sym_DASH, + ACTIONS(3628), 1, + anon_sym_COLON, + STATE(1347), 1, + sym_logic_operator, + STATE(1348), 1, + sym_math_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3244), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + ACTIONS(3246), 36, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [34089] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(201), 1, + anon_sym_EQ_GT, + ACTIONS(225), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(5), 1, + sym_expression, + STATE(286), 1, + sym__built_in_function_name, + STATE(1776), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(227), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [34185] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1343), 1, + sym_expression, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [34281] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1344), 1, + sym_expression, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [34377] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1442), 1, + anon_sym_EQ_GT, + ACTIONS(1466), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(366), 1, + sym__built_in_function_name, + STATE(847), 1, + sym_expression, + STATE(1823), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1468), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [34473] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1345), 1, + sym_expression, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [34569] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(201), 1, + anon_sym_EQ_GT, + ACTIONS(225), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(286), 1, + sym__built_in_function_name, + STATE(599), 1, + sym_expression, + STATE(1776), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(227), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [34665] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3871), 1, + sym_identifier, + ACTIONS(3873), 1, + anon_sym_EQ_GT, + ACTIONS(3875), 1, + anon_sym_table, + STATE(726), 1, + sym__built_in_function_name, + STATE(1546), 1, + sym_expression, + STATE(1804), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3582), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [34761] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3871), 1, + sym_identifier, + ACTIONS(3873), 1, + anon_sym_EQ_GT, + ACTIONS(3875), 1, + anon_sym_table, + STATE(726), 1, + sym__built_in_function_name, + STATE(1536), 1, + sym_expression, + STATE(1804), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3582), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [34857] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3871), 1, + sym_identifier, + ACTIONS(3873), 1, + anon_sym_EQ_GT, + ACTIONS(3875), 1, + anon_sym_table, + STATE(726), 1, + sym__built_in_function_name, + STATE(1534), 1, + sym_expression, + STATE(1804), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3582), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [34953] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(191), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [35049] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(192), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [35145] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(193), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [35241] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(194), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [35337] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(655), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(315), 1, + sym__built_in_function_name, + STATE(700), 1, + sym_expression, + STATE(1841), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(657), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [35433] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(631), 1, + anon_sym_EQ_GT, + ACTIONS(655), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(14), 1, + sym_expression, + STATE(315), 1, + sym__built_in_function_name, + STATE(1841), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(657), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [35529] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(249), 1, + anon_sym_EQ_GT, + ACTIONS(273), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(302), 1, + sym__built_in_function_name, + STATE(675), 1, + sym_expression, + STATE(1984), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(275), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [35625] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(249), 1, + anon_sym_EQ_GT, + ACTIONS(273), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(302), 1, + sym__built_in_function_name, + STATE(667), 1, + sym_expression, + STATE(1984), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(275), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [35721] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(249), 1, + anon_sym_EQ_GT, + ACTIONS(273), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(302), 1, + sym__built_in_function_name, + STATE(678), 1, + sym_expression, + STATE(1984), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(275), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [35817] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3863), 1, + sym_identifier, + ACTIONS(3865), 1, + anon_sym_EQ_GT, + ACTIONS(3867), 1, + anon_sym_table, + STATE(914), 1, + sym__built_in_function_name, + STATE(1560), 1, + sym_expression, + STATE(1922), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3869), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [35913] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(222), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [36009] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(121), 1, + anon_sym_EQ_GT, + ACTIONS(145), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(271), 1, + sym__built_in_function_name, + STATE(579), 1, + sym_expression, + STATE(2030), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(147), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [36105] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(315), 1, + anon_sym_EQ_GT, + ACTIONS(339), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(296), 1, + sym__built_in_function_name, + STATE(676), 1, + sym_expression, + STATE(1998), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(341), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [36201] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(216), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [36297] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1204), 1, + anon_sym_EQ_GT, + ACTIONS(1228), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(360), 1, + sym__built_in_function_name, + STATE(829), 1, + sym_expression, + STATE(2042), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1230), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [36393] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1204), 1, + anon_sym_EQ_GT, + ACTIONS(1228), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(26), 1, + sym_expression, + STATE(360), 1, + sym__built_in_function_name, + STATE(2042), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1230), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [36489] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(207), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [36585] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(206), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [36681] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(205), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [36777] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(204), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [36873] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(121), 1, + anon_sym_EQ_GT, + ACTIONS(145), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(271), 1, + sym__built_in_function_name, + STATE(585), 1, + sym_expression, + STATE(2030), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(147), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [36969] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(121), 1, + anon_sym_EQ_GT, + ACTIONS(145), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(271), 1, + sym__built_in_function_name, + STATE(586), 1, + sym_expression, + STATE(2030), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(147), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [37065] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(121), 1, + anon_sym_EQ_GT, + ACTIONS(145), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(271), 1, + sym__built_in_function_name, + STATE(578), 1, + sym_expression, + STATE(2030), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(147), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [37161] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(203), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [37257] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(195), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [37353] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1204), 1, + anon_sym_EQ_GT, + ACTIONS(1228), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(360), 1, + sym__built_in_function_name, + STATE(835), 1, + sym_expression, + STATE(2042), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1230), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [37449] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1204), 1, + anon_sym_EQ_GT, + ACTIONS(1228), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(360), 1, + sym__built_in_function_name, + STATE(831), 1, + sym_expression, + STATE(2042), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1230), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [37545] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(196), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [37641] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(200), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [37737] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(201), 1, + anon_sym_EQ_GT, + ACTIONS(225), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(286), 1, + sym__built_in_function_name, + STATE(641), 1, + sym_expression, + STATE(1776), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(227), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [37833] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(230), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [37929] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1204), 1, + anon_sym_EQ_GT, + ACTIONS(1228), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(360), 1, + sym__built_in_function_name, + STATE(834), 1, + sym_expression, + STATE(2042), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1230), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [38025] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(883), 1, + anon_sym_EQ_GT, + ACTIONS(907), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(19), 1, + sym_expression, + STATE(338), 1, + sym__built_in_function_name, + STATE(1752), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(909), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [38121] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3789), 1, + sym_identifier, + ACTIONS(3791), 1, + anon_sym_EQ_GT, + ACTIONS(3793), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1617), 1, + sym_expression, + STATE(1917), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [38217] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3863), 1, + sym_identifier, + ACTIONS(3865), 1, + anon_sym_EQ_GT, + ACTIONS(3867), 1, + anon_sym_table, + STATE(914), 1, + sym__built_in_function_name, + STATE(1570), 1, + sym_expression, + STATE(1922), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3869), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [38313] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3789), 1, + sym_identifier, + ACTIONS(3791), 1, + anon_sym_EQ_GT, + ACTIONS(3793), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1615), 1, + sym_expression, + STATE(1917), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [38409] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3789), 1, + sym_identifier, + ACTIONS(3791), 1, + anon_sym_EQ_GT, + ACTIONS(3793), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1614), 1, + sym_expression, + STATE(1917), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [38505] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(1288), 1, + anon_sym_EQ_GT, + ACTIONS(1312), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(36), 1, + sym_expression, + STATE(351), 1, + sym__built_in_function_name, + STATE(1926), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1314), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [38601] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(1288), 1, + anon_sym_EQ_GT, + ACTIONS(1312), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(351), 1, + sym__built_in_function_name, + STATE(826), 1, + sym_expression, + STATE(1926), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1314), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [38697] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3789), 1, + sym_identifier, + ACTIONS(3791), 1, + anon_sym_EQ_GT, + ACTIONS(3793), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1612), 1, + sym_expression, + STATE(1917), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [38793] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(281), 1, + anon_sym_EQ_GT, + ACTIONS(305), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(7), 1, + sym_expression, + STATE(311), 1, + sym__built_in_function_name, + STATE(1813), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(307), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [38889] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, + anon_sym_table, + ACTIONS(3576), 1, + sym_identifier, + STATE(780), 1, + sym__built_in_function_name, + STATE(973), 1, + sym_expression, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [38985] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(166), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [39081] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(883), 1, + anon_sym_EQ_GT, + ACTIONS(907), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(338), 1, + sym__built_in_function_name, + STATE(751), 1, + sym_expression, + STATE(1752), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(909), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [39177] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, + anon_sym_table, + ACTIONS(3576), 1, + sym_identifier, + STATE(780), 1, + sym__built_in_function_name, + STATE(972), 1, + sym_expression, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [39273] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, + anon_sym_table, + ACTIONS(3576), 1, + sym_identifier, + STATE(780), 1, + sym__built_in_function_name, + STATE(971), 1, + sym_expression, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [39369] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(915), 1, + anon_sym_EQ_GT, + ACTIONS(939), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(325), 1, + sym__built_in_function_name, + STATE(768), 1, + sym_expression, + STATE(2015), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(941), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [39465] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3436), 1, + sym_identifier, + ACTIONS(3438), 1, + anon_sym_LBRACE, + ACTIONS(3440), 1, + anon_sym_LPAREN, + ACTIONS(3442), 1, + sym_integer, + ACTIONS(3448), 1, + anon_sym_LBRACK, + ACTIONS(3450), 1, + anon_sym_EQ_GT, + ACTIONS(3452), 1, + anon_sym_table, + STATE(673), 1, + sym__built_in_function_name, + STATE(950), 1, + sym_expression, + STATE(1920), 1, + sym_identifier_list, + ACTIONS(3444), 2, + sym_float, + sym_string, + ACTIONS(3446), 2, + anon_sym_true, + anon_sym_false, + STATE(990), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(981), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(986), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3454), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [39561] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3436), 1, + sym_identifier, + ACTIONS(3438), 1, + anon_sym_LBRACE, + ACTIONS(3440), 1, + anon_sym_LPAREN, + ACTIONS(3442), 1, + sym_integer, + ACTIONS(3448), 1, + anon_sym_LBRACK, + ACTIONS(3450), 1, + anon_sym_EQ_GT, + ACTIONS(3452), 1, + anon_sym_table, + STATE(673), 1, + sym__built_in_function_name, + STATE(952), 1, + sym_expression, + STATE(1920), 1, + sym_identifier_list, + ACTIONS(3444), 2, + sym_float, + sym_string, + ACTIONS(3446), 2, + anon_sym_true, + anon_sym_false, + STATE(990), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(981), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(986), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3454), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [39657] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3436), 1, + sym_identifier, + ACTIONS(3438), 1, + anon_sym_LBRACE, + ACTIONS(3440), 1, + anon_sym_LPAREN, + ACTIONS(3442), 1, + sym_integer, + ACTIONS(3448), 1, + anon_sym_LBRACK, + ACTIONS(3450), 1, + anon_sym_EQ_GT, + ACTIONS(3452), 1, + anon_sym_table, + STATE(673), 1, + sym__built_in_function_name, + STATE(954), 1, + sym_expression, + STATE(1920), 1, + sym_identifier_list, + ACTIONS(3444), 2, + sym_float, + sym_string, + ACTIONS(3446), 2, + anon_sym_true, + anon_sym_false, + STATE(990), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(981), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(986), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3454), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [39753] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(159), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [39849] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(121), 1, + anon_sym_EQ_GT, + ACTIONS(145), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(3), 1, + sym_expression, + STATE(271), 1, + sym__built_in_function_name, + STATE(2030), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(147), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [39945] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3803), 1, + sym_identifier, + ACTIONS(3805), 1, + anon_sym_LBRACE, + ACTIONS(3807), 1, + anon_sym_LPAREN, + ACTIONS(3809), 1, + sym_integer, + ACTIONS(3815), 1, + anon_sym_LBRACK, + ACTIONS(3817), 1, + anon_sym_EQ_GT, + ACTIONS(3819), 1, + anon_sym_table, + STATE(673), 1, + sym__built_in_function_name, + STATE(1513), 1, + sym_expression, + STATE(1770), 1, + sym_identifier_list, + ACTIONS(3811), 2, + sym_float, + sym_string, + ACTIONS(3813), 2, + anon_sym_true, + anon_sym_false, + STATE(1525), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1526), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1527), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3454), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [40041] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3803), 1, + sym_identifier, + ACTIONS(3805), 1, + anon_sym_LBRACE, + ACTIONS(3807), 1, + anon_sym_LPAREN, + ACTIONS(3809), 1, + sym_integer, + ACTIONS(3815), 1, + anon_sym_LBRACK, + ACTIONS(3817), 1, + anon_sym_EQ_GT, + ACTIONS(3819), 1, + anon_sym_table, + STATE(673), 1, + sym__built_in_function_name, + STATE(1510), 1, + sym_expression, + STATE(1770), 1, + sym_identifier_list, + ACTIONS(3811), 2, + sym_float, + sym_string, + ACTIONS(3813), 2, + anon_sym_true, + anon_sym_false, + STATE(1525), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1526), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1527), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3454), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [40137] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3803), 1, + sym_identifier, + ACTIONS(3805), 1, + anon_sym_LBRACE, + ACTIONS(3807), 1, + anon_sym_LPAREN, + ACTIONS(3809), 1, + sym_integer, + ACTIONS(3815), 1, + anon_sym_LBRACK, + ACTIONS(3817), 1, + anon_sym_EQ_GT, + ACTIONS(3819), 1, + anon_sym_table, + STATE(673), 1, + sym__built_in_function_name, + STATE(1514), 1, + sym_expression, + STATE(1770), 1, + sym_identifier_list, + ACTIONS(3811), 2, + sym_float, + sym_string, + ACTIONS(3813), 2, + anon_sym_true, + anon_sym_false, + STATE(1525), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1526), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1527), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3454), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [40233] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(158), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [40329] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(150), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [40425] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(147), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [40521] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(201), 1, + anon_sym_EQ_GT, + ACTIONS(225), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(286), 1, + sym__built_in_function_name, + STATE(602), 1, + sym_expression, + STATE(1776), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(227), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [40617] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(201), 1, + anon_sym_EQ_GT, + ACTIONS(225), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(286), 1, + sym__built_in_function_name, + STATE(609), 1, + sym_expression, + STATE(1776), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(227), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [40713] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(143), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [40809] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(161), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [40905] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(64), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [41001] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(65), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [41097] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(245), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [41193] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_EQ_GT, + ACTIONS(523), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(11), 1, + sym_expression, + STATE(320), 1, + sym__built_in_function_name, + STATE(1866), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(525), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [41289] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3119), 1, + anon_sym_EQ_GT, + ACTIONS(3143), 1, + anon_sym_table, + ACTIONS(3899), 1, + sym_identifier, + STATE(780), 1, + sym__built_in_function_name, + STATE(1553), 1, + sym_expression, + STATE(1793), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [41385] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(66), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [41481] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(883), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [41577] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(67), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [41673] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(239), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [41769] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(225), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [41865] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(218), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [41961] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(208), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [42057] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(198), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [42153] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(188), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [42249] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(186), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [42345] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(238), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [42441] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(235), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [42537] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(234), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [42633] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(233), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [42729] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(168), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [42825] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(231), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [42921] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(228), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [43017] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(227), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [43113] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(224), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [43209] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(249), 1, + anon_sym_EQ_GT, + ACTIONS(273), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(6), 1, + sym_expression, + STATE(302), 1, + sym__built_in_function_name, + STATE(1984), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(275), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [43305] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1204), 1, + anon_sym_EQ_GT, + ACTIONS(1228), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(53), 1, + sym_expression, + STATE(360), 1, + sym__built_in_function_name, + STATE(2042), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1230), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [43401] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(169), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [43497] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(170), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [43593] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(171), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [43689] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(174), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [43785] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(176), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [43881] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(201), 1, + anon_sym_EQ_GT, + ACTIONS(225), 1, + anon_sym_table, + ACTIONS(2445), 1, + anon_sym_LBRACE, + STATE(286), 1, + sym__built_in_function_name, + STATE(646), 1, + sym_expression, + STATE(1776), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(628), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(633), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(631), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(227), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [43977] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(181), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [44073] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(182), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [44169] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3901), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1623), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [44265] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3578), 1, + anon_sym_EQ_GT, + ACTIONS(3580), 1, + anon_sym_table, + STATE(726), 1, + sym__built_in_function_name, + STATE(960), 1, + sym_expression, + STATE(1762), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3582), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [44361] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_EQ_GT, + ACTIONS(523), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(320), 1, + sym__built_in_function_name, + STATE(722), 1, + sym_expression, + STATE(1866), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(525), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [44457] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3901), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1621), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [44553] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_EQ_GT, + ACTIONS(523), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(320), 1, + sym__built_in_function_name, + STATE(694), 1, + sym_expression, + STATE(1866), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(525), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [44649] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(110), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [44745] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3901), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1622), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [44841] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_EQ_GT, + ACTIONS(523), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(320), 1, + sym__built_in_function_name, + STATE(730), 1, + sym_expression, + STATE(1866), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(525), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [44937] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_EQ_GT, + ACTIONS(523), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(320), 1, + sym__built_in_function_name, + STATE(720), 1, + sym_expression, + STATE(1866), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(525), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [45033] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3515), 1, + anon_sym_EQ_GT, + ACTIONS(3517), 1, + anon_sym_table, + ACTIONS(3576), 1, + sym_identifier, + STATE(780), 1, + sym__built_in_function_name, + STATE(979), 1, + sym_expression, + STATE(1980), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3145), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [45129] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(120), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [45225] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(121), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [45321] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(126), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [45417] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(129), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [45513] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(62), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [45609] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(131), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [45705] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(142), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [45801] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(1288), 1, + anon_sym_EQ_GT, + ACTIONS(1312), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(351), 1, + sym__built_in_function_name, + STATE(832), 1, + sym_expression, + STATE(1926), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1314), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [45897] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(185), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [45993] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3877), 1, + sym_identifier, + ACTIONS(3879), 1, + anon_sym_EQ_GT, + ACTIONS(3881), 1, + anon_sym_table, + STATE(914), 1, + sym__built_in_function_name, + STATE(1561), 1, + sym_expression, + STATE(1784), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3869), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [46089] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(149), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_LPAREN, + ACTIONS(155), 1, + sym_integer, + ACTIONS(161), 1, + anon_sym_LBRACK, + ACTIONS(915), 1, + anon_sym_EQ_GT, + ACTIONS(939), 1, + anon_sym_table, + ACTIONS(1923), 1, + anon_sym_LBRACE, + STATE(20), 1, + sym_expression, + STATE(325), 1, + sym__built_in_function_name, + STATE(2015), 1, + sym_identifier_list, + ACTIONS(157), 2, + sym_float, + sym_string, + ACTIONS(159), 2, + anon_sym_true, + anon_sym_false, + STATE(703), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(713), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(706), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(941), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [46185] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(1288), 1, + anon_sym_EQ_GT, + ACTIONS(1312), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(351), 1, + sym__built_in_function_name, + STATE(827), 1, + sym_expression, + STATE(1926), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1314), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [46281] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(187), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [46377] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(189), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [46473] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(190), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [46569] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(197), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [46665] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(199), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [46761] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(201), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [46857] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(202), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [46953] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(1288), 1, + anon_sym_EQ_GT, + ACTIONS(1312), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(351), 1, + sym__built_in_function_name, + STATE(818), 1, + sym_expression, + STATE(1926), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1314), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [47049] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1204), 1, + anon_sym_EQ_GT, + ACTIONS(1228), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(360), 1, + sym__built_in_function_name, + STATE(823), 1, + sym_expression, + STATE(2042), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1230), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [47145] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3797), 1, + anon_sym_EQ_GT, + ACTIONS(3799), 1, + anon_sym_table, + ACTIONS(3901), 1, + sym_identifier, + STATE(928), 1, + sym__built_in_function_name, + STATE(1576), 1, + sym_expression, + STATE(1851), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [47241] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2451), 1, + sym_identifier, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + anon_sym_EQ_GT, + ACTIONS(2469), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1619), 1, + sym_expression, + STATE(1837), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [47337] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3887), 1, + sym_identifier, + ACTIONS(3889), 1, + anon_sym_EQ_GT, + ACTIONS(3891), 1, + anon_sym_table, + STATE(914), 1, + sym__built_in_function_name, + STATE(1573), 1, + sym_expression, + STATE(1794), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(3869), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [47433] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(233), 1, + anon_sym_LPAREN, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(847), 1, + anon_sym_EQ_GT, + ACTIONS(871), 1, + anon_sym_table, + ACTIONS(2624), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(18), 1, + sym_expression, + STATE(341), 1, + sym__built_in_function_name, + STATE(1860), 1, + sym_identifier_list, + ACTIONS(237), 2, + sym_float, + sym_string, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(761), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(757), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(759), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(873), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [47529] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2451), 1, + sym_identifier, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + anon_sym_EQ_GT, + ACTIONS(2469), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1602), 1, + sym_expression, + STATE(1837), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [47625] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(3789), 1, + sym_identifier, + ACTIONS(3791), 1, + anon_sym_EQ_GT, + ACTIONS(3793), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1629), 1, + sym_expression, + STATE(1917), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1635), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [47721] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2451), 1, + sym_identifier, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + anon_sym_EQ_GT, + ACTIONS(2469), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1618), 1, + sym_expression, + STATE(1837), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [47817] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(101), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [47913] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(3503), 1, + anon_sym_LBRACE, + ACTIONS(3505), 1, + anon_sym_LPAREN, + ACTIONS(3507), 1, + sym_integer, + ACTIONS(3513), 1, + anon_sym_LBRACK, + ACTIONS(3576), 1, + sym_identifier, + ACTIONS(3829), 1, + anon_sym_EQ_GT, + ACTIONS(3831), 1, + anon_sym_table, + STATE(907), 1, + sym_expression, + STATE(928), 1, + sym__built_in_function_name, + STATE(1741), 1, + sym_identifier_list, + ACTIONS(3509), 2, + sym_float, + sym_string, + ACTIONS(3511), 2, + anon_sym_true, + anon_sym_false, + STATE(1009), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(996), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [48009] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(100), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [48105] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2451), 1, + sym_identifier, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_integer, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + anon_sym_EQ_GT, + ACTIONS(2469), 1, + anon_sym_table, + STATE(928), 1, + sym__built_in_function_name, + STATE(1598), 1, + sym_expression, + STATE(1837), 1, + sym_identifier_list, + ACTIONS(2459), 2, + sym_float, + sym_string, + ACTIONS(2461), 2, + anon_sym_true, + anon_sym_false, + STATE(1533), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(1550), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1539), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2471), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [48201] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(88), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [48297] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(89), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [48393] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1442), 1, + anon_sym_EQ_GT, + ACTIONS(1466), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(31), 1, + sym_expression, + STATE(366), 1, + sym__built_in_function_name, + STATE(1823), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1468), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [48489] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(90), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [48585] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(91), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [48681] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(93), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [48777] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(94), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [48873] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(95), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [48969] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(2383), 1, + anon_sym_LBRACE, + ACTIONS(2676), 1, + sym_identifier, + STATE(96), 1, + sym_expression, + STATE(380), 1, + sym__built_in_function_name, + STATE(1890), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(874), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(844), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(866), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [49065] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3905), 8, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(3903), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [49128] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3329), 10, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, sym_float, @@ -78388,23 +136392,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(1966), 47, + ACTIONS(3331), 35, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, anon_sym_table, anon_sym_assert, anon_sym_assert_equal, @@ -78436,2140 +136428,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [27924] = 18, + [49181] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2257), 1, - sym_identifier, - ACTIONS(2259), 1, - anon_sym_EQ_GT, - ACTIONS(2261), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(975), 1, - sym_expression, - STATE(1119), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(977), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28020] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(54), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28116] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(117), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28212] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(478), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28308] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(118), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28404] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1296), 1, - sym_identifier, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1312), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(954), 1, - sym_expression, - STATE(1044), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28500] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(114), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28596] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(102), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28692] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(487), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28788] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(138), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28884] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(120), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28980] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2317), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(955), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29076] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2305), 1, - sym_identifier, - ACTIONS(2307), 1, - anon_sym_EQ_GT, - ACTIONS(2309), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(935), 1, - sym_expression, - STATE(1058), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29172] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(124), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29268] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(127), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29364] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(129), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29460] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(130), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29556] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(131), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29652] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(457), 1, - anon_sym_EQ_GT, - ACTIONS(479), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(11), 1, - sym_expression, - STATE(216), 1, - sym__built_in_function_name, - STATE(1033), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(481), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29748] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(133), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29844] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(135), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29940] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(498), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30036] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2319), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(950), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30132] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(105), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30228] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(503), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30324] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(175), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(4), 1, - sym_expression, - STATE(184), 1, - sym__built_in_function_name, - STATE(1126), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(177), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30420] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(77), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2323), 7, + sym__comment, + ACTIONS(3432), 10, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(2321), 47, + ACTIONS(3434), 35, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, anon_sym_table, anon_sym_assert, anon_sym_assert_equal, @@ -80601,10 +136478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [30578] = 3, + [49234] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(2225), 8, + sym__comment, + ACTIONS(3763), 8, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, @@ -80613,7 +136490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(2325), 35, + ACTIONS(3907), 35, sym_identifier, sym_integer, anon_sym_true, @@ -80649,10 +136526,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [30629] = 3, + [49285] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(2329), 7, + sym__comment, + ACTIONS(3911), 7, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, @@ -80660,7 +136537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(2327), 35, + ACTIONS(3909), 35, sym_identifier, sym_integer, anon_sym_true, @@ -80696,10 +136573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [30679] = 3, + [49335] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 7, + sym__comment, + ACTIONS(3915), 7, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, @@ -80707,7 +136584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(2331), 35, + ACTIONS(3913), 35, sym_identifier, sym_integer, anon_sym_true, @@ -80743,10 +136620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [30729] = 3, + [49385] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 7, + sym__comment, + ACTIONS(3919), 7, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, @@ -80754,7 +136631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(2335), 35, + ACTIONS(3917), 35, sym_identifier, sym_integer, anon_sym_true, @@ -80790,10 +136667,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [30779] = 3, + [49435] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(2341), 7, + sym__comment, + ACTIONS(3923), 7, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, @@ -80801,7 +136678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(2339), 35, + ACTIONS(3921), 35, sym_identifier, sym_integer, anon_sym_true, @@ -80837,5700 +136714,9230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [30829] = 5, + [49485] = 5, ACTIONS(3), 1, - sym_comment, - STATE(842), 1, - sym_math_operator, - STATE(843), 1, - sym_logic_operator, - ACTIONS(1915), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1913), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30862] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2100), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2098), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [30891] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2066), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2064), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [30920] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2343), 1, - anon_sym_DOT_DOT, - STATE(842), 1, - sym_math_operator, - STATE(843), 1, - sym_logic_operator, - ACTIONS(1915), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1913), 16, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30955] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2074), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2072), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [30984] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2078), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2076), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2082), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2080), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31042] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1996), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1994), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31071] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(842), 1, - sym_math_operator, - STATE(843), 1, - sym_logic_operator, - ACTIONS(1932), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1930), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31104] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2092), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2090), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31133] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2096), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2094), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31162] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2060), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31191] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2070), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2068), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2106), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2104), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31249] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2086), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2084), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31278] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(842), 1, - sym_math_operator, - STATE(843), 1, - sym_logic_operator, - ACTIONS(1936), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1934), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31311] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2345), 1, - anon_sym_COLON, - STATE(842), 1, - sym_math_operator, - STATE(843), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1947), 5, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_DOT_DOT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31350] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2345), 1, - anon_sym_COLON, - STATE(842), 1, - sym_math_operator, - STATE(843), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1951), 5, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_DOT_DOT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31389] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(700), 1, - sym_math_operator, - STATE(702), 1, - sym_logic_operator, - ACTIONS(1932), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1930), 16, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31421] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2164), 1, - anon_sym_SEMI, - ACTIONS(2347), 1, - anon_sym_COLON, - STATE(700), 1, - sym_math_operator, - STATE(702), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1964), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - sym_identifier, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31461] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(700), 1, - sym_math_operator, - STATE(702), 1, - sym_logic_operator, - ACTIONS(1936), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1934), 16, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31493] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2347), 1, - anon_sym_COLON, - STATE(700), 1, - sym_math_operator, - STATE(702), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1926), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31531] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2347), 1, - anon_sym_COLON, - STATE(700), 1, - sym_math_operator, - STATE(702), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1951), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31569] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2347), 1, - anon_sym_COLON, - STATE(700), 1, - sym_math_operator, - STATE(702), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1947), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31607] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(764), 1, - sym_math_operator, - STATE(765), 1, - sym_logic_operator, - ACTIONS(1915), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1913), 14, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31637] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(764), 1, - sym_math_operator, - STATE(765), 1, - sym_logic_operator, - ACTIONS(1932), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1930), 14, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31667] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2349), 1, - anon_sym_DOT_DOT, - STATE(764), 1, - sym_math_operator, - STATE(765), 1, + sym__comment, + STATE(1407), 1, sym_logic_operator, - ACTIONS(1915), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1913), 13, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31699] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2351), 1, - anon_sym_DOT_DOT, - STATE(779), 1, - sym_math_operator, - STATE(780), 1, - sym_logic_operator, - ACTIONS(1915), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1913), 13, - sym_identifier, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31731] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2353), 1, - anon_sym_COLON, - STATE(764), 1, - sym_math_operator, - STATE(765), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1947), 2, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31767] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2355), 1, - anon_sym_COLON, - STATE(797), 1, - sym_math_operator, - STATE(798), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1951), 2, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31803] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(779), 1, - sym_math_operator, - STATE(780), 1, - sym_logic_operator, - ACTIONS(1915), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1913), 14, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31833] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2355), 1, - anon_sym_COLON, - STATE(797), 1, + STATE(1408), 1, sym_math_operator, - STATE(798), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1947), 2, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31869] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_DOT_DOT, - STATE(797), 1, - sym_math_operator, - STATE(798), 1, - sym_logic_operator, - ACTIONS(1915), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1913), 13, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31901] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(779), 1, - sym_math_operator, - STATE(780), 1, - sym_logic_operator, - ACTIONS(1936), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1934), 14, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31931] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(764), 1, - sym_math_operator, - STATE(765), 1, - sym_logic_operator, - ACTIONS(1936), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1934), 14, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31961] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - anon_sym_COLON, - STATE(779), 1, - sym_math_operator, - STATE(780), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1951), 2, - sym_identifier, - anon_sym_DOT_DOT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31997] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - anon_sym_COLON, - STATE(779), 1, - sym_math_operator, - STATE(780), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1947), 2, - sym_identifier, - anon_sym_DOT_DOT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32033] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(797), 1, - sym_math_operator, - STATE(798), 1, - sym_logic_operator, - ACTIONS(1936), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1934), 14, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [32063] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2353), 1, - anon_sym_COLON, - STATE(764), 1, - sym_math_operator, - STATE(765), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1951), 2, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32099] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(797), 1, - sym_math_operator, - STATE(798), 1, - sym_logic_operator, - ACTIONS(1932), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1930), 14, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [32129] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(797), 1, - sym_math_operator, - STATE(798), 1, - sym_logic_operator, - ACTIONS(1915), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1913), 14, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [32159] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(779), 1, - sym_math_operator, - STATE(780), 1, - sym_logic_operator, - ACTIONS(1932), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1930), 14, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32189] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(655), 1, - sym_logic_operator, - STATE(656), 1, - sym_math_operator, - ACTIONS(1932), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1930), 13, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32218] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2363), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32253] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2365), 1, - sym_identifier, - ACTIONS(2367), 1, - anon_sym_COLON, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32288] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2369), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32323] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2371), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32358] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2373), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32393] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1951), 1, - anon_sym_EQ_GT, - ACTIONS(2361), 1, - anon_sym_COLON, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32428] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(1936), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1934), 13, - sym_identifier, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32457] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2375), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32492] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2377), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32527] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(1932), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1930), 13, - sym_identifier, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32556] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2379), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32591] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2381), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32626] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2383), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32661] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2385), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32696] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2387), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32731] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(1936), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1934), 13, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [32760] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(1932), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1930), 13, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [32789] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2389), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32824] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2391), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32859] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1947), 1, - anon_sym_EQ_GT, - ACTIONS(2361), 1, - anon_sym_COLON, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32894] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2393), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32929] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2395), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32964] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2397), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32999] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2399), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33034] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2401), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33069] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1951), 1, - anon_sym_RPAREN, - ACTIONS(2403), 1, - anon_sym_COLON, - STATE(655), 1, - sym_logic_operator, - STATE(656), 1, - sym_math_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33104] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1947), 1, - sym_identifier, - ACTIONS(2367), 1, - anon_sym_COLON, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33139] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2405), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33174] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2407), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33209] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1951), 1, - sym_identifier, - ACTIONS(2367), 1, - anon_sym_COLON, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33244] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2409), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33279] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1947), 1, - anon_sym_RPAREN, - ACTIONS(2403), 1, - anon_sym_COLON, - STATE(655), 1, - sym_logic_operator, - STATE(656), 1, - sym_math_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33314] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(655), 1, - sym_logic_operator, - STATE(656), 1, - sym_math_operator, - ACTIONS(1936), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1934), 13, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33343] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2411), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33378] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2413), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33413] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2415), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33448] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2417), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33483] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2403), 1, - anon_sym_COLON, - STATE(655), 1, - sym_logic_operator, - STATE(656), 1, - sym_math_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33515] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2419), 1, - anon_sym_RPAREN, - ACTIONS(2070), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2068), 12, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33540] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2421), 1, - anon_sym_RPAREN, - ACTIONS(2070), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2068), 12, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33565] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2423), 1, - anon_sym_RPAREN, - ACTIONS(2070), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2068), 12, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33590] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1901), 1, - sym_identifier, - ACTIONS(2425), 1, - anon_sym_elseif, - ACTIONS(2427), 1, - anon_sym_else, - STATE(793), 1, - sym_else, - STATE(980), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1899), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [33615] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1887), 1, - sym_identifier, - ACTIONS(2425), 1, - anon_sym_elseif, - ACTIONS(2427), 1, - anon_sym_else, - STATE(712), 1, - sym_else, - STATE(981), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1885), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [33640] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2429), 1, - anon_sym_elseif, - ACTIONS(1957), 2, - sym_identifier, - anon_sym_else, - STATE(981), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1955), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [33660] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1768), 1, - anon_sym_RBRACE, - ACTIONS(2432), 1, - sym_identifier, - STATE(995), 1, - aux_sym_map_repeat1, - [33673] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2436), 1, - anon_sym_COMMA, - ACTIONS(2434), 2, - sym_identifier, - anon_sym_PIPE, - [33684] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2440), 1, - anon_sym_COMMA, - ACTIONS(2438), 2, - anon_sym_RBRACE, - sym_identifier, - [33695] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1770), 1, - anon_sym_RBRACE, - ACTIONS(2432), 1, - sym_identifier, - STATE(986), 1, - aux_sym_map_repeat1, - [33708] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2432), 1, - sym_identifier, - ACTIONS(2442), 1, - anon_sym_RBRACE, - STATE(992), 1, - aux_sym_map_repeat1, - [33721] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2444), 1, - sym_identifier, - ACTIONS(2446), 1, - anon_sym_PIPE, - STATE(993), 1, - aux_sym_identifier_list_repeat1, - [33734] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2444), 1, - sym_identifier, - ACTIONS(2448), 1, - anon_sym_PIPE, - STATE(991), 1, - aux_sym_identifier_list_repeat1, - [33747] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2432), 1, - sym_identifier, - ACTIONS(2450), 1, - anon_sym_RBRACE, - STATE(992), 1, - aux_sym_map_repeat1, - [33760] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2432), 1, - sym_identifier, - ACTIONS(2452), 1, - anon_sym_RBRACE, - STATE(989), 1, - aux_sym_map_repeat1, - [33773] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2454), 1, - sym_identifier, - ACTIONS(2457), 1, - anon_sym_PIPE, - STATE(991), 1, - aux_sym_identifier_list_repeat1, - [33786] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2459), 1, - sym_identifier, - ACTIONS(2462), 1, - anon_sym_RBRACE, - STATE(992), 1, - aux_sym_map_repeat1, - [33799] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2444), 1, - sym_identifier, - ACTIONS(2464), 1, - anon_sym_PIPE, - STATE(991), 1, - aux_sym_identifier_list_repeat1, - [33812] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2444), 1, - sym_identifier, - ACTIONS(2466), 1, - anon_sym_PIPE, - STATE(988), 1, - aux_sym_identifier_list_repeat1, - [33825] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2432), 1, - sym_identifier, - ACTIONS(2468), 1, - anon_sym_RBRACE, - STATE(992), 1, - aux_sym_map_repeat1, - [33838] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(645), 1, - sym_identifier_list, - [33848] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(732), 1, - sym_identifier_list, - [33858] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 2, - anon_sym_EQ_GT, - anon_sym_from, - [33866] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(1158), 1, - sym_identifier_list, - [33876] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(630), 1, - sym_identifier_list, - [33886] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(763), 1, - sym_identifier_list, - [33896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(1084), 1, - sym_identifier_list, - [33906] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(828), 1, - sym_identifier_list, - [33916] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(659), 1, - sym_identifier_list, - [33926] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(709), 1, - sym_identifier_list, - [33936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(662), 1, - sym_identifier_list, - [33946] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(804), 1, - sym_identifier_list, - [33956] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(1038), 1, - sym_identifier_list, - [33966] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(728), 1, - sym_identifier_list, - [33976] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(796), 1, - sym_identifier_list, - [33986] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(1108), 1, - sym_identifier_list, - [33996] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(1138), 1, - sym_identifier_list, - [34006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(1075), 1, - sym_identifier_list, - [34016] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(751), 1, - sym_identifier_list, - [34026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(788), 1, - sym_identifier_list, - [34036] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(832), 1, - sym_identifier_list, - [34046] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(1063), 1, - sym_identifier_list, - [34056] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 2, - sym_identifier, - anon_sym_PIPE, - [34064] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(1123), 1, - sym_identifier_list, - [34074] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(1150), 1, - sym_identifier_list, - [34084] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 2, - anon_sym_EQ_GT, - anon_sym_from, - [34092] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2472), 2, - anon_sym_RBRACE, - sym_identifier, - [34100] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(619), 1, - sym_identifier_list, - [34110] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(1112), 1, - sym_identifier_list, - [34120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(1067), 1, - sym_identifier_list, - [34130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(1049), 1, - sym_identifier_list, - [34140] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(778), 1, - sym_identifier_list, - [34150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(844), 1, - sym_identifier_list, - [34160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(1218), 1, - sym_identifier_list, - [34170] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(854), 1, - sym_identifier_list, - [34180] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(841), 1, - sym_identifier_list, - [34190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(812), 1, - sym_identifier_list, - [34200] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2474), 1, - anon_sym_EQ_GT, - [34207] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - sym_identifier, - [34214] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2478), 1, - anon_sym_in, - [34221] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2480), 1, - anon_sym_from, - [34228] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2482), 1, - sym_identifier, - [34235] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2484), 1, - anon_sym_from, - [34242] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_in, - [34249] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, - anon_sym_EQ_GT, - [34256] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2490), 1, - anon_sym_in, - [34263] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2492), 1, - anon_sym_into, - [34270] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2494), 1, - anon_sym_in, - [34277] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2496), 1, - anon_sym_EQ_GT, - [34284] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2498), 1, - anon_sym_in, - [34291] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2500), 1, - anon_sym_in, - [34298] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2502), 1, - anon_sym_in, - [34305] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2504), 1, - anon_sym_from, - [34312] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 1, - anon_sym_from, - [34319] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2508), 1, - anon_sym_in, - [34326] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2510), 1, - anon_sym_in, - [34333] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2512), 1, - anon_sym_EQ_GT, - [34340] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2514), 1, - anon_sym_EQ_GT, - [34347] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2516), 1, - anon_sym_EQ_GT, - [34354] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2518), 1, - anon_sym_EQ_GT, - [34361] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2520), 1, - anon_sym_EQ_GT, - [34368] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2522), 1, - anon_sym_EQ_GT, - [34375] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2524), 1, - anon_sym_EQ_GT, - [34382] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2526), 1, - anon_sym_EQ_GT, - [34389] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2528), 1, - sym_identifier, - [34396] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - sym_identifier, - [34403] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - sym_identifier, - [34410] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2534), 1, - anon_sym_from, - [34417] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2536), 1, - sym_identifier, - [34424] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2538), 1, - sym_identifier, - [34431] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2540), 1, - anon_sym_into, - [34438] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2542), 1, - anon_sym_from, - [34445] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2544), 1, - anon_sym_in, - [34452] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2546), 1, - anon_sym_in, - [34459] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 1, - anon_sym_in, - [34466] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - anon_sym_EQ_GT, - [34473] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2552), 1, - anon_sym_EQ_GT, - [34480] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2554), 1, - anon_sym_in, - [34487] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2556), 1, - anon_sym_from, - [34494] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_from, - [34501] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2560), 1, - sym_identifier, - [34508] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2562), 1, - anon_sym_into, - [34515] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2564), 1, - anon_sym_in, - [34522] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2566), 1, - sym_identifier, - [34529] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2568), 1, - anon_sym_in, - [34536] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2570), 1, - anon_sym_in, - [34543] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2572), 1, - sym_identifier, - [34550] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2574), 1, - anon_sym_in, - [34557] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2576), 1, - anon_sym_from, - [34564] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2578), 1, - anon_sym_from, - [34571] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2580), 1, - anon_sym_in, - [34578] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2582), 1, - anon_sym_in, - [34585] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2584), 1, - anon_sym_in, - [34592] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2586), 1, - sym_identifier, - [34599] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2588), 1, - anon_sym_EQ_GT, - [34606] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2590), 1, - anon_sym_into, - [34613] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2592), 1, - anon_sym_in, - [34620] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, - anon_sym_into, - [34627] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2596), 1, - anon_sym_in, - [34634] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2598), 1, - anon_sym_in, - [34641] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2600), 1, - anon_sym_in, - [34648] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2602), 1, - anon_sym_in, - [34655] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2604), 1, - sym_identifier, - [34662] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, - sym_identifier, - [34669] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2608), 1, - anon_sym_in, - [34676] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2610), 1, - sym_identifier, - [34683] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2612), 1, - sym_identifier, - [34690] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2614), 1, - anon_sym_from, - [34697] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2616), 1, - anon_sym_into, - [34704] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2618), 1, - sym_identifier, - [34711] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2620), 1, - anon_sym_in, - [34718] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2622), 1, - anon_sym_in, - [34725] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2624), 1, - anon_sym_from, - [34732] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2626), 1, - sym_identifier, - [34739] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2628), 1, - anon_sym_in, - [34746] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2630), 1, - anon_sym_from, - [34753] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2632), 1, - anon_sym_from, - [34760] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2634), 1, - anon_sym_in, - [34767] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2636), 1, - sym_identifier, - [34774] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2638), 1, - anon_sym_in, - [34781] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2640), 1, + ACTIONS(3254), 5, anon_sym_EQ, - [34788] = 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3252), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [49521] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2642), 1, - anon_sym_in, - [34795] = 2, + sym__comment, + STATE(1407), 1, + sym_logic_operator, + STATE(1408), 1, + sym_math_operator, + ACTIONS(3250), 5, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3248), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [49557] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2644), 1, - anon_sym_in, - [34802] = 2, + sym__comment, + STATE(1407), 1, + sym_logic_operator, + STATE(1408), 1, + sym_math_operator, + ACTIONS(3264), 5, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3262), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [49593] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(2646), 1, + sym__comment, + ACTIONS(3242), 1, + anon_sym_EQ, + ACTIONS(3925), 1, + anon_sym_COLON, + STATE(1407), 1, + sym_logic_operator, + STATE(1408), 1, + sym_math_operator, + ACTIONS(73), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3240), 7, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [49639] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3246), 1, + anon_sym_EQ, + ACTIONS(3925), 1, + anon_sym_COLON, + STATE(1407), 1, + sym_logic_operator, + STATE(1408), 1, + sym_math_operator, + ACTIONS(73), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3244), 7, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [49685] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3927), 1, + anon_sym_DOT_DOT, + STATE(1407), 1, + sym_logic_operator, + STATE(1408), 1, + sym_math_operator, + ACTIONS(3250), 5, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3248), 16, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [49723] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1283), 1, + sym_math_operator, + STATE(1284), 1, + sym_logic_operator, + ACTIONS(3254), 5, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3252), 16, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [49758] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3242), 1, + anon_sym_EQ, + ACTIONS(3929), 1, + anon_sym_COLON, + STATE(1283), 1, + sym_math_operator, + STATE(1284), 1, + sym_logic_operator, + ACTIONS(73), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3240), 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [49803] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3246), 1, + anon_sym_EQ, + ACTIONS(3929), 1, + anon_sym_COLON, + STATE(1283), 1, + sym_math_operator, + STATE(1284), 1, + sym_logic_operator, + ACTIONS(73), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3244), 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [49848] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1283), 1, + sym_math_operator, + STATE(1284), 1, + sym_logic_operator, + ACTIONS(3264), 5, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3262), 16, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [49883] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3357), 5, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3355), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [49913] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3377), 5, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3375), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [49943] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3385), 5, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3383), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [49973] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3361), 5, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3359), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [50003] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3335), 5, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3333), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [50033] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3391), 5, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3389), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [50063] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3411), 5, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3409), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [50093] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3403), 5, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3401), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [50123] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3373), 5, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3371), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [50153] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2439), 1, + anon_sym_EQ, + STATE(541), 1, + sym_assignment_operator, + ACTIONS(2441), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2437), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2435), 14, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [50189] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3434), 5, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3432), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [50219] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3353), 5, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3351), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [50249] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3407), 5, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3405), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [50279] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3391), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3389), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_EQ_GT, - [34809] = 2, + [50308] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(2648), 1, + sym__comment, + ACTIONS(3931), 1, + anon_sym_COLON, + STATE(1353), 1, + sym_math_operator, + STATE(1354), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3240), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, sym_identifier, - [34816] = 2, + anon_sym_DOT_DOT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [50347] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(2650), 1, + sym__comment, + ACTIONS(3407), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3405), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, sym_identifier, - [34823] = 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [50376] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2652), 1, + sym__comment, + STATE(1353), 1, + sym_math_operator, + STATE(1354), 1, + sym_logic_operator, + ACTIONS(3254), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3252), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, sym_identifier, - [34830] = 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [50409] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2654), 1, + sym__comment, + STATE(1353), 1, + sym_math_operator, + STATE(1354), 1, + sym_logic_operator, + ACTIONS(3264), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3262), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [50442] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1353), 1, + sym_math_operator, + STATE(1354), 1, + sym_logic_operator, + ACTIONS(3250), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3248), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [50475] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3403), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3401), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [50504] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3385), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3383), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [50533] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3434), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3432), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [50562] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3933), 1, + anon_sym_DOT_DOT, + STATE(1353), 1, + sym_math_operator, + STATE(1354), 1, + sym_logic_operator, + ACTIONS(3250), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3248), 16, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [50597] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3335), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3333), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [50626] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3377), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3375), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [50655] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3373), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3371), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [50684] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3931), 1, + anon_sym_COLON, + STATE(1353), 1, + sym_math_operator, + STATE(1354), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3244), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_DOT_DOT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [50723] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3361), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3359), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [50752] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3357), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3355), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [50781] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3353), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3351), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [50810] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3411), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3409), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [50839] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1337), 1, + sym_logic_operator, + STATE(1338), 1, + sym_math_operator, + ACTIONS(3254), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3252), 16, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [50871] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3935), 1, + anon_sym_COLON, + STATE(1337), 1, + sym_logic_operator, + STATE(1338), 1, + sym_math_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3240), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [50909] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3935), 1, + anon_sym_COLON, + STATE(1337), 1, + sym_logic_operator, + STATE(1338), 1, + sym_math_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3281), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [50947] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3929), 1, + anon_sym_COLON, + ACTIONS(3937), 1, + anon_sym_SEMI, + STATE(1337), 1, + sym_logic_operator, + STATE(1338), 1, + sym_math_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3275), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + sym_identifier, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [50987] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1337), 1, + sym_logic_operator, + STATE(1338), 1, + sym_math_operator, + ACTIONS(3264), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3262), 16, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51019] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3935), 1, + anon_sym_COLON, + STATE(1337), 1, + sym_logic_operator, + STATE(1338), 1, + sym_math_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3244), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51057] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3939), 1, + anon_sym_COLON, + STATE(1180), 1, + sym_math_operator, + STATE(1181), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3240), 2, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51093] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3939), 1, + anon_sym_COLON, + STATE(1180), 1, + sym_math_operator, + STATE(1181), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3244), 2, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51129] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1257), 1, + sym_math_operator, + STATE(1258), 1, + sym_logic_operator, + ACTIONS(3250), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3248), 14, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [51159] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1180), 1, + sym_math_operator, + STATE(1181), 1, + sym_logic_operator, + ACTIONS(3250), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3248), 14, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51189] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3941), 1, + anon_sym_DOT_DOT, + STATE(1225), 1, + sym_math_operator, + STATE(1226), 1, + sym_logic_operator, + ACTIONS(3250), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3248), 13, + sym_identifier, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51221] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3943), 1, + anon_sym_COLON, + STATE(1225), 1, + sym_math_operator, + STATE(1226), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3240), 2, + sym_identifier, + anon_sym_DOT_DOT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51257] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1257), 1, + sym_math_operator, + STATE(1258), 1, + sym_logic_operator, + ACTIONS(3264), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3262), 14, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [51287] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3943), 1, + anon_sym_COLON, + STATE(1225), 1, + sym_math_operator, + STATE(1226), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3244), 2, + sym_identifier, + anon_sym_DOT_DOT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51323] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1225), 1, + sym_math_operator, + STATE(1226), 1, + sym_logic_operator, + ACTIONS(3250), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3248), 14, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51353] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3945), 1, + anon_sym_COLON, + STATE(1257), 1, + sym_math_operator, + STATE(1258), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3244), 2, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51389] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3945), 1, + anon_sym_COLON, + STATE(1257), 1, + sym_math_operator, + STATE(1258), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3240), 2, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51425] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1180), 1, + sym_math_operator, + STATE(1181), 1, + sym_logic_operator, + ACTIONS(3264), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3262), 14, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51455] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1180), 1, + sym_math_operator, + STATE(1181), 1, + sym_logic_operator, + ACTIONS(3254), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3252), 14, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51485] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3947), 1, + anon_sym_DOT_DOT, + STATE(1180), 1, + sym_math_operator, + STATE(1181), 1, + sym_logic_operator, + ACTIONS(3250), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3248), 13, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51517] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1225), 1, + sym_math_operator, + STATE(1226), 1, + sym_logic_operator, + ACTIONS(3264), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3262), 14, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51547] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1225), 1, + sym_math_operator, + STATE(1226), 1, + sym_logic_operator, + ACTIONS(3254), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3252), 14, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51577] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3949), 1, + anon_sym_DOT_DOT, + STATE(1257), 1, + sym_math_operator, + STATE(1258), 1, + sym_logic_operator, + ACTIONS(3250), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3248), 13, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [51609] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1257), 1, + sym_math_operator, + STATE(1258), 1, + sym_logic_operator, + ACTIONS(3254), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3252), 14, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [51639] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(3953), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51674] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(3264), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3262), 13, + sym_identifier, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51703] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(3955), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51738] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(3957), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51773] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(3959), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51808] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3961), 1, + sym_identifier, + ACTIONS(3963), 1, + anon_sym_COLON, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51843] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3963), 1, + anon_sym_COLON, + ACTIONS(3965), 1, + sym_identifier, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51878] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3963), 1, + anon_sym_COLON, + ACTIONS(3967), 1, + sym_identifier, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51913] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3963), 1, + anon_sym_COLON, + ACTIONS(3969), 1, + sym_identifier, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51948] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3963), 1, + anon_sym_COLON, + ACTIONS(3971), 1, + sym_identifier, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [51983] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3963), 1, + anon_sym_COLON, + ACTIONS(3973), 1, + sym_identifier, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52018] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(3975), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52053] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(3977), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52088] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3963), 1, + anon_sym_COLON, + ACTIONS(3979), 1, + sym_identifier, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52123] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3963), 1, + anon_sym_COLON, + ACTIONS(3981), 1, + sym_identifier, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52158] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(3983), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52193] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(3985), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52228] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(3987), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52263] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(3989), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52298] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3963), 1, + anon_sym_COLON, + ACTIONS(3991), 1, + sym_identifier, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52333] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3963), 1, + anon_sym_COLON, + ACTIONS(3993), 1, + sym_identifier, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52368] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(3995), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52403] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3963), 1, + anon_sym_COLON, + ACTIONS(3997), 1, + sym_identifier, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52438] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(3264), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3262), 13, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [52467] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3963), 1, + anon_sym_COLON, + ACTIONS(3999), 1, + sym_identifier, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52502] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3963), 1, + anon_sym_COLON, + ACTIONS(4001), 1, + sym_identifier, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52537] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(4003), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52572] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(3254), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3252), 13, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [52601] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3963), 1, + anon_sym_COLON, + ACTIONS(4005), 1, + sym_identifier, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52636] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(4007), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52671] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(4009), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52706] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3963), 1, + anon_sym_COLON, + ACTIONS(4011), 1, + sym_identifier, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52741] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(4013), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52776] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(4015), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52811] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(4017), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52846] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3963), 1, + anon_sym_COLON, + ACTIONS(4019), 1, + sym_identifier, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52881] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(4021), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52916] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1390), 1, + sym_math_operator, + STATE(1391), 1, + sym_logic_operator, + ACTIONS(3264), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3262), 13, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52945] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3963), 1, + anon_sym_COLON, + ACTIONS(4023), 1, + sym_identifier, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [52980] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3240), 1, + anon_sym_RPAREN, + ACTIONS(4025), 1, + anon_sym_COLON, + STATE(1390), 1, + sym_math_operator, + STATE(1391), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53015] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1390), 1, + sym_math_operator, + STATE(1391), 1, + sym_logic_operator, + ACTIONS(3254), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3252), 13, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53044] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3963), 1, + anon_sym_COLON, + ACTIONS(4027), 1, + sym_identifier, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53079] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3244), 1, + anon_sym_RPAREN, + ACTIONS(4025), 1, + anon_sym_COLON, + STATE(1390), 1, + sym_math_operator, + STATE(1391), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53114] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3240), 1, + anon_sym_EQ_GT, + ACTIONS(3951), 1, + anon_sym_COLON, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53149] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3244), 1, + anon_sym_EQ_GT, + ACTIONS(3951), 1, + anon_sym_COLON, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53184] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(4029), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53219] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(3254), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3252), 13, + sym_identifier, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53248] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3240), 1, + sym_identifier, + ACTIONS(3963), 1, + anon_sym_COLON, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53283] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3244), 1, + sym_identifier, + ACTIONS(3963), 1, + anon_sym_COLON, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53318] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(4031), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53353] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3963), 1, + anon_sym_COLON, + ACTIONS(4033), 1, + sym_identifier, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53388] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3963), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + sym_identifier, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53423] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(4037), 1, + anon_sym_EQ_GT, + STATE(1486), 1, + sym_math_operator, + STATE(1488), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53458] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3963), 1, + anon_sym_COLON, + ACTIONS(4039), 1, + sym_identifier, + STATE(1454), 1, + sym_math_operator, + STATE(1457), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53493] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4025), 1, + anon_sym_COLON, + STATE(1390), 1, + sym_math_operator, + STATE(1391), 1, + sym_logic_operator, + ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(75), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(77), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53525] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4041), 1, + anon_sym_RPAREN, + ACTIONS(3403), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3401), 12, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53550] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4043), 1, + anon_sym_RPAREN, + ACTIONS(3403), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3401), 12, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53575] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4045), 1, + anon_sym_RPAREN, + ACTIONS(3403), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3401), 12, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53600] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4047), 1, + anon_sym_RPAREN, + ACTIONS(3403), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3401), 12, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53625] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4049), 1, + anon_sym_RPAREN, + ACTIONS(3403), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3401), 12, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53650] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4051), 1, + anon_sym_RPAREN, + ACTIONS(3403), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3401), 12, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53675] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4053), 1, + anon_sym_RPAREN, + ACTIONS(3403), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3401), 12, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53700] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4055), 1, + anon_sym_RPAREN, + ACTIONS(3403), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3401), 12, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [53725] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3221), 1, + sym_identifier, + ACTIONS(4057), 1, + anon_sym_elseif, + ACTIONS(4059), 1, + anon_sym_else, + STATE(1657), 1, + sym_else, + STATE(1639), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(3219), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [53750] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3231), 1, + sym_identifier, + ACTIONS(4057), 1, + anon_sym_elseif, + ACTIONS(4059), 1, + anon_sym_else, + STATE(1644), 1, + sym_else, + STATE(1640), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(3229), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [53775] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4061), 1, + anon_sym_elseif, + ACTIONS(3270), 2, + sym_identifier, + anon_sym_else, + STATE(1640), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(3268), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [53795] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3425), 2, + sym_identifier, + anon_sym_else, + ACTIONS(3423), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_elseif, + [53809] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3434), 2, + sym_identifier, + anon_sym_else, + ACTIONS(3432), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_elseif, + [53823] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3399), 2, + sym_identifier, + anon_sym_else, + ACTIONS(3397), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_elseif, + [53837] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3325), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [53847] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3393), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [53857] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3363), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [53867] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3337), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [53877] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3341), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [53887] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3303), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [53897] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3937), 1, + anon_sym_SEMI, + ACTIONS(3275), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + sym_identifier, + [53909] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3296), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [53919] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3379), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [53929] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3317), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [53939] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3307), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [53949] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3367), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [53959] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3415), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [53969] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3229), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [53979] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3419), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [53989] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3321), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + [53999] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3077), 1, + anon_sym_RBRACE, + ACTIONS(4064), 1, + sym_identifier, + STATE(1663), 1, + aux_sym_map_repeat1, + [54012] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4064), 1, + sym_identifier, + ACTIONS(4066), 1, + anon_sym_RBRACE, + STATE(1680), 1, + aux_sym_map_repeat1, + [54025] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4068), 1, + sym_identifier, + ACTIONS(4070), 1, + anon_sym_PIPE, + STATE(1683), 1, + aux_sym_identifier_list_repeat1, + [54038] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4064), 1, + sym_identifier, + ACTIONS(4072), 1, + anon_sym_RBRACE, + STATE(1680), 1, + aux_sym_map_repeat1, + [54051] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4068), 1, + sym_identifier, + ACTIONS(4074), 1, + anon_sym_PIPE, + STATE(1676), 1, + aux_sym_identifier_list_repeat1, + [54064] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4078), 1, + anon_sym_COMMA, + ACTIONS(4076), 2, + anon_sym_RBRACE, + sym_identifier, + [54075] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4064), 1, + sym_identifier, + ACTIONS(4080), 1, + anon_sym_RBRACE, + STATE(1672), 1, + aux_sym_map_repeat1, + [54088] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4064), 1, + sym_identifier, + ACTIONS(4082), 1, + anon_sym_RBRACE, + STATE(1669), 1, + aux_sym_map_repeat1, + [54101] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3079), 1, + anon_sym_RBRACE, + ACTIONS(4064), 1, + sym_identifier, + STATE(1679), 1, + aux_sym_map_repeat1, + [54114] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4064), 1, + sym_identifier, + ACTIONS(4084), 1, + anon_sym_RBRACE, + STATE(1680), 1, + aux_sym_map_repeat1, + [54127] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3073), 1, + anon_sym_RBRACE, + ACTIONS(4064), 1, + sym_identifier, + STATE(1677), 1, + aux_sym_map_repeat1, + [54140] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4064), 1, + sym_identifier, + ACTIONS(4086), 1, + anon_sym_RBRACE, + STATE(1674), 1, + aux_sym_map_repeat1, + [54153] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4064), 1, + sym_identifier, + ACTIONS(4088), 1, + anon_sym_RBRACE, + STATE(1680), 1, + aux_sym_map_repeat1, + [54166] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4092), 1, + anon_sym_COMMA, + ACTIONS(4090), 2, + sym_identifier, + anon_sym_PIPE, + [54177] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4064), 1, + sym_identifier, + ACTIONS(4094), 1, + anon_sym_RBRACE, + STATE(1680), 1, + aux_sym_map_repeat1, + [54190] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4064), 1, + sym_identifier, + ACTIONS(4096), 1, + anon_sym_RBRACE, + STATE(1680), 1, + aux_sym_map_repeat1, + [54203] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4068), 1, + sym_identifier, + ACTIONS(4098), 1, + anon_sym_PIPE, + STATE(1683), 1, + aux_sym_identifier_list_repeat1, + [54216] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4064), 1, + sym_identifier, + ACTIONS(4100), 1, + anon_sym_RBRACE, + STATE(1680), 1, + aux_sym_map_repeat1, + [54229] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3075), 1, + anon_sym_RBRACE, + ACTIONS(4064), 1, + sym_identifier, + STATE(1675), 1, + aux_sym_map_repeat1, + [54242] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4064), 1, + sym_identifier, + ACTIONS(4102), 1, + anon_sym_RBRACE, + STATE(1680), 1, + aux_sym_map_repeat1, + [54255] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4104), 1, + sym_identifier, + ACTIONS(4107), 1, + anon_sym_RBRACE, + STATE(1680), 1, + aux_sym_map_repeat1, + [54268] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4068), 1, + sym_identifier, + ACTIONS(4109), 1, + anon_sym_PIPE, + STATE(1662), 1, + aux_sym_identifier_list_repeat1, + [54281] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4064), 1, + sym_identifier, + ACTIONS(4111), 1, + anon_sym_RBRACE, + STATE(1661), 1, + aux_sym_map_repeat1, + [54294] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4113), 1, + sym_identifier, + ACTIONS(4116), 1, + anon_sym_PIPE, + STATE(1683), 1, + aux_sym_identifier_list_repeat1, + [54307] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1935), 1, + sym_identifier_list, + [54317] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(2025), 1, + sym_identifier_list, + [54327] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1361), 1, + sym_identifier_list, + [54337] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1276), 1, + sym_identifier_list, + [54347] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1887), 1, + sym_identifier_list, + [54357] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1332), 1, + sym_identifier_list, + [54367] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1404), 1, + sym_identifier_list, + [54377] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1282), 1, + sym_identifier_list, + [54387] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1375), 1, + sym_identifier_list, + [54397] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1352), 1, + sym_identifier_list, + [54407] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1288), 1, + sym_identifier_list, + [54417] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1875), 1, + sym_identifier_list, + [54427] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1350), 1, + sym_identifier_list, + [54437] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1220), 1, + sym_identifier_list, + [54447] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1341), 1, + sym_identifier_list, + [54457] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(2023), 1, + sym_identifier_list, + [54467] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1991), 1, + sym_identifier_list, + [54477] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4120), 2, + anon_sym_RBRACE, + sym_identifier, + [54485] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1914), 1, + sym_identifier_list, + [54495] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1858), 1, + sym_identifier_list, + [54505] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3911), 2, + anon_sym_EQ_GT, anon_sym_from, - [34837] = 2, + [54513] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(2656), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1179), 1, + sym_identifier_list, + [54523] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1140), 1, + sym_identifier_list, + [54533] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1863), 1, + sym_identifier_list, + [54543] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1483), 1, + sym_identifier_list, + [54553] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1314), 1, + sym_identifier_list, + [54563] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1900), 1, + sym_identifier_list, + [54573] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1396), 1, + sym_identifier_list, + [54583] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1883), 1, + sym_identifier_list, + [54593] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1386), 1, + sym_identifier_list, + [54603] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1224), 1, + sym_identifier_list, + [54613] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1304), 1, + sym_identifier_list, + [54623] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1409), 1, + sym_identifier_list, + [54633] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1388), 1, + sym_identifier_list, + [54643] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1262), 1, + sym_identifier_list, + [54653] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1317), 1, + sym_identifier_list, + [54663] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1241), 1, + sym_identifier_list, + [54673] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1451), 1, + sym_identifier_list, + [54683] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1749), 1, + sym_identifier_list, + [54693] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(2005), 1, + sym_identifier_list, + [54703] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1148), 1, + sym_identifier_list, + [54713] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1351), 1, + sym_identifier_list, + [54723] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1923), 1, + sym_identifier_list, + [54733] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1955), 1, + sym_identifier_list, + [54743] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1328), 1, + sym_identifier_list, + [54753] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1820), 1, + sym_identifier_list, + [54763] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1807), 1, + sym_identifier_list, + [54773] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4116), 2, sym_identifier, - [34844] = 2, + anon_sym_PIPE, + [54781] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(2658), 1, - sym_identifier, - [34851] = 2, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(2001), 1, + sym_identifier_list, + [54791] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(2660), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1832), 1, + sym_identifier_list, + [54801] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1256), 1, + sym_identifier_list, + [54811] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(2008), 1, + sym_identifier_list, + [54821] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1468), 1, + sym_identifier_list, + [54831] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3923), 2, anon_sym_EQ_GT, - [34858] = 2, + anon_sym_from, + [54839] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(2662), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1197), 1, + sym_identifier_list, + [54849] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1856), 1, + sym_identifier_list, + [54859] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4118), 1, + anon_sym_PIPE, + STATE(1459), 1, + sym_identifier_list, + [54869] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4122), 1, + anon_sym_EQ_GT, + [54876] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4124), 1, + sym_identifier, + [54883] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4126), 1, anon_sym_in, - [34865] = 2, + [54890] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2664), 1, + sym__comment, + ACTIONS(4128), 1, anon_sym_in, - [34872] = 2, + [54897] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2666), 1, + sym__comment, + ACTIONS(4130), 1, + anon_sym_in, + [54904] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4132), 1, + anon_sym_from, + [54911] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4134), 1, + anon_sym_in, + [54918] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4136), 1, + anon_sym_in, + [54925] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4138), 1, + anon_sym_from, + [54932] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4140), 1, + sym_identifier, + [54939] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4142), 1, + anon_sym_into, + [54946] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4144), 1, + anon_sym_EQ_GT, + [54953] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4146), 1, + anon_sym_in, + [54960] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4148), 1, + anon_sym_in, + [54967] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4150), 1, + anon_sym_in, + [54974] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4152), 1, + anon_sym_from, + [54981] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4154), 1, + anon_sym_in, + [54988] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4156), 1, + anon_sym_in, + [54995] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4158), 1, + anon_sym_in, + [55002] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4160), 1, + anon_sym_into, + [55009] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4162), 1, + anon_sym_into, + [55016] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4164), 1, + anon_sym_EQ_GT, + [55023] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4166), 1, + anon_sym_in, + [55030] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4168), 1, + anon_sym_in, + [55037] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4170), 1, + anon_sym_in, + [55044] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4172), 1, + anon_sym_in, + [55051] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4174), 1, + anon_sym_from, + [55058] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4176), 1, + anon_sym_in, + [55065] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4178), 1, + anon_sym_in, + [55072] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4180), 1, + anon_sym_EQ_GT, + [55079] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4182), 1, + anon_sym_in, + [55086] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4184), 1, + anon_sym_into, + [55093] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4186), 1, + anon_sym_EQ_GT, + [55100] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4188), 1, + anon_sym_in, + [55107] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4190), 1, + anon_sym_in, + [55114] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4192), 1, + anon_sym_EQ_GT, + [55121] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4194), 1, + anon_sym_in, + [55128] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4196), 1, + anon_sym_from, + [55135] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4198), 1, + anon_sym_in, + [55142] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4200), 1, + anon_sym_in, + [55149] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4202), 1, + anon_sym_from, + [55156] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4204), 1, + anon_sym_in, + [55163] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4206), 1, + anon_sym_into, + [55170] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4208), 1, + anon_sym_EQ_GT, + [55177] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4210), 1, + anon_sym_in, + [55184] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4212), 1, + anon_sym_in, + [55191] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4214), 1, + anon_sym_in, + [55198] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4216), 1, + anon_sym_in, + [55205] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4218), 1, + anon_sym_from, + [55212] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4220), 1, + anon_sym_in, + [55219] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4222), 1, + anon_sym_in, + [55226] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4224), 1, + anon_sym_in, + [55233] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4226), 1, + anon_sym_EQ_GT, + [55240] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4228), 1, + anon_sym_EQ_GT, + [55247] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4230), 1, + anon_sym_in, + [55254] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4232), 1, + anon_sym_in, + [55261] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4234), 1, + sym_identifier, + [55268] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4236), 1, + anon_sym_in, + [55275] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4238), 1, + anon_sym_from, + [55282] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4240), 1, + anon_sym_in, + [55289] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4242), 1, + anon_sym_in, + [55296] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4244), 1, + anon_sym_into, + [55303] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4246), 1, + anon_sym_in, + [55310] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4248), 1, + anon_sym_EQ_GT, + [55317] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4250), 1, + anon_sym_in, + [55324] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4252), 1, + anon_sym_in, + [55331] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4254), 1, + anon_sym_from, + [55338] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4256), 1, + anon_sym_in, + [55345] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4258), 1, + anon_sym_from, + [55352] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4260), 1, + anon_sym_in, + [55359] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4262), 1, + anon_sym_in, + [55366] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4264), 1, + sym_identifier, + [55373] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4266), 1, + anon_sym_EQ_GT, + [55380] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4268), 1, + sym_identifier, + [55387] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4270), 1, + sym_identifier, + [55394] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4272), 1, + sym_identifier, + [55401] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4274), 1, + anon_sym_EQ_GT, + [55408] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4276), 1, + sym_identifier, + [55415] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4278), 1, + sym_identifier, + [55422] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4280), 1, + anon_sym_from, + [55429] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4282), 1, + anon_sym_into, + [55436] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4284), 1, + anon_sym_from, + [55443] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4286), 1, + anon_sym_EQ_GT, + [55450] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4288), 1, + anon_sym_in, + [55457] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4290), 1, + anon_sym_in, + [55464] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4292), 1, + anon_sym_in, + [55471] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4294), 1, + anon_sym_in, + [55478] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4296), 1, + anon_sym_in, + [55485] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4298), 1, + anon_sym_in, + [55492] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4300), 1, + anon_sym_in, + [55499] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4302), 1, + anon_sym_from, + [55506] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4304), 1, + anon_sym_from, + [55513] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4306), 1, + sym_identifier, + [55520] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4308), 1, + anon_sym_in, + [55527] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4310), 1, + anon_sym_in, + [55534] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4312), 1, + sym_identifier, + [55541] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4314), 1, + anon_sym_EQ_GT, + [55548] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4316), 1, + anon_sym_in, + [55555] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4318), 1, + sym_identifier, + [55562] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4320), 1, + anon_sym_into, + [55569] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4322), 1, + anon_sym_EQ_GT, + [55576] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4324), 1, + anon_sym_in, + [55583] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4326), 1, + anon_sym_EQ, + [55590] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4328), 1, + anon_sym_in, + [55597] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4330), 1, + anon_sym_in, + [55604] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4332), 1, + anon_sym_in, + [55611] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4334), 1, + anon_sym_from, + [55618] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4336), 1, + anon_sym_in, + [55625] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4338), 1, + anon_sym_in, + [55632] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4340), 1, + anon_sym_in, + [55639] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4342), 1, + anon_sym_EQ_GT, + [55646] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4344), 1, + anon_sym_into, + [55653] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4346), 1, + sym_identifier, + [55660] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4348), 1, + sym_identifier, + [55667] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4350), 1, + sym_identifier, + [55674] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4352), 1, + anon_sym_from, + [55681] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4354), 1, anon_sym_to, - [34879] = 2, + [55688] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2668), 1, - anon_sym_in, - [34886] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2670), 1, - anon_sym_in, - [34893] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2672), 1, + sym__comment, + ACTIONS(4356), 1, anon_sym_from, - [34900] = 2, + [55695] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2674), 1, - anon_sym_in, - [34907] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2676), 1, - sym_identifier, - [34914] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2678), 1, - anon_sym_in, - [34921] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2680), 1, + sym__comment, + ACTIONS(4358), 1, anon_sym_from, - [34928] = 2, + [55702] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2682), 1, - anon_sym_in, - [34935] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - anon_sym_from, - [34942] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2686), 1, - anon_sym_in, - [34949] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2688), 1, - anon_sym_in, - [34956] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2690), 1, - sym_identifier, - [34963] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2692), 1, - sym_identifier, - [34970] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2694), 1, - sym_identifier, - [34977] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2696), 1, - anon_sym_in, - [34984] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2698), 1, - sym_identifier, - [34991] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2700), 1, - anon_sym_in, - [34998] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2702), 1, - anon_sym_in, - [35005] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2704), 1, - anon_sym_in, - [35012] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2706), 1, - sym_identifier, - [35019] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2708), 1, - anon_sym_from, - [35026] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2710), 1, - anon_sym_in, - [35033] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2712), 1, - anon_sym_from, - [35040] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2714), 1, - anon_sym_in, - [35047] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2716), 1, - sym_identifier, - [35054] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_in, - [35061] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2720), 1, - sym_identifier, - [35068] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2722), 1, - sym_identifier, - [35075] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2724), 1, - anon_sym_from, - [35082] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2726), 1, - sym_identifier, - [35089] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2728), 1, - sym_identifier, - [35096] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2730), 1, - anon_sym_in, - [35103] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_in, - [35110] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2734), 1, - anon_sym_from, - [35117] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2736), 1, - anon_sym_in, - [35124] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2738), 1, - anon_sym_in, - [35131] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2740), 1, - anon_sym_from, - [35138] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2742), 1, - anon_sym_in, - [35145] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2744), 1, - sym_identifier, - [35152] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2746), 1, - sym_identifier, - [35159] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2748), 1, - sym_identifier, - [35166] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2750), 1, - sym_identifier, - [35173] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, + sym__comment, + ACTIONS(4360), 1, anon_sym_EQ_GT, - [35180] = 2, + [55709] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2754), 1, - sym_identifier, - [35187] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2756), 1, - sym_identifier, - [35194] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2758), 1, + sym__comment, + ACTIONS(4362), 1, anon_sym_in, - [35201] = 2, + [55716] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2760), 1, + sym__comment, + ACTIONS(4364), 1, anon_sym_in, - [35208] = 2, + [55723] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2762), 1, + sym__comment, + ACTIONS(4366), 1, + anon_sym_from, + [55730] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4368), 1, + anon_sym_in, + [55737] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4370), 1, + anon_sym_in, + [55744] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4372), 1, + anon_sym_EQ_GT, + [55751] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4374), 1, + sym_identifier, + [55758] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4376), 1, + anon_sym_from, + [55765] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4378), 1, + anon_sym_into, + [55772] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4380), 1, + sym_identifier, + [55779] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4382), 1, + sym_identifier, + [55786] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4384), 1, + anon_sym_in, + [55793] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4386), 1, + sym_identifier, + [55800] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4388), 1, + sym_identifier, + [55807] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4390), 1, + anon_sym_from, + [55814] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4392), 1, + anon_sym_into, + [55821] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4394), 1, + anon_sym_in, + [55828] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4396), 1, + anon_sym_in, + [55835] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4398), 1, + anon_sym_in, + [55842] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4400), 1, + sym_identifier, + [55849] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4402), 1, + anon_sym_in, + [55856] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4404), 1, + anon_sym_from, + [55863] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4406), 1, + anon_sym_from, + [55870] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4408), 1, + anon_sym_in, + [55877] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4410), 1, + sym_identifier, + [55884] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4412), 1, + anon_sym_in, + [55891] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4414), 1, + anon_sym_from, + [55898] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4416), 1, + anon_sym_from, + [55905] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4418), 1, + anon_sym_in, + [55912] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4420), 1, + anon_sym_EQ_GT, + [55919] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4422), 1, ts_builtin_sym_end, - [35215] = 2, + [55926] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2764), 1, + sym__comment, + ACTIONS(4424), 1, + anon_sym_in, + [55933] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4426), 1, + anon_sym_in, + [55940] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4428), 1, + anon_sym_in, + [55947] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4430), 1, + sym_identifier, + [55954] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4432), 1, + sym_identifier, + [55961] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4434), 1, + anon_sym_in, + [55968] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4436), 1, + sym_identifier, + [55975] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4438), 1, + sym_identifier, + [55982] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4440), 1, anon_sym_from, - [35222] = 2, + [55989] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2766), 1, + sym__comment, + ACTIONS(4442), 1, anon_sym_in, - [35229] = 2, + [55996] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2768), 1, + sym__comment, + ACTIONS(4444), 1, + anon_sym_in, + [56003] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4446), 1, + anon_sym_into, + [56010] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4448), 1, + anon_sym_into, + [56017] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4450), 1, + anon_sym_in, + [56024] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4452), 1, anon_sym_from, - [35236] = 2, + [56031] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2770), 1, + sym__comment, + ACTIONS(4454), 1, anon_sym_in, - [35243] = 2, + [56038] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2772), 1, + sym__comment, + ACTIONS(4456), 1, sym_identifier, - [35250] = 2, + [56045] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2774), 1, + sym__comment, + ACTIONS(4458), 1, anon_sym_in, - [35257] = 2, + [56052] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2776), 1, - anon_sym_in, - [35264] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2778), 1, - sym_identifier, - [35271] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2780), 1, - sym_identifier, - [35278] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2782), 1, - anon_sym_in, - [35285] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2784), 1, - sym_identifier, - [35292] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2786), 1, - sym_identifier, - [35299] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2788), 1, - anon_sym_in, - [35306] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2790), 1, - anon_sym_into, - [35313] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2792), 1, + sym__comment, + ACTIONS(4460), 1, anon_sym_EQ_GT, - [35320] = 2, + [56059] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2794), 1, - anon_sym_to, - [35327] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2796), 1, + sym__comment, + ACTIONS(4462), 1, sym_identifier, - [35334] = 2, + [56066] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2798), 1, - anon_sym_into, - [35341] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2800), 1, + sym__comment, + ACTIONS(4464), 1, sym_identifier, - [35348] = 2, + [56073] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2802), 1, + sym__comment, + ACTIONS(4466), 1, sym_identifier, - [35355] = 2, + [56080] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - anon_sym_into, - [35362] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2806), 1, - sym_identifier, - [35369] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2808), 1, - sym_identifier, - [35376] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2810), 1, - anon_sym_EQ_GT, - [35383] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2812), 1, - anon_sym_in, - [35390] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2814), 1, - anon_sym_to, - [35397] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2816), 1, - sym_identifier, - [35404] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2818), 1, - sym_identifier, - [35411] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2820), 1, - sym_identifier, - [35418] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2822), 1, - sym_identifier, - [35425] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2824), 1, - sym_identifier, - [35432] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2826), 1, - sym_identifier, - [35439] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2828), 1, - anon_sym_in, - [35446] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2830), 1, - anon_sym_to, - [35453] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2832), 1, - sym_identifier, - [35460] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2834), 1, - sym_identifier, - [35467] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2836), 1, - sym_identifier, - [35474] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2838), 1, - sym_identifier, - [35481] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2840), 1, - sym_identifier, - [35488] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2842), 1, - sym_identifier, - [35495] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2844), 1, + sym__comment, + ACTIONS(4468), 1, anon_sym_from, - [35502] = 2, + [56087] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2846), 1, - anon_sym_to, - [35509] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2848), 1, + sym__comment, + ACTIONS(4470), 1, sym_identifier, - [35516] = 2, + [56094] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2850), 1, + sym__comment, + ACTIONS(4472), 1, sym_identifier, - [35523] = 2, + [56101] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2852), 1, - sym_identifier, - [35530] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2854), 1, - sym_identifier, - [35537] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2856), 1, - sym_identifier, - [35544] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2858), 1, - sym_identifier, - [35551] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2860), 1, - anon_sym_in, - [35558] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2862), 1, - anon_sym_to, - [35565] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2864), 1, - sym_identifier, - [35572] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2866), 1, - sym_identifier, - [35579] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2868), 1, - sym_identifier, - [35586] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2870), 1, - sym_identifier, - [35593] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2872), 1, - sym_identifier, - [35600] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2874), 1, - sym_identifier, - [35607] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2876), 1, + sym__comment, + ACTIONS(4474), 1, anon_sym_EQ_GT, - [35614] = 2, + [56108] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2878), 1, + sym__comment, + ACTIONS(4476), 1, + sym_identifier, + [56115] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4478), 1, + sym_identifier, + [56122] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + [56129] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4482), 1, + sym_identifier, + [56136] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4484), 1, + anon_sym_EQ_GT, + [56143] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4486), 1, + anon_sym_from, + [56150] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4488), 1, + anon_sym_in, + [56157] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4490), 1, + anon_sym_in, + [56164] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4492), 1, + anon_sym_EQ_GT, + [56171] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4494), 1, + sym_identifier, + [56178] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4496), 1, + anon_sym_in, + [56185] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4498), 1, + anon_sym_from, + [56192] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4500), 1, + anon_sym_in, + [56199] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4502), 1, + sym_identifier, + [56206] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4504), 1, + anon_sym_in, + [56213] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4506), 1, + sym_identifier, + [56220] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4508), 1, + sym_identifier, + [56227] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4510), 1, + anon_sym_from, + [56234] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4512), 1, + sym_identifier, + [56241] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4514), 1, + sym_identifier, + [56248] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4516), 1, + anon_sym_in, + [56255] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4518), 1, + anon_sym_in, + [56262] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4520), 1, + sym_identifier, + [56269] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4522), 1, + anon_sym_in, + [56276] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4524), 1, + anon_sym_in, + [56283] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4526), 1, + anon_sym_from, + [56290] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4528), 1, + anon_sym_in, + [56297] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4530), 1, + sym_identifier, + [56304] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4532), 1, + anon_sym_in, + [56311] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4534), 1, + sym_identifier, + [56318] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4536), 1, + sym_identifier, + [56325] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4538), 1, + anon_sym_into, + [56332] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4540), 1, + sym_identifier, + [56339] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4542), 1, + sym_identifier, + [56346] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4544), 1, + anon_sym_in, + [56353] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4546), 1, + anon_sym_in, + [56360] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4548), 1, + anon_sym_in, + [56367] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4550), 1, + anon_sym_from, + [56374] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4552), 1, + anon_sym_in, + [56381] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4554), 1, + anon_sym_from, + [56388] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4556), 1, + anon_sym_in, + [56395] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4558), 1, + sym_identifier, + [56402] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4560), 1, + anon_sym_in, + [56409] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4562), 1, + sym_identifier, + [56416] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4564), 1, + sym_identifier, + [56423] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4566), 1, + anon_sym_from, + [56430] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4568), 1, + sym_identifier, + [56437] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4570), 1, + sym_identifier, + [56444] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4572), 1, + anon_sym_in, + [56451] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4574), 1, + sym_identifier, + [56458] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4576), 1, + sym_identifier, + [56465] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4578), 1, + sym_identifier, + [56472] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4580), 1, + sym_identifier, + [56479] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4582), 1, + sym_identifier, + [56486] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4584), 1, + sym_identifier, + [56493] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4586), 1, + anon_sym_in, + [56500] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4588), 1, + sym_identifier, + [56507] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4590), 1, + sym_identifier, + [56514] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4592), 1, + sym_identifier, + [56521] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4594), 1, + anon_sym_in, + [56528] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4596), 1, + sym_identifier, + [56535] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4598), 1, + sym_identifier, + [56542] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4600), 1, + anon_sym_EQ_GT, + [56549] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4602), 1, + sym_identifier, + [56556] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4604), 1, + sym_identifier, + [56563] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4606), 1, + sym_identifier, + [56570] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4608), 1, + anon_sym_EQ_GT, + [56577] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4610), 1, + sym_identifier, + [56584] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4612), 1, + sym_identifier, + [56591] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4614), 1, + anon_sym_into, + [56598] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4616), 1, + sym_identifier, + [56605] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4618), 1, + sym_identifier, + [56612] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4620), 1, + sym_identifier, + [56619] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4622), 1, + anon_sym_from, + [56626] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4624), 1, + sym_identifier, + [56633] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4626), 1, + sym_identifier, + [56640] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4628), 1, + sym_identifier, + [56647] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4630), 1, + sym_identifier, + [56654] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4632), 1, + sym_identifier, + [56661] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4634), 1, + sym_identifier, + [56668] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4636), 1, + anon_sym_EQ_GT, + [56675] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4638), 1, + sym_identifier, + [56682] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4640), 1, + sym_identifier, + [56689] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4642), 1, + anon_sym_from, + [56696] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4644), 1, + sym_identifier, + [56703] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4646), 1, + sym_identifier, + [56710] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4648), 1, + sym_identifier, + [56717] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4650), 1, + anon_sym_from, + [56724] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4652), 1, + sym_identifier, + [56731] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4654), 1, + sym_identifier, + [56738] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4656), 1, + anon_sym_from, + [56745] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4658), 1, + sym_identifier, + [56752] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4660), 1, + sym_identifier, + [56759] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4662), 1, + sym_identifier, + [56766] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4664), 1, + sym_identifier, + [56773] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4666), 1, + sym_identifier, + [56780] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4668), 1, + sym_identifier, + [56787] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4670), 1, + anon_sym_EQ_GT, + [56794] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4672), 1, + sym_identifier, + [56801] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4674), 1, + sym_identifier, + [56808] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4676), 1, + sym_identifier, + [56815] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4678), 1, + sym_identifier, + [56822] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4680), 1, + anon_sym_EQ_GT, + [56829] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4682), 1, + sym_identifier, + [56836] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4684), 1, + sym_identifier, + [56843] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4686), 1, + anon_sym_from, + [56850] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4688), 1, + anon_sym_into, + [56857] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4690), 1, + anon_sym_from, + [56864] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4692), 1, anon_sym_to, - [35621] = 2, + [56871] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2880), 1, + sym__comment, + ACTIONS(4694), 1, sym_identifier, - [35628] = 2, + [56878] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2882), 1, + sym__comment, + ACTIONS(4696), 1, sym_identifier, - [35635] = 2, + [56885] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2884), 1, + sym__comment, + ACTIONS(4698), 1, + sym_identifier, + [56892] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4700), 1, + anon_sym_EQ_GT, + [56899] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4702), 1, + sym_identifier, + [56906] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4704), 1, + sym_identifier, + [56913] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4706), 1, + sym_identifier, + [56920] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4708), 1, + anon_sym_into, + [56927] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4710), 1, anon_sym_to, - [35642] = 2, + [56934] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2886), 1, + sym__comment, + ACTIONS(4712), 1, sym_identifier, - [35649] = 2, + [56941] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2888), 1, + sym__comment, + ACTIONS(4714), 1, + sym_identifier, + [56948] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4716), 1, + sym_identifier, + [56955] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4718), 1, + anon_sym_in, + [56962] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4720), 1, + sym_identifier, + [56969] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4722), 1, + sym_identifier, + [56976] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4724), 1, + anon_sym_EQ_GT, + [56983] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4726), 1, anon_sym_to, - [35656] = 2, + [56990] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2890), 1, + sym__comment, + ACTIONS(4728), 1, sym_identifier, - [35663] = 2, + [56997] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2892), 1, + sym__comment, + ACTIONS(4730), 1, + sym_identifier, + [57004] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4732), 1, + sym_identifier, + [57011] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4734), 1, + anon_sym_in, + [57018] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4736), 1, + sym_identifier, + [57025] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4738), 1, + sym_identifier, + [57032] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4740), 1, + anon_sym_in, + [57039] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4742), 1, anon_sym_to, - [35670] = 2, + [57046] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2894), 1, + sym__comment, + ACTIONS(4744), 1, sym_identifier, - [35677] = 2, + [57053] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2896), 1, + sym__comment, + ACTIONS(4746), 1, + sym_identifier, + [57060] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4748), 1, + sym_identifier, + [57067] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4750), 1, + anon_sym_EQ_GT, + [57074] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4752), 1, + sym_identifier, + [57081] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4754), 1, + sym_identifier, + [57088] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4756), 1, + anon_sym_in, + [57095] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4758), 1, anon_sym_to, - [35684] = 2, + [57102] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2898), 1, + sym__comment, + ACTIONS(4760), 1, sym_identifier, - [35691] = 2, + [57109] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2900), 1, + sym__comment, + ACTIONS(4762), 1, + sym_identifier, + [57116] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4764), 1, + sym_identifier, + [57123] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4766), 1, + anon_sym_in, + [57130] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4768), 1, + sym_identifier, + [57137] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4770), 1, + sym_identifier, + [57144] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4772), 1, + anon_sym_from, + [57151] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4774), 1, anon_sym_to, - [35698] = 2, + [57158] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2902), 1, + sym__comment, + ACTIONS(4776), 1, sym_identifier, - [35705] = 2, + [57165] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2904), 1, + sym__comment, + ACTIONS(4778), 1, anon_sym_to, - [35712] = 2, + [57172] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2906), 1, + sym__comment, + ACTIONS(4780), 1, + anon_sym_to, + [57179] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4782), 1, + anon_sym_to, + [57186] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4784), 1, + anon_sym_to, + [57193] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4786), 1, + anon_sym_to, + [57200] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4788), 1, + anon_sym_to, + [57207] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4790), 1, + anon_sym_to, + [57214] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4792), 1, + anon_sym_to, + [57221] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4794), 1, sym_identifier, - [35719] = 2, + [57228] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2908), 1, + sym__comment, + ACTIONS(4796), 1, + anon_sym_to, + [57235] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4798), 1, sym_identifier, - [35726] = 2, + [57242] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2910), 1, + sym__comment, + ACTIONS(4800), 1, + anon_sym_to, + [57249] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4802), 1, sym_identifier, - [35733] = 2, + [57256] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2912), 1, + sym__comment, + ACTIONS(4804), 1, + anon_sym_to, + [57263] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4806), 1, sym_identifier, - [35740] = 2, + [57270] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2914), 1, + sym__comment, + ACTIONS(4808), 1, + anon_sym_to, + [57277] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4810), 1, sym_identifier, - [35747] = 2, + [57284] = 2, ACTIONS(3), 1, - sym_comment, - ACTIONS(2916), 1, + sym__comment, + ACTIONS(4812), 1, + anon_sym_to, + [57291] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4814), 1, + sym_identifier, + [57298] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4816), 1, + anon_sym_to, + [57305] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4818), 1, + sym_identifier, + [57312] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4820), 1, + sym_identifier, + [57319] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4822), 1, + sym_identifier, + [57326] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4824), 1, + sym_identifier, + [57333] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4826), 1, + sym_identifier, + [57340] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4828), 1, + sym_identifier, + [57347] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4830), 1, + sym_identifier, + [57354] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4832), 1, + sym_identifier, + [57361] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4834), 1, + sym_identifier, + [57368] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4836), 1, + sym_identifier, + [57375] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4838), 1, + sym_identifier, + [57382] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4840), 1, + sym_identifier, + [57389] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4842), 1, + sym_identifier, + [57396] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(4844), 1, sym_identifier, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(555)] = 0, - [SMALL_STATE(556)] = 75, - [SMALL_STATE(557)] = 160, - [SMALL_STATE(558)] = 235, - [SMALL_STATE(559)] = 320, - [SMALL_STATE(560)] = 407, - [SMALL_STATE(561)] = 485, - [SMALL_STATE(562)] = 563, - [SMALL_STATE(563)] = 641, - [SMALL_STATE(564)] = 719, - [SMALL_STATE(565)] = 797, - [SMALL_STATE(566)] = 901, - [SMALL_STATE(567)] = 979, - [SMALL_STATE(568)] = 1057, - [SMALL_STATE(569)] = 1135, - [SMALL_STATE(570)] = 1239, - [SMALL_STATE(571)] = 1312, - [SMALL_STATE(572)] = 1397, - [SMALL_STATE(573)] = 1470, - [SMALL_STATE(574)] = 1554, - [SMALL_STATE(575)] = 1622, - [SMALL_STATE(576)] = 1690, - [SMALL_STATE(577)] = 1758, - [SMALL_STATE(578)] = 1826, - [SMALL_STATE(579)] = 1894, - [SMALL_STATE(580)] = 1962, - [SMALL_STATE(581)] = 2064, - [SMALL_STATE(582)] = 2148, - [SMALL_STATE(583)] = 2250, - [SMALL_STATE(584)] = 2318, - [SMALL_STATE(585)] = 2386, - [SMALL_STATE(586)] = 2488, - [SMALL_STATE(587)] = 2556, - [SMALL_STATE(588)] = 2624, - [SMALL_STATE(589)] = 2692, - [SMALL_STATE(590)] = 2762, - [SMALL_STATE(591)] = 2830, - [SMALL_STATE(592)] = 2898, - [SMALL_STATE(593)] = 3000, - [SMALL_STATE(594)] = 3068, - [SMALL_STATE(595)] = 3136, - [SMALL_STATE(596)] = 3204, - [SMALL_STATE(597)] = 3306, - [SMALL_STATE(598)] = 3374, - [SMALL_STATE(599)] = 3442, - [SMALL_STATE(600)] = 3544, - [SMALL_STATE(601)] = 3646, - [SMALL_STATE(602)] = 3714, - [SMALL_STATE(603)] = 3787, - [SMALL_STATE(604)] = 3858, - [SMALL_STATE(605)] = 3929, - [SMALL_STATE(606)] = 4010, - [SMALL_STATE(607)] = 4091, - [SMALL_STATE(608)] = 4162, - [SMALL_STATE(609)] = 4258, - [SMALL_STATE(610)] = 4354, - [SMALL_STATE(611)] = 4450, - [SMALL_STATE(612)] = 4546, - [SMALL_STATE(613)] = 4642, - [SMALL_STATE(614)] = 4738, - [SMALL_STATE(615)] = 4834, - [SMALL_STATE(616)] = 4930, - [SMALL_STATE(617)] = 5026, - [SMALL_STATE(618)] = 5122, - [SMALL_STATE(619)] = 5218, - [SMALL_STATE(620)] = 5314, - [SMALL_STATE(621)] = 5410, - [SMALL_STATE(622)] = 5506, - [SMALL_STATE(623)] = 5602, - [SMALL_STATE(624)] = 5698, - [SMALL_STATE(625)] = 5794, - [SMALL_STATE(626)] = 5890, - [SMALL_STATE(627)] = 5986, - [SMALL_STATE(628)] = 6082, - [SMALL_STATE(629)] = 6178, - [SMALL_STATE(630)] = 6274, - [SMALL_STATE(631)] = 6370, - [SMALL_STATE(632)] = 6466, - [SMALL_STATE(633)] = 6562, - [SMALL_STATE(634)] = 6658, - [SMALL_STATE(635)] = 6754, - [SMALL_STATE(636)] = 6850, - [SMALL_STATE(637)] = 6946, - [SMALL_STATE(638)] = 7042, - [SMALL_STATE(639)] = 7138, - [SMALL_STATE(640)] = 7234, - [SMALL_STATE(641)] = 7330, - [SMALL_STATE(642)] = 7426, - [SMALL_STATE(643)] = 7522, - [SMALL_STATE(644)] = 7618, - [SMALL_STATE(645)] = 7714, - [SMALL_STATE(646)] = 7810, - [SMALL_STATE(647)] = 7906, - [SMALL_STATE(648)] = 8002, - [SMALL_STATE(649)] = 8098, - [SMALL_STATE(650)] = 8194, - [SMALL_STATE(651)] = 8290, - [SMALL_STATE(652)] = 8386, - [SMALL_STATE(653)] = 8482, - [SMALL_STATE(654)] = 8578, - [SMALL_STATE(655)] = 8674, - [SMALL_STATE(656)] = 8770, - [SMALL_STATE(657)] = 8866, - [SMALL_STATE(658)] = 8962, - [SMALL_STATE(659)] = 9058, - [SMALL_STATE(660)] = 9154, - [SMALL_STATE(661)] = 9250, - [SMALL_STATE(662)] = 9346, - [SMALL_STATE(663)] = 9442, - [SMALL_STATE(664)] = 9538, - [SMALL_STATE(665)] = 9634, - [SMALL_STATE(666)] = 9730, - [SMALL_STATE(667)] = 9826, - [SMALL_STATE(668)] = 9922, - [SMALL_STATE(669)] = 10018, - [SMALL_STATE(670)] = 10114, - [SMALL_STATE(671)] = 10210, - [SMALL_STATE(672)] = 10306, - [SMALL_STATE(673)] = 10402, - [SMALL_STATE(674)] = 10498, - [SMALL_STATE(675)] = 10594, - [SMALL_STATE(676)] = 10690, - [SMALL_STATE(677)] = 10786, - [SMALL_STATE(678)] = 10882, - [SMALL_STATE(679)] = 10978, - [SMALL_STATE(680)] = 11074, - [SMALL_STATE(681)] = 11170, - [SMALL_STATE(682)] = 11266, - [SMALL_STATE(683)] = 11362, - [SMALL_STATE(684)] = 11458, - [SMALL_STATE(685)] = 11554, - [SMALL_STATE(686)] = 11650, - [SMALL_STATE(687)] = 11716, - [SMALL_STATE(688)] = 11782, - [SMALL_STATE(689)] = 11878, - [SMALL_STATE(690)] = 11944, - [SMALL_STATE(691)] = 12040, - [SMALL_STATE(692)] = 12136, - [SMALL_STATE(693)] = 12202, - [SMALL_STATE(694)] = 12298, - [SMALL_STATE(695)] = 12364, - [SMALL_STATE(696)] = 12430, - [SMALL_STATE(697)] = 12496, - [SMALL_STATE(698)] = 12562, - [SMALL_STATE(699)] = 12628, - [SMALL_STATE(700)] = 12724, - [SMALL_STATE(701)] = 12820, - [SMALL_STATE(702)] = 12916, - [SMALL_STATE(703)] = 13012, - [SMALL_STATE(704)] = 13108, - [SMALL_STATE(705)] = 13204, - [SMALL_STATE(706)] = 13300, - [SMALL_STATE(707)] = 13396, - [SMALL_STATE(708)] = 13492, - [SMALL_STATE(709)] = 13588, - [SMALL_STATE(710)] = 13684, - [SMALL_STATE(711)] = 13780, - [SMALL_STATE(712)] = 13876, - [SMALL_STATE(713)] = 13942, - [SMALL_STATE(714)] = 14038, - [SMALL_STATE(715)] = 14134, - [SMALL_STATE(716)] = 14230, - [SMALL_STATE(717)] = 14326, - [SMALL_STATE(718)] = 14422, - [SMALL_STATE(719)] = 14488, - [SMALL_STATE(720)] = 14584, - [SMALL_STATE(721)] = 14680, - [SMALL_STATE(722)] = 14776, - [SMALL_STATE(723)] = 14872, - [SMALL_STATE(724)] = 14968, - [SMALL_STATE(725)] = 15064, - [SMALL_STATE(726)] = 15160, - [SMALL_STATE(727)] = 15256, - [SMALL_STATE(728)] = 15352, - [SMALL_STATE(729)] = 15448, - [SMALL_STATE(730)] = 15544, - [SMALL_STATE(731)] = 15640, - [SMALL_STATE(732)] = 15736, - [SMALL_STATE(733)] = 15832, - [SMALL_STATE(734)] = 15928, - [SMALL_STATE(735)] = 16024, - [SMALL_STATE(736)] = 16120, - [SMALL_STATE(737)] = 16216, - [SMALL_STATE(738)] = 16312, - [SMALL_STATE(739)] = 16408, - [SMALL_STATE(740)] = 16504, - [SMALL_STATE(741)] = 16600, - [SMALL_STATE(742)] = 16696, - [SMALL_STATE(743)] = 16792, - [SMALL_STATE(744)] = 16888, - [SMALL_STATE(745)] = 16984, - [SMALL_STATE(746)] = 17080, - [SMALL_STATE(747)] = 17176, - [SMALL_STATE(748)] = 17272, - [SMALL_STATE(749)] = 17368, - [SMALL_STATE(750)] = 17464, - [SMALL_STATE(751)] = 17560, - [SMALL_STATE(752)] = 17656, - [SMALL_STATE(753)] = 17752, - [SMALL_STATE(754)] = 17848, - [SMALL_STATE(755)] = 17944, - [SMALL_STATE(756)] = 18040, - [SMALL_STATE(757)] = 18136, - [SMALL_STATE(758)] = 18232, - [SMALL_STATE(759)] = 18328, - [SMALL_STATE(760)] = 18424, - [SMALL_STATE(761)] = 18520, - [SMALL_STATE(762)] = 18616, - [SMALL_STATE(763)] = 18712, - [SMALL_STATE(764)] = 18808, - [SMALL_STATE(765)] = 18904, - [SMALL_STATE(766)] = 19000, - [SMALL_STATE(767)] = 19096, - [SMALL_STATE(768)] = 19162, - [SMALL_STATE(769)] = 19258, - [SMALL_STATE(770)] = 19354, - [SMALL_STATE(771)] = 19450, - [SMALL_STATE(772)] = 19546, - [SMALL_STATE(773)] = 19642, - [SMALL_STATE(774)] = 19738, - [SMALL_STATE(775)] = 19834, - [SMALL_STATE(776)] = 19930, - [SMALL_STATE(777)] = 20026, - [SMALL_STATE(778)] = 20092, - [SMALL_STATE(779)] = 20188, - [SMALL_STATE(780)] = 20284, - [SMALL_STATE(781)] = 20380, - [SMALL_STATE(782)] = 20476, - [SMALL_STATE(783)] = 20572, - [SMALL_STATE(784)] = 20668, - [SMALL_STATE(785)] = 20764, - [SMALL_STATE(786)] = 20860, - [SMALL_STATE(787)] = 20956, - [SMALL_STATE(788)] = 21022, - [SMALL_STATE(789)] = 21118, - [SMALL_STATE(790)] = 21214, - [SMALL_STATE(791)] = 21310, - [SMALL_STATE(792)] = 21380, - [SMALL_STATE(793)] = 21476, - [SMALL_STATE(794)] = 21542, - [SMALL_STATE(795)] = 21638, - [SMALL_STATE(796)] = 21734, - [SMALL_STATE(797)] = 21830, - [SMALL_STATE(798)] = 21926, - [SMALL_STATE(799)] = 22022, - [SMALL_STATE(800)] = 22118, - [SMALL_STATE(801)] = 22214, - [SMALL_STATE(802)] = 22310, - [SMALL_STATE(803)] = 22406, - [SMALL_STATE(804)] = 22472, - [SMALL_STATE(805)] = 22568, - [SMALL_STATE(806)] = 22664, - [SMALL_STATE(807)] = 22760, - [SMALL_STATE(808)] = 22856, - [SMALL_STATE(809)] = 22922, - [SMALL_STATE(810)] = 23002, - [SMALL_STATE(811)] = 23098, - [SMALL_STATE(812)] = 23194, - [SMALL_STATE(813)] = 23290, - [SMALL_STATE(814)] = 23386, - [SMALL_STATE(815)] = 23482, - [SMALL_STATE(816)] = 23578, - [SMALL_STATE(817)] = 23648, - [SMALL_STATE(818)] = 23744, - [SMALL_STATE(819)] = 23824, - [SMALL_STATE(820)] = 23920, - [SMALL_STATE(821)] = 24016, - [SMALL_STATE(822)] = 24112, - [SMALL_STATE(823)] = 24208, - [SMALL_STATE(824)] = 24304, - [SMALL_STATE(825)] = 24400, - [SMALL_STATE(826)] = 24496, - [SMALL_STATE(827)] = 24592, - [SMALL_STATE(828)] = 24688, - [SMALL_STATE(829)] = 24784, - [SMALL_STATE(830)] = 24880, - [SMALL_STATE(831)] = 24976, - [SMALL_STATE(832)] = 25072, - [SMALL_STATE(833)] = 25168, - [SMALL_STATE(834)] = 25264, - [SMALL_STATE(835)] = 25360, - [SMALL_STATE(836)] = 25456, - [SMALL_STATE(837)] = 25552, - [SMALL_STATE(838)] = 25648, - [SMALL_STATE(839)] = 25744, - [SMALL_STATE(840)] = 25840, - [SMALL_STATE(841)] = 25936, - [SMALL_STATE(842)] = 26032, - [SMALL_STATE(843)] = 26128, - [SMALL_STATE(844)] = 26224, - [SMALL_STATE(845)] = 26320, - [SMALL_STATE(846)] = 26416, - [SMALL_STATE(847)] = 26512, - [SMALL_STATE(848)] = 26608, - [SMALL_STATE(849)] = 26704, - [SMALL_STATE(850)] = 26800, - [SMALL_STATE(851)] = 26896, - [SMALL_STATE(852)] = 26992, - [SMALL_STATE(853)] = 27088, - [SMALL_STATE(854)] = 27184, - [SMALL_STATE(855)] = 27280, - [SMALL_STATE(856)] = 27376, - [SMALL_STATE(857)] = 27472, - [SMALL_STATE(858)] = 27568, - [SMALL_STATE(859)] = 27664, - [SMALL_STATE(860)] = 27760, - [SMALL_STATE(861)] = 27856, - [SMALL_STATE(862)] = 27924, - [SMALL_STATE(863)] = 28020, - [SMALL_STATE(864)] = 28116, - [SMALL_STATE(865)] = 28212, - [SMALL_STATE(866)] = 28308, - [SMALL_STATE(867)] = 28404, - [SMALL_STATE(868)] = 28500, - [SMALL_STATE(869)] = 28596, - [SMALL_STATE(870)] = 28692, - [SMALL_STATE(871)] = 28788, - [SMALL_STATE(872)] = 28884, - [SMALL_STATE(873)] = 28980, - [SMALL_STATE(874)] = 29076, - [SMALL_STATE(875)] = 29172, - [SMALL_STATE(876)] = 29268, - [SMALL_STATE(877)] = 29364, - [SMALL_STATE(878)] = 29460, - [SMALL_STATE(879)] = 29556, - [SMALL_STATE(880)] = 29652, - [SMALL_STATE(881)] = 29748, - [SMALL_STATE(882)] = 29844, - [SMALL_STATE(883)] = 29940, - [SMALL_STATE(884)] = 30036, - [SMALL_STATE(885)] = 30132, - [SMALL_STATE(886)] = 30228, - [SMALL_STATE(887)] = 30324, - [SMALL_STATE(888)] = 30420, - [SMALL_STATE(889)] = 30516, - [SMALL_STATE(890)] = 30578, - [SMALL_STATE(891)] = 30629, - [SMALL_STATE(892)] = 30679, - [SMALL_STATE(893)] = 30729, - [SMALL_STATE(894)] = 30779, - [SMALL_STATE(895)] = 30829, - [SMALL_STATE(896)] = 30862, - [SMALL_STATE(897)] = 30891, - [SMALL_STATE(898)] = 30920, - [SMALL_STATE(899)] = 30955, - [SMALL_STATE(900)] = 30984, - [SMALL_STATE(901)] = 31013, - [SMALL_STATE(902)] = 31042, - [SMALL_STATE(903)] = 31071, - [SMALL_STATE(904)] = 31104, - [SMALL_STATE(905)] = 31133, - [SMALL_STATE(906)] = 31162, - [SMALL_STATE(907)] = 31191, - [SMALL_STATE(908)] = 31220, - [SMALL_STATE(909)] = 31249, - [SMALL_STATE(910)] = 31278, - [SMALL_STATE(911)] = 31311, - [SMALL_STATE(912)] = 31350, - [SMALL_STATE(913)] = 31389, - [SMALL_STATE(914)] = 31421, - [SMALL_STATE(915)] = 31461, - [SMALL_STATE(916)] = 31493, - [SMALL_STATE(917)] = 31531, - [SMALL_STATE(918)] = 31569, - [SMALL_STATE(919)] = 31607, - [SMALL_STATE(920)] = 31637, - [SMALL_STATE(921)] = 31667, - [SMALL_STATE(922)] = 31699, - [SMALL_STATE(923)] = 31731, - [SMALL_STATE(924)] = 31767, - [SMALL_STATE(925)] = 31803, - [SMALL_STATE(926)] = 31833, - [SMALL_STATE(927)] = 31869, - [SMALL_STATE(928)] = 31901, - [SMALL_STATE(929)] = 31931, - [SMALL_STATE(930)] = 31961, - [SMALL_STATE(931)] = 31997, - [SMALL_STATE(932)] = 32033, - [SMALL_STATE(933)] = 32063, - [SMALL_STATE(934)] = 32099, - [SMALL_STATE(935)] = 32129, - [SMALL_STATE(936)] = 32159, - [SMALL_STATE(937)] = 32189, - [SMALL_STATE(938)] = 32218, - [SMALL_STATE(939)] = 32253, - [SMALL_STATE(940)] = 32288, - [SMALL_STATE(941)] = 32323, - [SMALL_STATE(942)] = 32358, - [SMALL_STATE(943)] = 32393, - [SMALL_STATE(944)] = 32428, - [SMALL_STATE(945)] = 32457, - [SMALL_STATE(946)] = 32492, - [SMALL_STATE(947)] = 32527, - [SMALL_STATE(948)] = 32556, - [SMALL_STATE(949)] = 32591, - [SMALL_STATE(950)] = 32626, - [SMALL_STATE(951)] = 32661, - [SMALL_STATE(952)] = 32696, - [SMALL_STATE(953)] = 32731, - [SMALL_STATE(954)] = 32760, - [SMALL_STATE(955)] = 32789, - [SMALL_STATE(956)] = 32824, - [SMALL_STATE(957)] = 32859, - [SMALL_STATE(958)] = 32894, - [SMALL_STATE(959)] = 32929, - [SMALL_STATE(960)] = 32964, - [SMALL_STATE(961)] = 32999, - [SMALL_STATE(962)] = 33034, - [SMALL_STATE(963)] = 33069, - [SMALL_STATE(964)] = 33104, - [SMALL_STATE(965)] = 33139, - [SMALL_STATE(966)] = 33174, - [SMALL_STATE(967)] = 33209, - [SMALL_STATE(968)] = 33244, - [SMALL_STATE(969)] = 33279, - [SMALL_STATE(970)] = 33314, - [SMALL_STATE(971)] = 33343, - [SMALL_STATE(972)] = 33378, - [SMALL_STATE(973)] = 33413, - [SMALL_STATE(974)] = 33448, - [SMALL_STATE(975)] = 33483, - [SMALL_STATE(976)] = 33515, - [SMALL_STATE(977)] = 33540, - [SMALL_STATE(978)] = 33565, - [SMALL_STATE(979)] = 33590, - [SMALL_STATE(980)] = 33615, - [SMALL_STATE(981)] = 33640, - [SMALL_STATE(982)] = 33660, - [SMALL_STATE(983)] = 33673, - [SMALL_STATE(984)] = 33684, - [SMALL_STATE(985)] = 33695, - [SMALL_STATE(986)] = 33708, - [SMALL_STATE(987)] = 33721, - [SMALL_STATE(988)] = 33734, - [SMALL_STATE(989)] = 33747, - [SMALL_STATE(990)] = 33760, - [SMALL_STATE(991)] = 33773, - [SMALL_STATE(992)] = 33786, - [SMALL_STATE(993)] = 33799, - [SMALL_STATE(994)] = 33812, - [SMALL_STATE(995)] = 33825, - [SMALL_STATE(996)] = 33838, - [SMALL_STATE(997)] = 33848, - [SMALL_STATE(998)] = 33858, - [SMALL_STATE(999)] = 33866, - [SMALL_STATE(1000)] = 33876, - [SMALL_STATE(1001)] = 33886, - [SMALL_STATE(1002)] = 33896, - [SMALL_STATE(1003)] = 33906, - [SMALL_STATE(1004)] = 33916, - [SMALL_STATE(1005)] = 33926, - [SMALL_STATE(1006)] = 33936, - [SMALL_STATE(1007)] = 33946, - [SMALL_STATE(1008)] = 33956, - [SMALL_STATE(1009)] = 33966, - [SMALL_STATE(1010)] = 33976, - [SMALL_STATE(1011)] = 33986, - [SMALL_STATE(1012)] = 33996, - [SMALL_STATE(1013)] = 34006, - [SMALL_STATE(1014)] = 34016, - [SMALL_STATE(1015)] = 34026, - [SMALL_STATE(1016)] = 34036, - [SMALL_STATE(1017)] = 34046, - [SMALL_STATE(1018)] = 34056, - [SMALL_STATE(1019)] = 34064, - [SMALL_STATE(1020)] = 34074, - [SMALL_STATE(1021)] = 34084, - [SMALL_STATE(1022)] = 34092, - [SMALL_STATE(1023)] = 34100, - [SMALL_STATE(1024)] = 34110, - [SMALL_STATE(1025)] = 34120, - [SMALL_STATE(1026)] = 34130, - [SMALL_STATE(1027)] = 34140, - [SMALL_STATE(1028)] = 34150, - [SMALL_STATE(1029)] = 34160, - [SMALL_STATE(1030)] = 34170, - [SMALL_STATE(1031)] = 34180, - [SMALL_STATE(1032)] = 34190, - [SMALL_STATE(1033)] = 34200, - [SMALL_STATE(1034)] = 34207, - [SMALL_STATE(1035)] = 34214, - [SMALL_STATE(1036)] = 34221, - [SMALL_STATE(1037)] = 34228, - [SMALL_STATE(1038)] = 34235, - [SMALL_STATE(1039)] = 34242, - [SMALL_STATE(1040)] = 34249, - [SMALL_STATE(1041)] = 34256, - [SMALL_STATE(1042)] = 34263, - [SMALL_STATE(1043)] = 34270, - [SMALL_STATE(1044)] = 34277, - [SMALL_STATE(1045)] = 34284, - [SMALL_STATE(1046)] = 34291, - [SMALL_STATE(1047)] = 34298, - [SMALL_STATE(1048)] = 34305, - [SMALL_STATE(1049)] = 34312, - [SMALL_STATE(1050)] = 34319, - [SMALL_STATE(1051)] = 34326, - [SMALL_STATE(1052)] = 34333, - [SMALL_STATE(1053)] = 34340, - [SMALL_STATE(1054)] = 34347, - [SMALL_STATE(1055)] = 34354, - [SMALL_STATE(1056)] = 34361, - [SMALL_STATE(1057)] = 34368, - [SMALL_STATE(1058)] = 34375, - [SMALL_STATE(1059)] = 34382, - [SMALL_STATE(1060)] = 34389, - [SMALL_STATE(1061)] = 34396, - [SMALL_STATE(1062)] = 34403, - [SMALL_STATE(1063)] = 34410, - [SMALL_STATE(1064)] = 34417, - [SMALL_STATE(1065)] = 34424, - [SMALL_STATE(1066)] = 34431, - [SMALL_STATE(1067)] = 34438, - [SMALL_STATE(1068)] = 34445, - [SMALL_STATE(1069)] = 34452, - [SMALL_STATE(1070)] = 34459, - [SMALL_STATE(1071)] = 34466, - [SMALL_STATE(1072)] = 34473, - [SMALL_STATE(1073)] = 34480, - [SMALL_STATE(1074)] = 34487, - [SMALL_STATE(1075)] = 34494, - [SMALL_STATE(1076)] = 34501, - [SMALL_STATE(1077)] = 34508, - [SMALL_STATE(1078)] = 34515, - [SMALL_STATE(1079)] = 34522, - [SMALL_STATE(1080)] = 34529, - [SMALL_STATE(1081)] = 34536, - [SMALL_STATE(1082)] = 34543, - [SMALL_STATE(1083)] = 34550, - [SMALL_STATE(1084)] = 34557, - [SMALL_STATE(1085)] = 34564, - [SMALL_STATE(1086)] = 34571, - [SMALL_STATE(1087)] = 34578, - [SMALL_STATE(1088)] = 34585, - [SMALL_STATE(1089)] = 34592, - [SMALL_STATE(1090)] = 34599, - [SMALL_STATE(1091)] = 34606, - [SMALL_STATE(1092)] = 34613, - [SMALL_STATE(1093)] = 34620, - [SMALL_STATE(1094)] = 34627, - [SMALL_STATE(1095)] = 34634, - [SMALL_STATE(1096)] = 34641, - [SMALL_STATE(1097)] = 34648, - [SMALL_STATE(1098)] = 34655, - [SMALL_STATE(1099)] = 34662, - [SMALL_STATE(1100)] = 34669, - [SMALL_STATE(1101)] = 34676, - [SMALL_STATE(1102)] = 34683, - [SMALL_STATE(1103)] = 34690, - [SMALL_STATE(1104)] = 34697, - [SMALL_STATE(1105)] = 34704, - [SMALL_STATE(1106)] = 34711, - [SMALL_STATE(1107)] = 34718, - [SMALL_STATE(1108)] = 34725, - [SMALL_STATE(1109)] = 34732, - [SMALL_STATE(1110)] = 34739, - [SMALL_STATE(1111)] = 34746, - [SMALL_STATE(1112)] = 34753, - [SMALL_STATE(1113)] = 34760, - [SMALL_STATE(1114)] = 34767, - [SMALL_STATE(1115)] = 34774, - [SMALL_STATE(1116)] = 34781, - [SMALL_STATE(1117)] = 34788, - [SMALL_STATE(1118)] = 34795, - [SMALL_STATE(1119)] = 34802, - [SMALL_STATE(1120)] = 34809, - [SMALL_STATE(1121)] = 34816, - [SMALL_STATE(1122)] = 34823, - [SMALL_STATE(1123)] = 34830, - [SMALL_STATE(1124)] = 34837, - [SMALL_STATE(1125)] = 34844, - [SMALL_STATE(1126)] = 34851, - [SMALL_STATE(1127)] = 34858, - [SMALL_STATE(1128)] = 34865, - [SMALL_STATE(1129)] = 34872, - [SMALL_STATE(1130)] = 34879, - [SMALL_STATE(1131)] = 34886, - [SMALL_STATE(1132)] = 34893, - [SMALL_STATE(1133)] = 34900, - [SMALL_STATE(1134)] = 34907, - [SMALL_STATE(1135)] = 34914, - [SMALL_STATE(1136)] = 34921, - [SMALL_STATE(1137)] = 34928, - [SMALL_STATE(1138)] = 34935, - [SMALL_STATE(1139)] = 34942, - [SMALL_STATE(1140)] = 34949, - [SMALL_STATE(1141)] = 34956, - [SMALL_STATE(1142)] = 34963, - [SMALL_STATE(1143)] = 34970, - [SMALL_STATE(1144)] = 34977, - [SMALL_STATE(1145)] = 34984, - [SMALL_STATE(1146)] = 34991, - [SMALL_STATE(1147)] = 34998, - [SMALL_STATE(1148)] = 35005, - [SMALL_STATE(1149)] = 35012, - [SMALL_STATE(1150)] = 35019, - [SMALL_STATE(1151)] = 35026, - [SMALL_STATE(1152)] = 35033, - [SMALL_STATE(1153)] = 35040, - [SMALL_STATE(1154)] = 35047, - [SMALL_STATE(1155)] = 35054, - [SMALL_STATE(1156)] = 35061, - [SMALL_STATE(1157)] = 35068, - [SMALL_STATE(1158)] = 35075, - [SMALL_STATE(1159)] = 35082, - [SMALL_STATE(1160)] = 35089, - [SMALL_STATE(1161)] = 35096, - [SMALL_STATE(1162)] = 35103, - [SMALL_STATE(1163)] = 35110, - [SMALL_STATE(1164)] = 35117, - [SMALL_STATE(1165)] = 35124, - [SMALL_STATE(1166)] = 35131, - [SMALL_STATE(1167)] = 35138, - [SMALL_STATE(1168)] = 35145, - [SMALL_STATE(1169)] = 35152, - [SMALL_STATE(1170)] = 35159, - [SMALL_STATE(1171)] = 35166, - [SMALL_STATE(1172)] = 35173, - [SMALL_STATE(1173)] = 35180, - [SMALL_STATE(1174)] = 35187, - [SMALL_STATE(1175)] = 35194, - [SMALL_STATE(1176)] = 35201, - [SMALL_STATE(1177)] = 35208, - [SMALL_STATE(1178)] = 35215, - [SMALL_STATE(1179)] = 35222, - [SMALL_STATE(1180)] = 35229, - [SMALL_STATE(1181)] = 35236, - [SMALL_STATE(1182)] = 35243, - [SMALL_STATE(1183)] = 35250, - [SMALL_STATE(1184)] = 35257, - [SMALL_STATE(1185)] = 35264, - [SMALL_STATE(1186)] = 35271, - [SMALL_STATE(1187)] = 35278, - [SMALL_STATE(1188)] = 35285, - [SMALL_STATE(1189)] = 35292, - [SMALL_STATE(1190)] = 35299, - [SMALL_STATE(1191)] = 35306, - [SMALL_STATE(1192)] = 35313, - [SMALL_STATE(1193)] = 35320, - [SMALL_STATE(1194)] = 35327, - [SMALL_STATE(1195)] = 35334, - [SMALL_STATE(1196)] = 35341, - [SMALL_STATE(1197)] = 35348, - [SMALL_STATE(1198)] = 35355, - [SMALL_STATE(1199)] = 35362, - [SMALL_STATE(1200)] = 35369, - [SMALL_STATE(1201)] = 35376, - [SMALL_STATE(1202)] = 35383, - [SMALL_STATE(1203)] = 35390, - [SMALL_STATE(1204)] = 35397, - [SMALL_STATE(1205)] = 35404, - [SMALL_STATE(1206)] = 35411, - [SMALL_STATE(1207)] = 35418, - [SMALL_STATE(1208)] = 35425, - [SMALL_STATE(1209)] = 35432, - [SMALL_STATE(1210)] = 35439, - [SMALL_STATE(1211)] = 35446, - [SMALL_STATE(1212)] = 35453, - [SMALL_STATE(1213)] = 35460, - [SMALL_STATE(1214)] = 35467, - [SMALL_STATE(1215)] = 35474, - [SMALL_STATE(1216)] = 35481, - [SMALL_STATE(1217)] = 35488, - [SMALL_STATE(1218)] = 35495, - [SMALL_STATE(1219)] = 35502, - [SMALL_STATE(1220)] = 35509, - [SMALL_STATE(1221)] = 35516, - [SMALL_STATE(1222)] = 35523, - [SMALL_STATE(1223)] = 35530, - [SMALL_STATE(1224)] = 35537, - [SMALL_STATE(1225)] = 35544, - [SMALL_STATE(1226)] = 35551, - [SMALL_STATE(1227)] = 35558, - [SMALL_STATE(1228)] = 35565, - [SMALL_STATE(1229)] = 35572, - [SMALL_STATE(1230)] = 35579, - [SMALL_STATE(1231)] = 35586, - [SMALL_STATE(1232)] = 35593, - [SMALL_STATE(1233)] = 35600, - [SMALL_STATE(1234)] = 35607, - [SMALL_STATE(1235)] = 35614, - [SMALL_STATE(1236)] = 35621, - [SMALL_STATE(1237)] = 35628, - [SMALL_STATE(1238)] = 35635, - [SMALL_STATE(1239)] = 35642, - [SMALL_STATE(1240)] = 35649, - [SMALL_STATE(1241)] = 35656, - [SMALL_STATE(1242)] = 35663, - [SMALL_STATE(1243)] = 35670, - [SMALL_STATE(1244)] = 35677, - [SMALL_STATE(1245)] = 35684, - [SMALL_STATE(1246)] = 35691, - [SMALL_STATE(1247)] = 35698, - [SMALL_STATE(1248)] = 35705, - [SMALL_STATE(1249)] = 35712, - [SMALL_STATE(1250)] = 35719, - [SMALL_STATE(1251)] = 35726, - [SMALL_STATE(1252)] = 35733, - [SMALL_STATE(1253)] = 35740, - [SMALL_STATE(1254)] = 35747, + [SMALL_STATE(969)] = 0, + [SMALL_STATE(970)] = 79, + [SMALL_STATE(971)] = 150, + [SMALL_STATE(972)] = 235, + [SMALL_STATE(973)] = 310, + [SMALL_STATE(974)] = 395, + [SMALL_STATE(975)] = 466, + [SMALL_STATE(976)] = 553, + [SMALL_STATE(977)] = 632, + [SMALL_STATE(978)] = 711, + [SMALL_STATE(979)] = 790, + [SMALL_STATE(980)] = 865, + [SMALL_STATE(981)] = 944, + [SMALL_STATE(982)] = 1015, + [SMALL_STATE(983)] = 1086, + [SMALL_STATE(984)] = 1165, + [SMALL_STATE(985)] = 1236, + [SMALL_STATE(986)] = 1315, + [SMALL_STATE(987)] = 1386, + [SMALL_STATE(988)] = 1457, + [SMALL_STATE(989)] = 1536, + [SMALL_STATE(990)] = 1607, + [SMALL_STATE(991)] = 1678, + [SMALL_STATE(992)] = 1749, + [SMALL_STATE(993)] = 1820, + [SMALL_STATE(994)] = 1891, + [SMALL_STATE(995)] = 1962, + [SMALL_STATE(996)] = 2032, + [SMALL_STATE(997)] = 2102, + [SMALL_STATE(998)] = 2172, + [SMALL_STATE(999)] = 2246, + [SMALL_STATE(1000)] = 2320, + [SMALL_STATE(1001)] = 2390, + [SMALL_STATE(1002)] = 2460, + [SMALL_STATE(1003)] = 2530, + [SMALL_STATE(1004)] = 2634, + [SMALL_STATE(1005)] = 2704, + [SMALL_STATE(1006)] = 2808, + [SMALL_STATE(1007)] = 2878, + [SMALL_STATE(1008)] = 2948, + [SMALL_STATE(1009)] = 3018, + [SMALL_STATE(1010)] = 3088, + [SMALL_STATE(1011)] = 3158, + [SMALL_STATE(1012)] = 3228, + [SMALL_STATE(1013)] = 3297, + [SMALL_STATE(1014)] = 3366, + [SMALL_STATE(1015)] = 3435, + [SMALL_STATE(1016)] = 3504, + [SMALL_STATE(1017)] = 3573, + [SMALL_STATE(1018)] = 3642, + [SMALL_STATE(1019)] = 3711, + [SMALL_STATE(1020)] = 3780, + [SMALL_STATE(1021)] = 3849, + [SMALL_STATE(1022)] = 3918, + [SMALL_STATE(1023)] = 3987, + [SMALL_STATE(1024)] = 4058, + [SMALL_STATE(1025)] = 4127, + [SMALL_STATE(1026)] = 4196, + [SMALL_STATE(1027)] = 4265, + [SMALL_STATE(1028)] = 4334, + [SMALL_STATE(1029)] = 4403, + [SMALL_STATE(1030)] = 4472, + [SMALL_STATE(1031)] = 4557, + [SMALL_STATE(1032)] = 4626, + [SMALL_STATE(1033)] = 4695, + [SMALL_STATE(1034)] = 4797, + [SMALL_STATE(1035)] = 4899, + [SMALL_STATE(1036)] = 5001, + [SMALL_STATE(1037)] = 5103, + [SMALL_STATE(1038)] = 5205, + [SMALL_STATE(1039)] = 5307, + [SMALL_STATE(1040)] = 5391, + [SMALL_STATE(1041)] = 5493, + [SMALL_STATE(1042)] = 5595, + [SMALL_STATE(1043)] = 5679, + [SMALL_STATE(1044)] = 5781, + [SMALL_STATE(1045)] = 5883, + [SMALL_STATE(1046)] = 5985, + [SMALL_STATE(1047)] = 6087, + [SMALL_STATE(1048)] = 6189, + [SMALL_STATE(1049)] = 6291, + [SMALL_STATE(1050)] = 6393, + [SMALL_STATE(1051)] = 6495, + [SMALL_STATE(1052)] = 6597, + [SMALL_STATE(1053)] = 6678, + [SMALL_STATE(1054)] = 6745, + [SMALL_STATE(1055)] = 6812, + [SMALL_STATE(1056)] = 6879, + [SMALL_STATE(1057)] = 6946, + [SMALL_STATE(1058)] = 7017, + [SMALL_STATE(1059)] = 7084, + [SMALL_STATE(1060)] = 7151, + [SMALL_STATE(1061)] = 7218, + [SMALL_STATE(1062)] = 7285, + [SMALL_STATE(1063)] = 7352, + [SMALL_STATE(1064)] = 7425, + [SMALL_STATE(1065)] = 7492, + [SMALL_STATE(1066)] = 7559, + [SMALL_STATE(1067)] = 7626, + [SMALL_STATE(1068)] = 7693, + [SMALL_STATE(1069)] = 7760, + [SMALL_STATE(1070)] = 7827, + [SMALL_STATE(1071)] = 7894, + [SMALL_STATE(1072)] = 7961, + [SMALL_STATE(1073)] = 8032, + [SMALL_STATE(1074)] = 8113, + [SMALL_STATE(1075)] = 8184, + [SMALL_STATE(1076)] = 8253, + [SMALL_STATE(1077)] = 8349, + [SMALL_STATE(1078)] = 8445, + [SMALL_STATE(1079)] = 8541, + [SMALL_STATE(1080)] = 8637, + [SMALL_STATE(1081)] = 8733, + [SMALL_STATE(1082)] = 8829, + [SMALL_STATE(1083)] = 8925, + [SMALL_STATE(1084)] = 9021, + [SMALL_STATE(1085)] = 9117, + [SMALL_STATE(1086)] = 9213, + [SMALL_STATE(1087)] = 9309, + [SMALL_STATE(1088)] = 9405, + [SMALL_STATE(1089)] = 9501, + [SMALL_STATE(1090)] = 9597, + [SMALL_STATE(1091)] = 9693, + [SMALL_STATE(1092)] = 9789, + [SMALL_STATE(1093)] = 9885, + [SMALL_STATE(1094)] = 9981, + [SMALL_STATE(1095)] = 10077, + [SMALL_STATE(1096)] = 10173, + [SMALL_STATE(1097)] = 10269, + [SMALL_STATE(1098)] = 10365, + [SMALL_STATE(1099)] = 10461, + [SMALL_STATE(1100)] = 10557, + [SMALL_STATE(1101)] = 10653, + [SMALL_STATE(1102)] = 10749, + [SMALL_STATE(1103)] = 10845, + [SMALL_STATE(1104)] = 10941, + [SMALL_STATE(1105)] = 11037, + [SMALL_STATE(1106)] = 11133, + [SMALL_STATE(1107)] = 11229, + [SMALL_STATE(1108)] = 11325, + [SMALL_STATE(1109)] = 11421, + [SMALL_STATE(1110)] = 11517, + [SMALL_STATE(1111)] = 11613, + [SMALL_STATE(1112)] = 11709, + [SMALL_STATE(1113)] = 11805, + [SMALL_STATE(1114)] = 11901, + [SMALL_STATE(1115)] = 11997, + [SMALL_STATE(1116)] = 12093, + [SMALL_STATE(1117)] = 12189, + [SMALL_STATE(1118)] = 12285, + [SMALL_STATE(1119)] = 12381, + [SMALL_STATE(1120)] = 12477, + [SMALL_STATE(1121)] = 12573, + [SMALL_STATE(1122)] = 12669, + [SMALL_STATE(1123)] = 12765, + [SMALL_STATE(1124)] = 12861, + [SMALL_STATE(1125)] = 12957, + [SMALL_STATE(1126)] = 13053, + [SMALL_STATE(1127)] = 13149, + [SMALL_STATE(1128)] = 13245, + [SMALL_STATE(1129)] = 13341, + [SMALL_STATE(1130)] = 13437, + [SMALL_STATE(1131)] = 13533, + [SMALL_STATE(1132)] = 13629, + [SMALL_STATE(1133)] = 13725, + [SMALL_STATE(1134)] = 13821, + [SMALL_STATE(1135)] = 13917, + [SMALL_STATE(1136)] = 14013, + [SMALL_STATE(1137)] = 14109, + [SMALL_STATE(1138)] = 14205, + [SMALL_STATE(1139)] = 14301, + [SMALL_STATE(1140)] = 14397, + [SMALL_STATE(1141)] = 14493, + [SMALL_STATE(1142)] = 14589, + [SMALL_STATE(1143)] = 14685, + [SMALL_STATE(1144)] = 14781, + [SMALL_STATE(1145)] = 14877, + [SMALL_STATE(1146)] = 14973, + [SMALL_STATE(1147)] = 15069, + [SMALL_STATE(1148)] = 15165, + [SMALL_STATE(1149)] = 15261, + [SMALL_STATE(1150)] = 15357, + [SMALL_STATE(1151)] = 15453, + [SMALL_STATE(1152)] = 15549, + [SMALL_STATE(1153)] = 15645, + [SMALL_STATE(1154)] = 15741, + [SMALL_STATE(1155)] = 15837, + [SMALL_STATE(1156)] = 15933, + [SMALL_STATE(1157)] = 16029, + [SMALL_STATE(1158)] = 16125, + [SMALL_STATE(1159)] = 16221, + [SMALL_STATE(1160)] = 16317, + [SMALL_STATE(1161)] = 16413, + [SMALL_STATE(1162)] = 16509, + [SMALL_STATE(1163)] = 16605, + [SMALL_STATE(1164)] = 16701, + [SMALL_STATE(1165)] = 16797, + [SMALL_STATE(1166)] = 16893, + [SMALL_STATE(1167)] = 16989, + [SMALL_STATE(1168)] = 17085, + [SMALL_STATE(1169)] = 17181, + [SMALL_STATE(1170)] = 17277, + [SMALL_STATE(1171)] = 17373, + [SMALL_STATE(1172)] = 17469, + [SMALL_STATE(1173)] = 17565, + [SMALL_STATE(1174)] = 17661, + [SMALL_STATE(1175)] = 17757, + [SMALL_STATE(1176)] = 17853, + [SMALL_STATE(1177)] = 17949, + [SMALL_STATE(1178)] = 18045, + [SMALL_STATE(1179)] = 18141, + [SMALL_STATE(1180)] = 18237, + [SMALL_STATE(1181)] = 18333, + [SMALL_STATE(1182)] = 18429, + [SMALL_STATE(1183)] = 18525, + [SMALL_STATE(1184)] = 18621, + [SMALL_STATE(1185)] = 18717, + [SMALL_STATE(1186)] = 18813, + [SMALL_STATE(1187)] = 18909, + [SMALL_STATE(1188)] = 19005, + [SMALL_STATE(1189)] = 19101, + [SMALL_STATE(1190)] = 19197, + [SMALL_STATE(1191)] = 19293, + [SMALL_STATE(1192)] = 19389, + [SMALL_STATE(1193)] = 19485, + [SMALL_STATE(1194)] = 19581, + [SMALL_STATE(1195)] = 19677, + [SMALL_STATE(1196)] = 19773, + [SMALL_STATE(1197)] = 19869, + [SMALL_STATE(1198)] = 19965, + [SMALL_STATE(1199)] = 20061, + [SMALL_STATE(1200)] = 20157, + [SMALL_STATE(1201)] = 20253, + [SMALL_STATE(1202)] = 20349, + [SMALL_STATE(1203)] = 20445, + [SMALL_STATE(1204)] = 20541, + [SMALL_STATE(1205)] = 20637, + [SMALL_STATE(1206)] = 20733, + [SMALL_STATE(1207)] = 20829, + [SMALL_STATE(1208)] = 20925, + [SMALL_STATE(1209)] = 21021, + [SMALL_STATE(1210)] = 21117, + [SMALL_STATE(1211)] = 21213, + [SMALL_STATE(1212)] = 21309, + [SMALL_STATE(1213)] = 21405, + [SMALL_STATE(1214)] = 21501, + [SMALL_STATE(1215)] = 21597, + [SMALL_STATE(1216)] = 21693, + [SMALL_STATE(1217)] = 21789, + [SMALL_STATE(1218)] = 21885, + [SMALL_STATE(1219)] = 21981, + [SMALL_STATE(1220)] = 22077, + [SMALL_STATE(1221)] = 22173, + [SMALL_STATE(1222)] = 22269, + [SMALL_STATE(1223)] = 22365, + [SMALL_STATE(1224)] = 22461, + [SMALL_STATE(1225)] = 22557, + [SMALL_STATE(1226)] = 22653, + [SMALL_STATE(1227)] = 22749, + [SMALL_STATE(1228)] = 22845, + [SMALL_STATE(1229)] = 22941, + [SMALL_STATE(1230)] = 23037, + [SMALL_STATE(1231)] = 23133, + [SMALL_STATE(1232)] = 23229, + [SMALL_STATE(1233)] = 23325, + [SMALL_STATE(1234)] = 23421, + [SMALL_STATE(1235)] = 23517, + [SMALL_STATE(1236)] = 23613, + [SMALL_STATE(1237)] = 23709, + [SMALL_STATE(1238)] = 23805, + [SMALL_STATE(1239)] = 23901, + [SMALL_STATE(1240)] = 23997, + [SMALL_STATE(1241)] = 24093, + [SMALL_STATE(1242)] = 24189, + [SMALL_STATE(1243)] = 24285, + [SMALL_STATE(1244)] = 24381, + [SMALL_STATE(1245)] = 24477, + [SMALL_STATE(1246)] = 24573, + [SMALL_STATE(1247)] = 24669, + [SMALL_STATE(1248)] = 24765, + [SMALL_STATE(1249)] = 24861, + [SMALL_STATE(1250)] = 24957, + [SMALL_STATE(1251)] = 25053, + [SMALL_STATE(1252)] = 25149, + [SMALL_STATE(1253)] = 25245, + [SMALL_STATE(1254)] = 25341, + [SMALL_STATE(1255)] = 25437, + [SMALL_STATE(1256)] = 25533, + [SMALL_STATE(1257)] = 25629, + [SMALL_STATE(1258)] = 25725, + [SMALL_STATE(1259)] = 25821, + [SMALL_STATE(1260)] = 25917, + [SMALL_STATE(1261)] = 26013, + [SMALL_STATE(1262)] = 26109, + [SMALL_STATE(1263)] = 26205, + [SMALL_STATE(1264)] = 26301, + [SMALL_STATE(1265)] = 26397, + [SMALL_STATE(1266)] = 26493, + [SMALL_STATE(1267)] = 26589, + [SMALL_STATE(1268)] = 26685, + [SMALL_STATE(1269)] = 26781, + [SMALL_STATE(1270)] = 26877, + [SMALL_STATE(1271)] = 26973, + [SMALL_STATE(1272)] = 27069, + [SMALL_STATE(1273)] = 27165, + [SMALL_STATE(1274)] = 27261, + [SMALL_STATE(1275)] = 27357, + [SMALL_STATE(1276)] = 27453, + [SMALL_STATE(1277)] = 27549, + [SMALL_STATE(1278)] = 27645, + [SMALL_STATE(1279)] = 27741, + [SMALL_STATE(1280)] = 27837, + [SMALL_STATE(1281)] = 27933, + [SMALL_STATE(1282)] = 28029, + [SMALL_STATE(1283)] = 28125, + [SMALL_STATE(1284)] = 28221, + [SMALL_STATE(1285)] = 28317, + [SMALL_STATE(1286)] = 28413, + [SMALL_STATE(1287)] = 28509, + [SMALL_STATE(1288)] = 28605, + [SMALL_STATE(1289)] = 28701, + [SMALL_STATE(1290)] = 28797, + [SMALL_STATE(1291)] = 28893, + [SMALL_STATE(1292)] = 28989, + [SMALL_STATE(1293)] = 29085, + [SMALL_STATE(1294)] = 29181, + [SMALL_STATE(1295)] = 29277, + [SMALL_STATE(1296)] = 29373, + [SMALL_STATE(1297)] = 29469, + [SMALL_STATE(1298)] = 29565, + [SMALL_STATE(1299)] = 29661, + [SMALL_STATE(1300)] = 29757, + [SMALL_STATE(1301)] = 29853, + [SMALL_STATE(1302)] = 29949, + [SMALL_STATE(1303)] = 30045, + [SMALL_STATE(1304)] = 30141, + [SMALL_STATE(1305)] = 30237, + [SMALL_STATE(1306)] = 30333, + [SMALL_STATE(1307)] = 30429, + [SMALL_STATE(1308)] = 30525, + [SMALL_STATE(1309)] = 30621, + [SMALL_STATE(1310)] = 30717, + [SMALL_STATE(1311)] = 30813, + [SMALL_STATE(1312)] = 30909, + [SMALL_STATE(1313)] = 31005, + [SMALL_STATE(1314)] = 31101, + [SMALL_STATE(1315)] = 31197, + [SMALL_STATE(1316)] = 31293, + [SMALL_STATE(1317)] = 31389, + [SMALL_STATE(1318)] = 31485, + [SMALL_STATE(1319)] = 31581, + [SMALL_STATE(1320)] = 31677, + [SMALL_STATE(1321)] = 31773, + [SMALL_STATE(1322)] = 31869, + [SMALL_STATE(1323)] = 31965, + [SMALL_STATE(1324)] = 32061, + [SMALL_STATE(1325)] = 32157, + [SMALL_STATE(1326)] = 32253, + [SMALL_STATE(1327)] = 32349, + [SMALL_STATE(1328)] = 32445, + [SMALL_STATE(1329)] = 32541, + [SMALL_STATE(1330)] = 32611, + [SMALL_STATE(1331)] = 32707, + [SMALL_STATE(1332)] = 32803, + [SMALL_STATE(1333)] = 32899, + [SMALL_STATE(1334)] = 32995, + [SMALL_STATE(1335)] = 33091, + [SMALL_STATE(1336)] = 33187, + [SMALL_STATE(1337)] = 33283, + [SMALL_STATE(1338)] = 33379, + [SMALL_STATE(1339)] = 33475, + [SMALL_STATE(1340)] = 33571, + [SMALL_STATE(1341)] = 33667, + [SMALL_STATE(1342)] = 33763, + [SMALL_STATE(1343)] = 33859, + [SMALL_STATE(1344)] = 33939, + [SMALL_STATE(1345)] = 34009, + [SMALL_STATE(1346)] = 34089, + [SMALL_STATE(1347)] = 34185, + [SMALL_STATE(1348)] = 34281, + [SMALL_STATE(1349)] = 34377, + [SMALL_STATE(1350)] = 34473, + [SMALL_STATE(1351)] = 34569, + [SMALL_STATE(1352)] = 34665, + [SMALL_STATE(1353)] = 34761, + [SMALL_STATE(1354)] = 34857, + [SMALL_STATE(1355)] = 34953, + [SMALL_STATE(1356)] = 35049, + [SMALL_STATE(1357)] = 35145, + [SMALL_STATE(1358)] = 35241, + [SMALL_STATE(1359)] = 35337, + [SMALL_STATE(1360)] = 35433, + [SMALL_STATE(1361)] = 35529, + [SMALL_STATE(1362)] = 35625, + [SMALL_STATE(1363)] = 35721, + [SMALL_STATE(1364)] = 35817, + [SMALL_STATE(1365)] = 35913, + [SMALL_STATE(1366)] = 36009, + [SMALL_STATE(1367)] = 36105, + [SMALL_STATE(1368)] = 36201, + [SMALL_STATE(1369)] = 36297, + [SMALL_STATE(1370)] = 36393, + [SMALL_STATE(1371)] = 36489, + [SMALL_STATE(1372)] = 36585, + [SMALL_STATE(1373)] = 36681, + [SMALL_STATE(1374)] = 36777, + [SMALL_STATE(1375)] = 36873, + [SMALL_STATE(1376)] = 36969, + [SMALL_STATE(1377)] = 37065, + [SMALL_STATE(1378)] = 37161, + [SMALL_STATE(1379)] = 37257, + [SMALL_STATE(1380)] = 37353, + [SMALL_STATE(1381)] = 37449, + [SMALL_STATE(1382)] = 37545, + [SMALL_STATE(1383)] = 37641, + [SMALL_STATE(1384)] = 37737, + [SMALL_STATE(1385)] = 37833, + [SMALL_STATE(1386)] = 37929, + [SMALL_STATE(1387)] = 38025, + [SMALL_STATE(1388)] = 38121, + [SMALL_STATE(1389)] = 38217, + [SMALL_STATE(1390)] = 38313, + [SMALL_STATE(1391)] = 38409, + [SMALL_STATE(1392)] = 38505, + [SMALL_STATE(1393)] = 38601, + [SMALL_STATE(1394)] = 38697, + [SMALL_STATE(1395)] = 38793, + [SMALL_STATE(1396)] = 38889, + [SMALL_STATE(1397)] = 38985, + [SMALL_STATE(1398)] = 39081, + [SMALL_STATE(1399)] = 39177, + [SMALL_STATE(1400)] = 39273, + [SMALL_STATE(1401)] = 39369, + [SMALL_STATE(1402)] = 39465, + [SMALL_STATE(1403)] = 39561, + [SMALL_STATE(1404)] = 39657, + [SMALL_STATE(1405)] = 39753, + [SMALL_STATE(1406)] = 39849, + [SMALL_STATE(1407)] = 39945, + [SMALL_STATE(1408)] = 40041, + [SMALL_STATE(1409)] = 40137, + [SMALL_STATE(1410)] = 40233, + [SMALL_STATE(1411)] = 40329, + [SMALL_STATE(1412)] = 40425, + [SMALL_STATE(1413)] = 40521, + [SMALL_STATE(1414)] = 40617, + [SMALL_STATE(1415)] = 40713, + [SMALL_STATE(1416)] = 40809, + [SMALL_STATE(1417)] = 40905, + [SMALL_STATE(1418)] = 41001, + [SMALL_STATE(1419)] = 41097, + [SMALL_STATE(1420)] = 41193, + [SMALL_STATE(1421)] = 41289, + [SMALL_STATE(1422)] = 41385, + [SMALL_STATE(1423)] = 41481, + [SMALL_STATE(1424)] = 41577, + [SMALL_STATE(1425)] = 41673, + [SMALL_STATE(1426)] = 41769, + [SMALL_STATE(1427)] = 41865, + [SMALL_STATE(1428)] = 41961, + [SMALL_STATE(1429)] = 42057, + [SMALL_STATE(1430)] = 42153, + [SMALL_STATE(1431)] = 42249, + [SMALL_STATE(1432)] = 42345, + [SMALL_STATE(1433)] = 42441, + [SMALL_STATE(1434)] = 42537, + [SMALL_STATE(1435)] = 42633, + [SMALL_STATE(1436)] = 42729, + [SMALL_STATE(1437)] = 42825, + [SMALL_STATE(1438)] = 42921, + [SMALL_STATE(1439)] = 43017, + [SMALL_STATE(1440)] = 43113, + [SMALL_STATE(1441)] = 43209, + [SMALL_STATE(1442)] = 43305, + [SMALL_STATE(1443)] = 43401, + [SMALL_STATE(1444)] = 43497, + [SMALL_STATE(1445)] = 43593, + [SMALL_STATE(1446)] = 43689, + [SMALL_STATE(1447)] = 43785, + [SMALL_STATE(1448)] = 43881, + [SMALL_STATE(1449)] = 43977, + [SMALL_STATE(1450)] = 44073, + [SMALL_STATE(1451)] = 44169, + [SMALL_STATE(1452)] = 44265, + [SMALL_STATE(1453)] = 44361, + [SMALL_STATE(1454)] = 44457, + [SMALL_STATE(1455)] = 44553, + [SMALL_STATE(1456)] = 44649, + [SMALL_STATE(1457)] = 44745, + [SMALL_STATE(1458)] = 44841, + [SMALL_STATE(1459)] = 44937, + [SMALL_STATE(1460)] = 45033, + [SMALL_STATE(1461)] = 45129, + [SMALL_STATE(1462)] = 45225, + [SMALL_STATE(1463)] = 45321, + [SMALL_STATE(1464)] = 45417, + [SMALL_STATE(1465)] = 45513, + [SMALL_STATE(1466)] = 45609, + [SMALL_STATE(1467)] = 45705, + [SMALL_STATE(1468)] = 45801, + [SMALL_STATE(1469)] = 45897, + [SMALL_STATE(1470)] = 45993, + [SMALL_STATE(1471)] = 46089, + [SMALL_STATE(1472)] = 46185, + [SMALL_STATE(1473)] = 46281, + [SMALL_STATE(1474)] = 46377, + [SMALL_STATE(1475)] = 46473, + [SMALL_STATE(1476)] = 46569, + [SMALL_STATE(1477)] = 46665, + [SMALL_STATE(1478)] = 46761, + [SMALL_STATE(1479)] = 46857, + [SMALL_STATE(1480)] = 46953, + [SMALL_STATE(1481)] = 47049, + [SMALL_STATE(1482)] = 47145, + [SMALL_STATE(1483)] = 47241, + [SMALL_STATE(1484)] = 47337, + [SMALL_STATE(1485)] = 47433, + [SMALL_STATE(1486)] = 47529, + [SMALL_STATE(1487)] = 47625, + [SMALL_STATE(1488)] = 47721, + [SMALL_STATE(1489)] = 47817, + [SMALL_STATE(1490)] = 47913, + [SMALL_STATE(1491)] = 48009, + [SMALL_STATE(1492)] = 48105, + [SMALL_STATE(1493)] = 48201, + [SMALL_STATE(1494)] = 48297, + [SMALL_STATE(1495)] = 48393, + [SMALL_STATE(1496)] = 48489, + [SMALL_STATE(1497)] = 48585, + [SMALL_STATE(1498)] = 48681, + [SMALL_STATE(1499)] = 48777, + [SMALL_STATE(1500)] = 48873, + [SMALL_STATE(1501)] = 48969, + [SMALL_STATE(1502)] = 49065, + [SMALL_STATE(1503)] = 49128, + [SMALL_STATE(1504)] = 49181, + [SMALL_STATE(1505)] = 49234, + [SMALL_STATE(1506)] = 49285, + [SMALL_STATE(1507)] = 49335, + [SMALL_STATE(1508)] = 49385, + [SMALL_STATE(1509)] = 49435, + [SMALL_STATE(1510)] = 49485, + [SMALL_STATE(1511)] = 49521, + [SMALL_STATE(1512)] = 49557, + [SMALL_STATE(1513)] = 49593, + [SMALL_STATE(1514)] = 49639, + [SMALL_STATE(1515)] = 49685, + [SMALL_STATE(1516)] = 49723, + [SMALL_STATE(1517)] = 49758, + [SMALL_STATE(1518)] = 49803, + [SMALL_STATE(1519)] = 49848, + [SMALL_STATE(1520)] = 49883, + [SMALL_STATE(1521)] = 49913, + [SMALL_STATE(1522)] = 49943, + [SMALL_STATE(1523)] = 49973, + [SMALL_STATE(1524)] = 50003, + [SMALL_STATE(1525)] = 50033, + [SMALL_STATE(1526)] = 50063, + [SMALL_STATE(1527)] = 50093, + [SMALL_STATE(1528)] = 50123, + [SMALL_STATE(1529)] = 50153, + [SMALL_STATE(1530)] = 50189, + [SMALL_STATE(1531)] = 50219, + [SMALL_STATE(1532)] = 50249, + [SMALL_STATE(1533)] = 50279, + [SMALL_STATE(1534)] = 50308, + [SMALL_STATE(1535)] = 50347, + [SMALL_STATE(1536)] = 50376, + [SMALL_STATE(1537)] = 50409, + [SMALL_STATE(1538)] = 50442, + [SMALL_STATE(1539)] = 50475, + [SMALL_STATE(1540)] = 50504, + [SMALL_STATE(1541)] = 50533, + [SMALL_STATE(1542)] = 50562, + [SMALL_STATE(1543)] = 50597, + [SMALL_STATE(1544)] = 50626, + [SMALL_STATE(1545)] = 50655, + [SMALL_STATE(1546)] = 50684, + [SMALL_STATE(1547)] = 50723, + [SMALL_STATE(1548)] = 50752, + [SMALL_STATE(1549)] = 50781, + [SMALL_STATE(1550)] = 50810, + [SMALL_STATE(1551)] = 50839, + [SMALL_STATE(1552)] = 50871, + [SMALL_STATE(1553)] = 50909, + [SMALL_STATE(1554)] = 50947, + [SMALL_STATE(1555)] = 50987, + [SMALL_STATE(1556)] = 51019, + [SMALL_STATE(1557)] = 51057, + [SMALL_STATE(1558)] = 51093, + [SMALL_STATE(1559)] = 51129, + [SMALL_STATE(1560)] = 51159, + [SMALL_STATE(1561)] = 51189, + [SMALL_STATE(1562)] = 51221, + [SMALL_STATE(1563)] = 51257, + [SMALL_STATE(1564)] = 51287, + [SMALL_STATE(1565)] = 51323, + [SMALL_STATE(1566)] = 51353, + [SMALL_STATE(1567)] = 51389, + [SMALL_STATE(1568)] = 51425, + [SMALL_STATE(1569)] = 51455, + [SMALL_STATE(1570)] = 51485, + [SMALL_STATE(1571)] = 51517, + [SMALL_STATE(1572)] = 51547, + [SMALL_STATE(1573)] = 51577, + [SMALL_STATE(1574)] = 51609, + [SMALL_STATE(1575)] = 51639, + [SMALL_STATE(1576)] = 51674, + [SMALL_STATE(1577)] = 51703, + [SMALL_STATE(1578)] = 51738, + [SMALL_STATE(1579)] = 51773, + [SMALL_STATE(1580)] = 51808, + [SMALL_STATE(1581)] = 51843, + [SMALL_STATE(1582)] = 51878, + [SMALL_STATE(1583)] = 51913, + [SMALL_STATE(1584)] = 51948, + [SMALL_STATE(1585)] = 51983, + [SMALL_STATE(1586)] = 52018, + [SMALL_STATE(1587)] = 52053, + [SMALL_STATE(1588)] = 52088, + [SMALL_STATE(1589)] = 52123, + [SMALL_STATE(1590)] = 52158, + [SMALL_STATE(1591)] = 52193, + [SMALL_STATE(1592)] = 52228, + [SMALL_STATE(1593)] = 52263, + [SMALL_STATE(1594)] = 52298, + [SMALL_STATE(1595)] = 52333, + [SMALL_STATE(1596)] = 52368, + [SMALL_STATE(1597)] = 52403, + [SMALL_STATE(1598)] = 52438, + [SMALL_STATE(1599)] = 52467, + [SMALL_STATE(1600)] = 52502, + [SMALL_STATE(1601)] = 52537, + [SMALL_STATE(1602)] = 52572, + [SMALL_STATE(1603)] = 52601, + [SMALL_STATE(1604)] = 52636, + [SMALL_STATE(1605)] = 52671, + [SMALL_STATE(1606)] = 52706, + [SMALL_STATE(1607)] = 52741, + [SMALL_STATE(1608)] = 52776, + [SMALL_STATE(1609)] = 52811, + [SMALL_STATE(1610)] = 52846, + [SMALL_STATE(1611)] = 52881, + [SMALL_STATE(1612)] = 52916, + [SMALL_STATE(1613)] = 52945, + [SMALL_STATE(1614)] = 52980, + [SMALL_STATE(1615)] = 53015, + [SMALL_STATE(1616)] = 53044, + [SMALL_STATE(1617)] = 53079, + [SMALL_STATE(1618)] = 53114, + [SMALL_STATE(1619)] = 53149, + [SMALL_STATE(1620)] = 53184, + [SMALL_STATE(1621)] = 53219, + [SMALL_STATE(1622)] = 53248, + [SMALL_STATE(1623)] = 53283, + [SMALL_STATE(1624)] = 53318, + [SMALL_STATE(1625)] = 53353, + [SMALL_STATE(1626)] = 53388, + [SMALL_STATE(1627)] = 53423, + [SMALL_STATE(1628)] = 53458, + [SMALL_STATE(1629)] = 53493, + [SMALL_STATE(1630)] = 53525, + [SMALL_STATE(1631)] = 53550, + [SMALL_STATE(1632)] = 53575, + [SMALL_STATE(1633)] = 53600, + [SMALL_STATE(1634)] = 53625, + [SMALL_STATE(1635)] = 53650, + [SMALL_STATE(1636)] = 53675, + [SMALL_STATE(1637)] = 53700, + [SMALL_STATE(1638)] = 53725, + [SMALL_STATE(1639)] = 53750, + [SMALL_STATE(1640)] = 53775, + [SMALL_STATE(1641)] = 53795, + [SMALL_STATE(1642)] = 53809, + [SMALL_STATE(1643)] = 53823, + [SMALL_STATE(1644)] = 53837, + [SMALL_STATE(1645)] = 53847, + [SMALL_STATE(1646)] = 53857, + [SMALL_STATE(1647)] = 53867, + [SMALL_STATE(1648)] = 53877, + [SMALL_STATE(1649)] = 53887, + [SMALL_STATE(1650)] = 53897, + [SMALL_STATE(1651)] = 53909, + [SMALL_STATE(1652)] = 53919, + [SMALL_STATE(1653)] = 53929, + [SMALL_STATE(1654)] = 53939, + [SMALL_STATE(1655)] = 53949, + [SMALL_STATE(1656)] = 53959, + [SMALL_STATE(1657)] = 53969, + [SMALL_STATE(1658)] = 53979, + [SMALL_STATE(1659)] = 53989, + [SMALL_STATE(1660)] = 53999, + [SMALL_STATE(1661)] = 54012, + [SMALL_STATE(1662)] = 54025, + [SMALL_STATE(1663)] = 54038, + [SMALL_STATE(1664)] = 54051, + [SMALL_STATE(1665)] = 54064, + [SMALL_STATE(1666)] = 54075, + [SMALL_STATE(1667)] = 54088, + [SMALL_STATE(1668)] = 54101, + [SMALL_STATE(1669)] = 54114, + [SMALL_STATE(1670)] = 54127, + [SMALL_STATE(1671)] = 54140, + [SMALL_STATE(1672)] = 54153, + [SMALL_STATE(1673)] = 54166, + [SMALL_STATE(1674)] = 54177, + [SMALL_STATE(1675)] = 54190, + [SMALL_STATE(1676)] = 54203, + [SMALL_STATE(1677)] = 54216, + [SMALL_STATE(1678)] = 54229, + [SMALL_STATE(1679)] = 54242, + [SMALL_STATE(1680)] = 54255, + [SMALL_STATE(1681)] = 54268, + [SMALL_STATE(1682)] = 54281, + [SMALL_STATE(1683)] = 54294, + [SMALL_STATE(1684)] = 54307, + [SMALL_STATE(1685)] = 54317, + [SMALL_STATE(1686)] = 54327, + [SMALL_STATE(1687)] = 54337, + [SMALL_STATE(1688)] = 54347, + [SMALL_STATE(1689)] = 54357, + [SMALL_STATE(1690)] = 54367, + [SMALL_STATE(1691)] = 54377, + [SMALL_STATE(1692)] = 54387, + [SMALL_STATE(1693)] = 54397, + [SMALL_STATE(1694)] = 54407, + [SMALL_STATE(1695)] = 54417, + [SMALL_STATE(1696)] = 54427, + [SMALL_STATE(1697)] = 54437, + [SMALL_STATE(1698)] = 54447, + [SMALL_STATE(1699)] = 54457, + [SMALL_STATE(1700)] = 54467, + [SMALL_STATE(1701)] = 54477, + [SMALL_STATE(1702)] = 54485, + [SMALL_STATE(1703)] = 54495, + [SMALL_STATE(1704)] = 54505, + [SMALL_STATE(1705)] = 54513, + [SMALL_STATE(1706)] = 54523, + [SMALL_STATE(1707)] = 54533, + [SMALL_STATE(1708)] = 54543, + [SMALL_STATE(1709)] = 54553, + [SMALL_STATE(1710)] = 54563, + [SMALL_STATE(1711)] = 54573, + [SMALL_STATE(1712)] = 54583, + [SMALL_STATE(1713)] = 54593, + [SMALL_STATE(1714)] = 54603, + [SMALL_STATE(1715)] = 54613, + [SMALL_STATE(1716)] = 54623, + [SMALL_STATE(1717)] = 54633, + [SMALL_STATE(1718)] = 54643, + [SMALL_STATE(1719)] = 54653, + [SMALL_STATE(1720)] = 54663, + [SMALL_STATE(1721)] = 54673, + [SMALL_STATE(1722)] = 54683, + [SMALL_STATE(1723)] = 54693, + [SMALL_STATE(1724)] = 54703, + [SMALL_STATE(1725)] = 54713, + [SMALL_STATE(1726)] = 54723, + [SMALL_STATE(1727)] = 54733, + [SMALL_STATE(1728)] = 54743, + [SMALL_STATE(1729)] = 54753, + [SMALL_STATE(1730)] = 54763, + [SMALL_STATE(1731)] = 54773, + [SMALL_STATE(1732)] = 54781, + [SMALL_STATE(1733)] = 54791, + [SMALL_STATE(1734)] = 54801, + [SMALL_STATE(1735)] = 54811, + [SMALL_STATE(1736)] = 54821, + [SMALL_STATE(1737)] = 54831, + [SMALL_STATE(1738)] = 54839, + [SMALL_STATE(1739)] = 54849, + [SMALL_STATE(1740)] = 54859, + [SMALL_STATE(1741)] = 54869, + [SMALL_STATE(1742)] = 54876, + [SMALL_STATE(1743)] = 54883, + [SMALL_STATE(1744)] = 54890, + [SMALL_STATE(1745)] = 54897, + [SMALL_STATE(1746)] = 54904, + [SMALL_STATE(1747)] = 54911, + [SMALL_STATE(1748)] = 54918, + [SMALL_STATE(1749)] = 54925, + [SMALL_STATE(1750)] = 54932, + [SMALL_STATE(1751)] = 54939, + [SMALL_STATE(1752)] = 54946, + [SMALL_STATE(1753)] = 54953, + [SMALL_STATE(1754)] = 54960, + [SMALL_STATE(1755)] = 54967, + [SMALL_STATE(1756)] = 54974, + [SMALL_STATE(1757)] = 54981, + [SMALL_STATE(1758)] = 54988, + [SMALL_STATE(1759)] = 54995, + [SMALL_STATE(1760)] = 55002, + [SMALL_STATE(1761)] = 55009, + [SMALL_STATE(1762)] = 55016, + [SMALL_STATE(1763)] = 55023, + [SMALL_STATE(1764)] = 55030, + [SMALL_STATE(1765)] = 55037, + [SMALL_STATE(1766)] = 55044, + [SMALL_STATE(1767)] = 55051, + [SMALL_STATE(1768)] = 55058, + [SMALL_STATE(1769)] = 55065, + [SMALL_STATE(1770)] = 55072, + [SMALL_STATE(1771)] = 55079, + [SMALL_STATE(1772)] = 55086, + [SMALL_STATE(1773)] = 55093, + [SMALL_STATE(1774)] = 55100, + [SMALL_STATE(1775)] = 55107, + [SMALL_STATE(1776)] = 55114, + [SMALL_STATE(1777)] = 55121, + [SMALL_STATE(1778)] = 55128, + [SMALL_STATE(1779)] = 55135, + [SMALL_STATE(1780)] = 55142, + [SMALL_STATE(1781)] = 55149, + [SMALL_STATE(1782)] = 55156, + [SMALL_STATE(1783)] = 55163, + [SMALL_STATE(1784)] = 55170, + [SMALL_STATE(1785)] = 55177, + [SMALL_STATE(1786)] = 55184, + [SMALL_STATE(1787)] = 55191, + [SMALL_STATE(1788)] = 55198, + [SMALL_STATE(1789)] = 55205, + [SMALL_STATE(1790)] = 55212, + [SMALL_STATE(1791)] = 55219, + [SMALL_STATE(1792)] = 55226, + [SMALL_STATE(1793)] = 55233, + [SMALL_STATE(1794)] = 55240, + [SMALL_STATE(1795)] = 55247, + [SMALL_STATE(1796)] = 55254, + [SMALL_STATE(1797)] = 55261, + [SMALL_STATE(1798)] = 55268, + [SMALL_STATE(1799)] = 55275, + [SMALL_STATE(1800)] = 55282, + [SMALL_STATE(1801)] = 55289, + [SMALL_STATE(1802)] = 55296, + [SMALL_STATE(1803)] = 55303, + [SMALL_STATE(1804)] = 55310, + [SMALL_STATE(1805)] = 55317, + [SMALL_STATE(1806)] = 55324, + [SMALL_STATE(1807)] = 55331, + [SMALL_STATE(1808)] = 55338, + [SMALL_STATE(1809)] = 55345, + [SMALL_STATE(1810)] = 55352, + [SMALL_STATE(1811)] = 55359, + [SMALL_STATE(1812)] = 55366, + [SMALL_STATE(1813)] = 55373, + [SMALL_STATE(1814)] = 55380, + [SMALL_STATE(1815)] = 55387, + [SMALL_STATE(1816)] = 55394, + [SMALL_STATE(1817)] = 55401, + [SMALL_STATE(1818)] = 55408, + [SMALL_STATE(1819)] = 55415, + [SMALL_STATE(1820)] = 55422, + [SMALL_STATE(1821)] = 55429, + [SMALL_STATE(1822)] = 55436, + [SMALL_STATE(1823)] = 55443, + [SMALL_STATE(1824)] = 55450, + [SMALL_STATE(1825)] = 55457, + [SMALL_STATE(1826)] = 55464, + [SMALL_STATE(1827)] = 55471, + [SMALL_STATE(1828)] = 55478, + [SMALL_STATE(1829)] = 55485, + [SMALL_STATE(1830)] = 55492, + [SMALL_STATE(1831)] = 55499, + [SMALL_STATE(1832)] = 55506, + [SMALL_STATE(1833)] = 55513, + [SMALL_STATE(1834)] = 55520, + [SMALL_STATE(1835)] = 55527, + [SMALL_STATE(1836)] = 55534, + [SMALL_STATE(1837)] = 55541, + [SMALL_STATE(1838)] = 55548, + [SMALL_STATE(1839)] = 55555, + [SMALL_STATE(1840)] = 55562, + [SMALL_STATE(1841)] = 55569, + [SMALL_STATE(1842)] = 55576, + [SMALL_STATE(1843)] = 55583, + [SMALL_STATE(1844)] = 55590, + [SMALL_STATE(1845)] = 55597, + [SMALL_STATE(1846)] = 55604, + [SMALL_STATE(1847)] = 55611, + [SMALL_STATE(1848)] = 55618, + [SMALL_STATE(1849)] = 55625, + [SMALL_STATE(1850)] = 55632, + [SMALL_STATE(1851)] = 55639, + [SMALL_STATE(1852)] = 55646, + [SMALL_STATE(1853)] = 55653, + [SMALL_STATE(1854)] = 55660, + [SMALL_STATE(1855)] = 55667, + [SMALL_STATE(1856)] = 55674, + [SMALL_STATE(1857)] = 55681, + [SMALL_STATE(1858)] = 55688, + [SMALL_STATE(1859)] = 55695, + [SMALL_STATE(1860)] = 55702, + [SMALL_STATE(1861)] = 55709, + [SMALL_STATE(1862)] = 55716, + [SMALL_STATE(1863)] = 55723, + [SMALL_STATE(1864)] = 55730, + [SMALL_STATE(1865)] = 55737, + [SMALL_STATE(1866)] = 55744, + [SMALL_STATE(1867)] = 55751, + [SMALL_STATE(1868)] = 55758, + [SMALL_STATE(1869)] = 55765, + [SMALL_STATE(1870)] = 55772, + [SMALL_STATE(1871)] = 55779, + [SMALL_STATE(1872)] = 55786, + [SMALL_STATE(1873)] = 55793, + [SMALL_STATE(1874)] = 55800, + [SMALL_STATE(1875)] = 55807, + [SMALL_STATE(1876)] = 55814, + [SMALL_STATE(1877)] = 55821, + [SMALL_STATE(1878)] = 55828, + [SMALL_STATE(1879)] = 55835, + [SMALL_STATE(1880)] = 55842, + [SMALL_STATE(1881)] = 55849, + [SMALL_STATE(1882)] = 55856, + [SMALL_STATE(1883)] = 55863, + [SMALL_STATE(1884)] = 55870, + [SMALL_STATE(1885)] = 55877, + [SMALL_STATE(1886)] = 55884, + [SMALL_STATE(1887)] = 55891, + [SMALL_STATE(1888)] = 55898, + [SMALL_STATE(1889)] = 55905, + [SMALL_STATE(1890)] = 55912, + [SMALL_STATE(1891)] = 55919, + [SMALL_STATE(1892)] = 55926, + [SMALL_STATE(1893)] = 55933, + [SMALL_STATE(1894)] = 55940, + [SMALL_STATE(1895)] = 55947, + [SMALL_STATE(1896)] = 55954, + [SMALL_STATE(1897)] = 55961, + [SMALL_STATE(1898)] = 55968, + [SMALL_STATE(1899)] = 55975, + [SMALL_STATE(1900)] = 55982, + [SMALL_STATE(1901)] = 55989, + [SMALL_STATE(1902)] = 55996, + [SMALL_STATE(1903)] = 56003, + [SMALL_STATE(1904)] = 56010, + [SMALL_STATE(1905)] = 56017, + [SMALL_STATE(1906)] = 56024, + [SMALL_STATE(1907)] = 56031, + [SMALL_STATE(1908)] = 56038, + [SMALL_STATE(1909)] = 56045, + [SMALL_STATE(1910)] = 56052, + [SMALL_STATE(1911)] = 56059, + [SMALL_STATE(1912)] = 56066, + [SMALL_STATE(1913)] = 56073, + [SMALL_STATE(1914)] = 56080, + [SMALL_STATE(1915)] = 56087, + [SMALL_STATE(1916)] = 56094, + [SMALL_STATE(1917)] = 56101, + [SMALL_STATE(1918)] = 56108, + [SMALL_STATE(1919)] = 56115, + [SMALL_STATE(1920)] = 56122, + [SMALL_STATE(1921)] = 56129, + [SMALL_STATE(1922)] = 56136, + [SMALL_STATE(1923)] = 56143, + [SMALL_STATE(1924)] = 56150, + [SMALL_STATE(1925)] = 56157, + [SMALL_STATE(1926)] = 56164, + [SMALL_STATE(1927)] = 56171, + [SMALL_STATE(1928)] = 56178, + [SMALL_STATE(1929)] = 56185, + [SMALL_STATE(1930)] = 56192, + [SMALL_STATE(1931)] = 56199, + [SMALL_STATE(1932)] = 56206, + [SMALL_STATE(1933)] = 56213, + [SMALL_STATE(1934)] = 56220, + [SMALL_STATE(1935)] = 56227, + [SMALL_STATE(1936)] = 56234, + [SMALL_STATE(1937)] = 56241, + [SMALL_STATE(1938)] = 56248, + [SMALL_STATE(1939)] = 56255, + [SMALL_STATE(1940)] = 56262, + [SMALL_STATE(1941)] = 56269, + [SMALL_STATE(1942)] = 56276, + [SMALL_STATE(1943)] = 56283, + [SMALL_STATE(1944)] = 56290, + [SMALL_STATE(1945)] = 56297, + [SMALL_STATE(1946)] = 56304, + [SMALL_STATE(1947)] = 56311, + [SMALL_STATE(1948)] = 56318, + [SMALL_STATE(1949)] = 56325, + [SMALL_STATE(1950)] = 56332, + [SMALL_STATE(1951)] = 56339, + [SMALL_STATE(1952)] = 56346, + [SMALL_STATE(1953)] = 56353, + [SMALL_STATE(1954)] = 56360, + [SMALL_STATE(1955)] = 56367, + [SMALL_STATE(1956)] = 56374, + [SMALL_STATE(1957)] = 56381, + [SMALL_STATE(1958)] = 56388, + [SMALL_STATE(1959)] = 56395, + [SMALL_STATE(1960)] = 56402, + [SMALL_STATE(1961)] = 56409, + [SMALL_STATE(1962)] = 56416, + [SMALL_STATE(1963)] = 56423, + [SMALL_STATE(1964)] = 56430, + [SMALL_STATE(1965)] = 56437, + [SMALL_STATE(1966)] = 56444, + [SMALL_STATE(1967)] = 56451, + [SMALL_STATE(1968)] = 56458, + [SMALL_STATE(1969)] = 56465, + [SMALL_STATE(1970)] = 56472, + [SMALL_STATE(1971)] = 56479, + [SMALL_STATE(1972)] = 56486, + [SMALL_STATE(1973)] = 56493, + [SMALL_STATE(1974)] = 56500, + [SMALL_STATE(1975)] = 56507, + [SMALL_STATE(1976)] = 56514, + [SMALL_STATE(1977)] = 56521, + [SMALL_STATE(1978)] = 56528, + [SMALL_STATE(1979)] = 56535, + [SMALL_STATE(1980)] = 56542, + [SMALL_STATE(1981)] = 56549, + [SMALL_STATE(1982)] = 56556, + [SMALL_STATE(1983)] = 56563, + [SMALL_STATE(1984)] = 56570, + [SMALL_STATE(1985)] = 56577, + [SMALL_STATE(1986)] = 56584, + [SMALL_STATE(1987)] = 56591, + [SMALL_STATE(1988)] = 56598, + [SMALL_STATE(1989)] = 56605, + [SMALL_STATE(1990)] = 56612, + [SMALL_STATE(1991)] = 56619, + [SMALL_STATE(1992)] = 56626, + [SMALL_STATE(1993)] = 56633, + [SMALL_STATE(1994)] = 56640, + [SMALL_STATE(1995)] = 56647, + [SMALL_STATE(1996)] = 56654, + [SMALL_STATE(1997)] = 56661, + [SMALL_STATE(1998)] = 56668, + [SMALL_STATE(1999)] = 56675, + [SMALL_STATE(2000)] = 56682, + [SMALL_STATE(2001)] = 56689, + [SMALL_STATE(2002)] = 56696, + [SMALL_STATE(2003)] = 56703, + [SMALL_STATE(2004)] = 56710, + [SMALL_STATE(2005)] = 56717, + [SMALL_STATE(2006)] = 56724, + [SMALL_STATE(2007)] = 56731, + [SMALL_STATE(2008)] = 56738, + [SMALL_STATE(2009)] = 56745, + [SMALL_STATE(2010)] = 56752, + [SMALL_STATE(2011)] = 56759, + [SMALL_STATE(2012)] = 56766, + [SMALL_STATE(2013)] = 56773, + [SMALL_STATE(2014)] = 56780, + [SMALL_STATE(2015)] = 56787, + [SMALL_STATE(2016)] = 56794, + [SMALL_STATE(2017)] = 56801, + [SMALL_STATE(2018)] = 56808, + [SMALL_STATE(2019)] = 56815, + [SMALL_STATE(2020)] = 56822, + [SMALL_STATE(2021)] = 56829, + [SMALL_STATE(2022)] = 56836, + [SMALL_STATE(2023)] = 56843, + [SMALL_STATE(2024)] = 56850, + [SMALL_STATE(2025)] = 56857, + [SMALL_STATE(2026)] = 56864, + [SMALL_STATE(2027)] = 56871, + [SMALL_STATE(2028)] = 56878, + [SMALL_STATE(2029)] = 56885, + [SMALL_STATE(2030)] = 56892, + [SMALL_STATE(2031)] = 56899, + [SMALL_STATE(2032)] = 56906, + [SMALL_STATE(2033)] = 56913, + [SMALL_STATE(2034)] = 56920, + [SMALL_STATE(2035)] = 56927, + [SMALL_STATE(2036)] = 56934, + [SMALL_STATE(2037)] = 56941, + [SMALL_STATE(2038)] = 56948, + [SMALL_STATE(2039)] = 56955, + [SMALL_STATE(2040)] = 56962, + [SMALL_STATE(2041)] = 56969, + [SMALL_STATE(2042)] = 56976, + [SMALL_STATE(2043)] = 56983, + [SMALL_STATE(2044)] = 56990, + [SMALL_STATE(2045)] = 56997, + [SMALL_STATE(2046)] = 57004, + [SMALL_STATE(2047)] = 57011, + [SMALL_STATE(2048)] = 57018, + [SMALL_STATE(2049)] = 57025, + [SMALL_STATE(2050)] = 57032, + [SMALL_STATE(2051)] = 57039, + [SMALL_STATE(2052)] = 57046, + [SMALL_STATE(2053)] = 57053, + [SMALL_STATE(2054)] = 57060, + [SMALL_STATE(2055)] = 57067, + [SMALL_STATE(2056)] = 57074, + [SMALL_STATE(2057)] = 57081, + [SMALL_STATE(2058)] = 57088, + [SMALL_STATE(2059)] = 57095, + [SMALL_STATE(2060)] = 57102, + [SMALL_STATE(2061)] = 57109, + [SMALL_STATE(2062)] = 57116, + [SMALL_STATE(2063)] = 57123, + [SMALL_STATE(2064)] = 57130, + [SMALL_STATE(2065)] = 57137, + [SMALL_STATE(2066)] = 57144, + [SMALL_STATE(2067)] = 57151, + [SMALL_STATE(2068)] = 57158, + [SMALL_STATE(2069)] = 57165, + [SMALL_STATE(2070)] = 57172, + [SMALL_STATE(2071)] = 57179, + [SMALL_STATE(2072)] = 57186, + [SMALL_STATE(2073)] = 57193, + [SMALL_STATE(2074)] = 57200, + [SMALL_STATE(2075)] = 57207, + [SMALL_STATE(2076)] = 57214, + [SMALL_STATE(2077)] = 57221, + [SMALL_STATE(2078)] = 57228, + [SMALL_STATE(2079)] = 57235, + [SMALL_STATE(2080)] = 57242, + [SMALL_STATE(2081)] = 57249, + [SMALL_STATE(2082)] = 57256, + [SMALL_STATE(2083)] = 57263, + [SMALL_STATE(2084)] = 57270, + [SMALL_STATE(2085)] = 57277, + [SMALL_STATE(2086)] = 57284, + [SMALL_STATE(2087)] = 57291, + [SMALL_STATE(2088)] = 57298, + [SMALL_STATE(2089)] = 57305, + [SMALL_STATE(2090)] = 57312, + [SMALL_STATE(2091)] = 57319, + [SMALL_STATE(2092)] = 57326, + [SMALL_STATE(2093)] = 57333, + [SMALL_STATE(2094)] = 57340, + [SMALL_STATE(2095)] = 57347, + [SMALL_STATE(2096)] = 57354, + [SMALL_STATE(2097)] = 57361, + [SMALL_STATE(2098)] = 57368, + [SMALL_STATE(2099)] = 57375, + [SMALL_STATE(2100)] = 57382, + [SMALL_STATE(2101)] = 57389, + [SMALL_STATE(2102)] = 57396, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [51] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [79] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(161), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(985), - [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(862), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(407), - [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(407), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(408), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(599), - [236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(768), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(615), - [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(277), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(666), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1170), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1171), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(873), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1173), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1174), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1247), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1029), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1077), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(251), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(987), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1028), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(168), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), - [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(161), - [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(985), - [326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(862), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(407), - [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(407), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(408), - [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(599), - [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(768), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(615), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(277), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(666), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1170), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1171), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(873), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1173), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1174), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1247), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1029), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1077), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(251), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(987), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1028), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(168), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(162), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(864), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(667), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(254), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(737), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1121), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1122), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(608), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1124), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1125), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1241), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1008), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1198), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(293), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1005), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(182), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(162), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(864), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(667), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(254), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(737), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1121), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1122), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(608), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1124), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1125), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1241), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1008), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1198), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(293), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1005), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(182), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(163), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(858), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(870), - [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(323), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(629), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1156), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1157), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(852), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1159), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1160), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1245), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1026), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1091), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(276), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1015), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(184), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(164), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(982), - [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(782), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(481), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(481), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(475), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(582), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(836), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(257), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(871), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1229), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1230), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(681), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1232), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1233), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1254), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1002), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1104), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(252), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1006), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(195), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(163), - [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(858), - [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(870), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(323), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(629), - [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1156), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1157), - [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(852), - [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1159), - [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1160), - [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1245), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1026), - [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1091), - [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(276), - [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1015), - [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(184), - [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(164), - [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(982), - [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(782), - [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(481), - [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(481), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(475), - [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(582), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(836), - [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(257), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(871), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1229), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1230), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(681), - [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1232), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1233), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1254), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1002), - [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1104), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(252), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1006), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(195), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(165), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(710), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(682), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(288), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(863), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1098), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1099), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(771), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1101), - [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1102), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1239), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1012), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1093), - [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(255), - [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1014), - [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(201), - [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(165), - [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(710), - [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(682), - [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(288), - [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(863), - [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1098), - [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1099), - [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(771), - [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1101), - [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1102), - [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1239), - [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1012), - [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1093), - [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(255), - [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1014), - [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(201), - [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(166), - [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(739), - [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(315), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(866), - [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1196), - [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1197), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(835), - [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1199), - [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1200), - [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1250), - [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1025), - [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1066), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(312), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1023), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(214), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(166), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(739), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(315), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(866), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1196), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1197), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(835), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1199), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1200), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1250), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1025), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1066), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(312), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1023), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(214), - [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(173), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(817), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(316), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(634), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1213), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1214), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(672), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1216), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1217), - [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1252), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1024), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1191), - [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(310), - [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(997), - [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(216), - [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(173), - [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(817), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(316), - [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(634), - [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1213), - [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1214), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(672), - [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1216), - [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1217), - [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1252), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1024), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1191), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(310), - [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(997), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(216), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(178), - [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(711), - [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(290), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(713), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1185), - [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1186), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(884), - [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1188), - [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1189), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1249), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1013), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1195), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(320), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1007), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(221), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(178), - [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(711), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(290), - [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(713), - [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1185), - [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1186), - [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(884), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1188), - [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1189), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1249), - [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1013), - [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1195), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(320), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1007), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(221), - [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 2), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__context_defined_function, 2), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 1), - [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_built_in_function, 1), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), - [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(546), - [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(990), - [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(708), - [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(906), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(906), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(897), - [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(600), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), - [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(282), - [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(987), - [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1003), - [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(538), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 2), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_built_in_function, 2), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), - [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(409), - [1327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(985), - [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(862), - [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(407), - [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(407), - [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(408), - [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(599), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), - [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(277), - [1350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(987), - [1353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1028), - [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(168), - [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(254), - [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1005), - [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(182), - [1368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(466), - [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(982), - [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(782), - [1377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(481), - [1380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(481), - [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(475), - [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(582), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(257), - [1392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1006), - [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(195), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(169), - [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(614), - [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(776), - [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(652), - [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1141), - [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1142), - [1418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(847), - [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1034), - [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1145), - [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1243), - [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1011), - [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(256), - [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(987), - [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(169), - [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(614), - [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(776), - [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(652), - [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1141), - [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1142), - [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(847), - [1460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1034), - [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1145), - [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1243), - [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1011), - [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(256), - [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(987), - [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(315), - [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1023), - [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(214), - [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(172), - [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(663), - [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(865), - [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(868), - [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1061), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1062), - [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(643), - [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1064), - [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1065), - [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1237), - [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1017), - [1520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(286), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(172), - [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(663), - [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(865), - [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(868), - [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1061), - [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1062), - [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(643), - [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1064), - [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1065), - [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1237), - [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1017), - [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(286), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), - [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(189), - [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(235), - [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(782), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(481), - [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(481), - [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(475), - [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(582), - [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(663), - [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(665), - [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(290), - [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(669), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1105), - [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1231), - [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(684), - [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1223), - [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1215), - [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1207), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1019), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1195), - [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(250), - [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(987), - [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1007), - [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(221), - [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(189), - [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(665), - [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(669), - [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1105), - [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1231), - [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(684), - [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1223), - [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1215), - [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1207), - [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1019), - [1662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(250), - [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(189), - [1668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(665), - [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(669), - [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1105), - [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1231), - [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(684), - [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1223), - [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1215), - [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1207), - [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1019), - [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(250), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(193), - [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(886), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(785), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1221), - [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1222), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(683), - [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1224), - [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1225), - [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1253), - [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(999), - [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(245), - [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(193), - [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(886), - [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(785), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1221), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1222), - [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(683), - [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1224), - [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1225), - [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1253), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(999), - [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(245), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [1816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(340), - [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(990), - [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(708), - [1825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(906), - [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(906), - [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(897), - [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(600), - [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(679), - [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(883), - [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(253), - [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(688), - [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1205), - [1852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1206), - [1855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(775), - [1858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1208), - [1861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1209), - [1864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1251), - [1867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1020), - [1870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1042), - [1873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(273), - [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(987), - [1879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1000), - [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(364), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), - [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(295), - [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1009), - [1923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(352), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), - [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(402), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), - [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(833), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(872), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(274), - [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1032), - [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(364), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 2, .production_id = 1), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 2, .production_id = 1), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 5), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 5), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 5, .production_id = 3), - [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 5, .production_id = 3), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find, 5), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find, 5), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove, 5), - [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remove, 5), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(640), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 6, .production_id = 4), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 6, .production_id = 4), - [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(491), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduce, 7), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduce, 7), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), - [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), - [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), - [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 1), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 1), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 2), - [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 2), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), - [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 2), - [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 2), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), - [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(987), - [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(735), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(885), - [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(794), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(466), - [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(982), - [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(782), - [2213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(481), - [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(481), - [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(475), - [2222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(582), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(274), - [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(987), - [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1032), - [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(364), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 2), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 3), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 3), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [2429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(705), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(983), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), - [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(1116), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2762] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [53] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [69] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(631), + [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1668), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1297), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(633), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(633), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(632), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1041), + [366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1218), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1189), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(498), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1095), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1989), + [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1989), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1990), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1110), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1992), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1993), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2093), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1730), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1761), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(435), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1664), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1709), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(265), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(631), + [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1668), + [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1297), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(633), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(633), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(632), + [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1041), + [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1218), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1189), + [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(498), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1095), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1989), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1989), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1990), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1110), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1992), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1993), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2093), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1730), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1761), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(435), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1664), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1709), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(265), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1211), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1182), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(489), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1469), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2010), + [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(2010), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2011), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1103), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2013), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2014), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2096), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1685), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1783), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(518), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1692), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(271), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1211), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1182), + [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(489), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1469), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2010), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2010), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2011), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1103), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2013), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2014), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2096), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1685), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1783), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(518), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1692), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(271), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(706), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1678), + [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1335), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(713), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(713), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(712), + [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1033), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1216), + [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(473), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1419), + [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1933), + [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1933), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1934), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1125), + [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1936), + [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1937), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2085), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1702), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1852), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(412), + [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1719), + [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(284), + [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1331), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1210), + [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(402), + [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1170), + [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1961), + [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1961), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1962), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1120), + [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1964), + [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1965), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2089), + [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1722), + [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1840), + [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(404), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1725), + [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(286), + [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(706), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1678), + [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1335), + [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(713), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(713), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(712), + [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1033), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1216), + [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(473), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1419), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1933), + [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1933), + [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1934), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1125), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1936), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1937), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2085), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1702), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1852), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(412), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1719), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(284), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1331), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1210), + [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(402), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1170), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1961), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1961), + [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1962), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1120), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1964), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1965), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2089), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1722), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1840), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(404), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1725), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(286), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(261), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1670), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1076), + [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(757), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(757), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(758), + [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1037), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1253), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1191), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(514), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1436), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1982), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1982), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1983), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1113), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1985), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1986), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2092), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1732), + [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1751), + [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(484), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1686), + [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(302), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1214), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1184), + [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(502), + [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1456), + [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2003), + [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2003), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2004), + [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1104), + [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2006), + [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2007), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2095), + [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1723), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1869), + [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(494), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1687), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(296), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1186), + [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(483), + [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1385), + [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1996), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1996), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1997), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1107), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1999), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2000), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2094), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1726), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1772), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(482), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1697), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(311), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1186), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(483), + [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1385), + [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1996), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1996), + [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1997), + [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1107), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1999), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2000), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2094), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1726), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1772), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(482), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1697), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(311), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1214), + [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1184), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(502), + [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1456), + [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2003), + [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(2003), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2004), + [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1104), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2006), + [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2007), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2095), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1723), + [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1869), + [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(494), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1687), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(296), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(261), + [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1670), + [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1076), + [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(757), + [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(757), + [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(758), + [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1037), + [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1253), + [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1191), + [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(514), + [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1436), + [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1982), + [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1982), + [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1983), + [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1113), + [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1985), + [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1986), + [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2092), + [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1732), + [1373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1751), + [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(484), + [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1686), + [1382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(302), + [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(263), + [1388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1489), + [1391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1252), + [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(426), + [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1217), + [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1918), + [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1918), + [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1919), + [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1127), + [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1921), + [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1742), + [1418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2083), + [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1729), + [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1904), + [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(457), + [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1728), + [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(315), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1295), + [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(439), + [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1255), + [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1895), + [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1895), + [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1896), + [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1133), + [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1898), + [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1899), + [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2081), + [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1703), + [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1987), + [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(469), + [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1740), + [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(320), + [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(263), + [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1489), + [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1252), + [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(426), + [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1217), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1918), + [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1918), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1919), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1127), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1921), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1742), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2083), + [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1729), + [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1904), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(457), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1728), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(315), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1295), + [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(439), + [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1255), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1895), + [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1895), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1896), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1133), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1898), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1899), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2081), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1703), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1987), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(469), + [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1740), + [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(320), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(273), + [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1660), + [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1163), + [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(844), + [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(844), + [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(845), + [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1050), + [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1128), + [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(478), + [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1251), + [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2061), + [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2061), + [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2062), + [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1086), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2064), + [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2065), + [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2102), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1688), + [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1876), + [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(480), + [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1715), + [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(338), + [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(274), + [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1296), + [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1193), + [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(525), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1130), + [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1975), + [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1975), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1976), + [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1114), + [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1978), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1979), + [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2091), + [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1699), + [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1760), + [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(512), + [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1720), + [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(341), + [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(273), + [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1660), + [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1163), + [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(844), + [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(844), + [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(845), + [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1050), + [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1128), + [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(478), + [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1251), + [1810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2061), + [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(2061), + [1816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2062), + [1819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1086), + [1822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2064), + [1825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2065), + [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2102), + [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1688), + [1834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1876), + [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(480), + [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1715), + [1843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(338), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(274), + [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1296), + [1878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1193), + [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(525), + [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1130), + [1887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1975), + [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1975), + [1893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1976), + [1896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1114), + [1899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1978), + [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1979), + [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2091), + [1908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1699), + [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1760), + [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(512), + [1917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1720), + [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(341), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [1925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1194), + [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(403), + [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1440), + [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1968), + [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1968), + [1940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1969), + [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1117), + [1946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1971), + [1949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1972), + [1952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2090), + [1955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1735), + [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1802), + [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(401), + [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1718), + [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(325), + [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1194), + [1973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(403), + [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1440), + [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1968), + [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1968), + [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1969), + [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1117), + [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1971), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1972), + [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2090), + [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1735), + [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1802), + [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(401), + [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1718), + [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(325), + [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(280), + [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1137), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(523), + [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1491), + [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2028), + [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(2028), + [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2029), + [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1097), + [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2031), + [2042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2032), + [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2098), + [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1707), + [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1821), + [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(520), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1713), + [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(360), + [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(280), + [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1137), + [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(523), + [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1491), + [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2028), + [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2028), + [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2029), + [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1097), + [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2031), + [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2032), + [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2098), + [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1707), + [2099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1821), + [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(520), + [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1713), + [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(360), + [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(290), + [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1118), + [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1326), + [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(437), + [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1308), + [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1870), + [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1870), + [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1871), + [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1136), + [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1873), + [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1874), + [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2079), + [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1695), + [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1949), + [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(425), + [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1736), + [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(351), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(290), + [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1118), + [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1326), + [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(437), + [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1308), + [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1870), + [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1870), + [2209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1871), + [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1136), + [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1873), + [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1874), + [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2079), + [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1695), + [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1949), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(425), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1736), + [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(351), + [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(294), + [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1134), + [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(399), + [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1294), + [2251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2053), + [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2053), + [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2054), + [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1087), + [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2056), + [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2057), + [2269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2101), + [2272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1712), + [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2024), + [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(511), + [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1706), + [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(366), + [2287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(294), + [2290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1134), + [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(399), + [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1294), + [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2053), + [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(2053), + [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2054), + [2308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1087), + [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2056), + [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2057), + [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2101), + [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1712), + [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2024), + [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(511), + [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1706), + [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(366), + [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(313), + [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1119), + [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(419), + [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1121), + [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2018), + [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2018), + [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2019), + [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1098), + [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2021), + [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2022), + [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2097), + [2368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1733), + [2371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1903), + [2374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(497), + [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1724), + [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(380), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(313), + [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1119), + [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(419), + [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1121), + [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2018), + [2400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(2018), + [2403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2019), + [2406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1098), + [2409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2021), + [2412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2022), + [2415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2097), + [2418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1733), + [2421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1903), + [2424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(497), + [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1724), + [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(380), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 2), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_built_in_function, 2), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 1), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_built_in_function, 1), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 2), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__context_defined_function, 2), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), + [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(949), + [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1666), + [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1116), + [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1550), + [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1550), + [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1535), + [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1035), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), + [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(463), + [2509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1664), + [2512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1708), + [2515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(928), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), + [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(631), + [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1668), + [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1297), + [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(633), + [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(633), + [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(632), + [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1041), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), + [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(498), + [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1664), + [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1709), + [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(265), + [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(489), + [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1692), + [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(271), + [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(706), + [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1678), + [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1335), + [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(713), + [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(713), + [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(712), + [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1033), + [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(473), + [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1719), + [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(284), + [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(759), + [2597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1670), + [2600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1076), + [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(757), + [2606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(757), + [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(758), + [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1037), + [2615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(514), + [2618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1686), + [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(302), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [2628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(483), + [2631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1697), + [2634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(311), + [2637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(426), + [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1728), + [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(315), + [2646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(866), + [2649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1660), + [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1163), + [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(844), + [2658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(844), + [2661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(845), + [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1050), + [2667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(478), + [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1715), + [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(338), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [2678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(298), + [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1169), + [2684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1213), + [2687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1195), + [2690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1947), + [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1947), + [2696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1948), + [2699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1123), + [2702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1950), + [2705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1951), + [2708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2087), + [2711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1700), + [2714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(516), + [2717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1664), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(310), + [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1122), + [2728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1490), + [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1397), + [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1815), + [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1815), + [2740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1816), + [2743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1166), + [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1818), + [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1819), + [2752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2077), + [2755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1684), + [2758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(442), + [2761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1664), + [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(523), + [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1713), + [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(360), + [2773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(298), + [2776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1169), + [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1213), + [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1195), + [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1947), + [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1947), + [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1948), + [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1123), + [2797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1950), + [2800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1951), + [2803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2087), + [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1700), + [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(516), + [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(310), + [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1122), + [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1490), + [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1397), + [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1815), + [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1815), + [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1816), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1166), + [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1818), + [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1819), + [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2077), + [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1684), + [2848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(442), + [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(340), + [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(340), + [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1099), + [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1325), + [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2045), + [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2045), + [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2046), + [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1093), + [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2048), + [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2049), + [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2100), + [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1727), + [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(477), + [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(330), + [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1124), + [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1126), + [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1916), + [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1916), + [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1915), + [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1129), + [2911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1913), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1912), + [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1911), + [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1739), + [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(486), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), + [2928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(330), + [2931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(389), + [2934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1163), + [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(844), + [2940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(844), + [2943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(845), + [2946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1050), + [2949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1122), + [2952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1124), + [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(419), + [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1126), + [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1916), + [2964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1916), + [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1915), + [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1129), + [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1913), + [2976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1912), + [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1911), + [2982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1739), + [2985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1903), + [2988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(486), + [2991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1664), + [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1724), + [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(380), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), + [3002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(330), + [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1124), + [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1126), + [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1916), + [3014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1916), + [3017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1915), + [3020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1129), + [3023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1913), + [3026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1912), + [3029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1911), + [3032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1739), + [3035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(486), + [3038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1099), + [3041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1325), + [3044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2045), + [3047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(2045), + [3050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2046), + [3053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1093), + [3056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2048), + [3059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2049), + [3062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2100), + [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1727), + [3068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(477), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [3147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(679), + [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(1666), + [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(1116), + [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1550), + [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(1550), + [3162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1535), + [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(1035), + [3168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1424), + [3171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1423), + [3174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(407), + [3177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1422), + [3180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(2037), + [3183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(2037), + [3186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(2038), + [3189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1094), + [3192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(2040), + [3195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(2041), + [3198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(2099), + [3201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1710), + [3204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(2034), + [3207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(398), + [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(1664), + [3213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1698), + [3216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(780), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), + [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), + [3237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(626), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), + [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), + [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), + [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), + [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5), + [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), + [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), + [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1215), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), + [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [3289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1208), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 5, .production_id = 3), + [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 5, .production_id = 3), + [3300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1315), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), + [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 2), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 2), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 2), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 2), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), + [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 5), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 5), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), + [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), + [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), + [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find, 5), + [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find, 5), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 2, .production_id = 1), + [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 2, .production_id = 1), + [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove, 5), + [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remove, 5), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), + [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 1), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 1), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5), + [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 6, .production_id = 4), + [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 6, .production_id = 4), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduce, 7), + [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduce, 7), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(747), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [3456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1249), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [3465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1212), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(753), + [3473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(986), + [3476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1682), + [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1222), + [3482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(981), + [3485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(981), + [3488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(984), + [3491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1045), + [3494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(455), + [3497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1690), + [3500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(673), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(414), + [3534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1694), + [3537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(692), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1002), + [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1667), + [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1487), + [3551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(996), + [3554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(996), + [3557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1010), + [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1049), + [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(530), + [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1738), + [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(726), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1501), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(868), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(522), + [3603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1711), + [3606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(780), + [3609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1279), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1664), + [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1144), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(992), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(997), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [3704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1162), + [3707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1158), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1002), + [3745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1667), + [3748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1487), + [3751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(996), + [3754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(996), + [3757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1010), + [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1049), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), + [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(522), + [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1664), + [3771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1711), + [3774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(780), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), + [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), + [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 2), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), + [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), + [3917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), + [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 3), + [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 3), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [4061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1418), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(1843), + [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(1673), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4422] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), }; #ifdef __cplusplus